phpzone / shell
A command/script builder configured by YAML, based on PhpZone
Installs: 2 246
Dependents: 1
Suggesters: 1
Security: 0
Stars: 5
Watchers: 3
Forks: 0
Open Issues: 4
Requires
- php: >=5.3
- phpzone/phpzone: 0.2.*@beta
- symfony/config: ~2.3
- symfony/dependency-injection: ~2.3
- symfony/options-resolver: ~2.3
- symfony/process: ^2.3.12
Requires (Dev)
- behat/behat: ~3.0
- bossa/phpspec2-expect: ~1.0
- jakubzapletal/php_codesniffer-rules: ~0.1
- phpspec/phpspec: ~2.2
- phpunit/phpunit: ~4.6
- squizlabs/php_codesniffer: ~2.3
Conflicts
- phpzone/phpzone: 0.1.*
This package is not auto-updated.
Last update: 2024-10-26 17:40:15 UTC
README
A command/script builder configured by YAML, based on PhpZone. Its primary purpose is to provide an easy way to define multiple scripts used in daily workflow of every developer.
Basic Usage
An example speaks a hundred words so let’s go through one.
The configuration file below is used for a development of this extension:
extensions: PhpZone\Shell\Shell: tests: description: Run all tests script: - bin/behat -f progress - bin/phpunit - bin/phpspec run -f progress - bin/phpcs -p --colors --standard=PSR2 src/ features/bootstrap/ - bin/phpcs -p --colors --standard=vendor/jakubzapletal/php_codesniffer-rules/psr2-without-camel-case-method-name.xml spec/ integrations/
Now we can just run following command and all tests would be executed:
$ vendor/bin/phpzone tests
Documentation
For more details visit PhpZone Shell documentation.