symplify / console-package-builder
This package is abandoned and no longer maintained.
The author suggests using the symplify/package-builder package instead.
Package to speed up building command line applications
Package info
github.com/deprecated-packages/console-package-builder
pkg:composer/symplify/console-package-builder
9.4.70
2021-10-02 16:05 UTC
Requires
- php: >=8.0
- symfony/console: ^5.3|^6.0
- symfony/dependency-injection: ^5.3|^6.0
- symplify/symplify-kernel: ^9.4.70
Requires (Dev)
- phpunit/phpunit: ^9.5
- symfony/http-kernel: ^5.3|^6.0
- symplify/package-builder: ^9.4.70
Conflicts
- symplify/amnesia: <9.4.70
- symplify/astral: <9.4.70
- symplify/autowire-array-parameter: <9.4.70
- symplify/coding-standard: <9.4.70
- symplify/composer-json-manipulator: <9.4.70
- symplify/config-transformer: <9.4.70
- symplify/console-color-diff: <9.4.70
- symplify/easy-ci: <9.4.70
- symplify/easy-coding-standard: <9.4.70
- symplify/easy-hydrator: <9.4.70
- symplify/easy-testing: <9.4.70
- symplify/git-wrapper: <9.4.70
- symplify/latte-phpstan-compiler: <9.4.70
- symplify/markdown-diff: <9.4.70
- symplify/monorepo-builder: <9.4.70
- symplify/package-builder: <9.4.70
- symplify/php-config-printer: <9.4.70
- symplify/phpstan-extensions: <9.4.70
- symplify/phpstan-rules: <9.4.70
- symplify/psr4-switcher: <9.4.70
- symplify/rule-doc-generator: <9.4.70
- symplify/rule-doc-generator-contracts: <9.4.70
- symplify/simple-php-doc-parser: <9.4.70
- symplify/skipper: <9.4.70
- symplify/smart-file-system: <9.4.70
- symplify/symfony-php-config: <9.4.70
- symplify/symfony-static-dumper: <9.4.70
- symplify/template-phpstan-compiler: <9.4.70
- symplify/twig-phpstan-compiler: <9.4.70
- symplify/vendor-patches: <9.4.70
This package is auto-updated.
Last update: 2021-10-29 15:20:48 UTC
README
Package to speed up building command line applications
Install
composer require symplify/console-package-builder --dev
Namesless Commands
Do you want to have convention in command naming? Read The Bullet Proof Symfony Command Naming
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\HttpKernel\Kernel; use Symplify\ConsolePackageBuilder\DependencyInjection\CompilerPass\NamelessConsoleCommandCompilerPass; class SomeKernel extends Kernel implements CompilerPassInterface { public function process(ContainerBuilder $containerBuilder) { $containerBuilder->addCompilerPass(new NamelessConsoleCommandCompilerPass()); } }
Report Issues
In case you are experiencing a bug or want to request a new feature head over to the Symplify monorepo issue tracker
Contribute
The sources of this package are contained in the Symplify monorepo. We welcome contributions for this package on symplify/symplify.