aztech / coding-standard
Aztech Sniffs for PHP CodeSniffer
v0.1.6
2014-09-12 21:21 UTC
Requires
- php: >= 5.4
- aztech/php-utils: ~0
- psr/log: ~1.0
- squizlabs/php_codesniffer: @stable
Requires (Dev)
- phpmd/phpmd: ~2
- phpunit/phpunit: ~4.2
- vektah/bugfree-dangerzone: ~0.2
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Skeleton for PHP library projects
This is my personal PHP library skeleton for use with Composer. Use it or don't, improve it or not, do whatever you like, but P/R your changes if they're interesting :p
Use
$ composer create-project aztech/php-skeleton-library <target-dir>
Running tests, CS, etc... locally
Run tests and code style analyses
$ make test-analysis
Run tests only
$ make test
Upload code coverage to Scrutinizer
To upload to private repos, you need to export an OCULAR_TOKEN environment variable :
$ export OCULAR_TOKEN='Scrutinizer API token' $ make test-upload
Alternatively, without exporting the variable :
$ OCULAR_TOKEN='Scrutinizer API token' make test-upload
Clean up your mess
$ make clean