speedwork / console
This package is abandoned and no longer maintained.
No replacement package was suggested.
Speedwork Console Service Provider
v1.0.4
2017-07-27 10:18 UTC
Requires
- php: >=5.6
- classpreloader/classpreloader: ^3.0
- speedwork/container: ^1.0
- speedwork/core: ^1.0
- speedwork/filesystem: ^1.0
- speedwork/util: ^1.0
- symfony/console: ^3.1
- symfony/debug: ^3.1
- symfony/process: ^3.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.0
- jakub-onderka/php-console-highlighter: ^0.3.2
- jakub-onderka/php-parallel-lint: ^0.9.2
- ocramius/proxy-manager: ^1.0
- phpmd/phpmd: ^2.4
- phpro/grumphp: ^0.9.6
- phpstan/phpstan: ^0.5
- phpunit/php-code-coverage: ^5.2
- phpunit/phpunit: ~6.2
- satooshi/php-coveralls: 2.*
- sebastian/phpcpd: ^3.0
- sensiolabs/security-checker: ^3.0
- squizlabs/php_codesniffer: ~2.3
This package is not auto-updated.
Last update: 2018-07-01 00:34:08 UTC
README
=============================================
Introduction
Speed is the name of the command-line interface included with Speedwork.
It provides a number of helpful commands for your use while developing your application.
It is driven by the powerful Symfony Console component.
To view a list of all available Speedwork commands, you may use the list
command:
php ./console list
Every command also includes a "help" screen which displays and describes the command's available arguments and options.
To view a help screen, simply precede the name of the command with help
:
php ./console help serve
#Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Make your changes
- Run the tests, adding new ones for your own code if necessary (
phpunit
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request