alexeyshockov / plain-commands-bundle
The bundle provides a way to configure your commands with annotations
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- alexeyshockov/plain-commands: ^0.1
- sensio/framework-extra-bundle: ^4.0|^5.0
- symfony/framework-bundle: ^3.3|^4.0
This package is auto-updated.
Last update: 2024-01-08 21:20:57 UTC
README
Integrates alexeyshockov/plain-commands into a Symfony application.
Configuration and usage
The bundle has no configuration. Just register your classes in the DI container and mark them with plain_commands.set
tag. For example, add everything from src/Command
directory in your config/services.yaml
:
services: App\Command\: resource: '../src/Command' tags: ['plain_commands.set']