spryker-demo / user-profile-feature
User profile [feature]
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Type:metapackage
pkg:composer/spryker-demo/user-profile-feature
Requires
- php: >=8.2
- spryker-demo/user-profile: ^1.0.0
- spryker-demo/user-profile-gui: ^1.0.0
This package is auto-updated.
Last update: 2025-10-05 16:21:34 UTC
README
Installation
Install feature
composer require spryker-demo/user-profile-feature
Add SprykerDemo
namespace to configuration
$config[KernelConstants::CORE_NAMESPACES] = [
...
'SprykerDemo',
];
Add UserProfileFormExpanderPlugin
to UserDependencyProvider
<?php /** * This file is part of the Spryker Commerce OS. * For full license information, please view the LICENSE file that was distributed with this source code. */ namespace Pyz\Zed\User; use SprykerDemo\Zed\UserProfileGui\Communication\Plugin\UserProfileFormExpanderPlugin; class UserDependencyProvider extends SprykerUserDependencyProvider { /** * @return array<\Spryker\Zed\UserExtension\Dependency\Plugin\UserFormExpanderPluginInterface> */ protected function getUserFormExpanderPlugins(): array { return [ new UserProfileFormExpanderPlugin(), ]; } }