zorachka / console
Zorachka Console Application
v1.1.1
2023-07-31 08:35 UTC
Requires
- php: ^8.1
- symfony/console: ^6.2
- zorachka/container: ^3.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.16
- phpstan/extension-installer: ^1.2
- phpstan/phpstan: ^1.10
- phpstan/phpstan-phpunit: ^1.3
- phpunit/phpunit: ^9.6
README
Zorachka Console
Example of Console Application using Symfony Console Component at core.
Installation
You can install the package via composer:
composer require zorachka/console
Usage
Create a bin/app.php
file at root of your project with content below:
<?php declare(strict_types=1); use Zorachka\Console\Application; /** * Self-called anonymous function that creates its own scope and keeps the global namespace clean. */ (function () { $application = new ConsoleApplication( appName: 'My Console App', catchExceptions: false, commands: [], ); $application->run(); })();
Testing
make test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.