baldeweg / extra-bundle
Offers tools for management of users, testing and setup.
Installs: 940
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:symfony-bundle
Requires
- php: >=8.2
- doctrine/orm: ^2.16
- symfony/console: ^6.3
- symfony/dependency-injection: ^6.3
- symfony/form: ^6.3
- symfony/framework-bundle: ^6.3
- symfony/http-foundation: ^6.3
- symfony/options-resolver: ^6.3
- symfony/security-bundle: ^6.3
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.23
- phpunit/phpunit: ^10.3
- symfony/maker-bundle: ^1.50
- symfony/var-dumper: ^6.3
This package is auto-updated.
Last update: 2024-07-16 12:29:54 UTC
README
Offers tools for management of users, testing and setup.
Getting Started
composer req baldeweg/extra-bundle
Activate the bundle in your config/bundles.php
, if not done automatically.
Baldeweg\Bundle\ExtraBundle\BaldewegExtraBundle::class => ['all' => true],
User
Add optional routes to your config/routes.yaml
. The me
endpoint gives you some details of the current user. Change your password with the password
endpoint. For more info have a look into the corresponding classes.
me: path: /api/me controller: Baldeweg\Bundle\ExtraBundle\Service\MeUser::me methods: GET password: path: /api/password controller: Baldeweg\Bundle\ExtraBundle\Service\PasswordUser::password methods: PUT
Maker
- make:extra:subscriber - Create a Subscriber