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
$ composer create-project aztech/php-skeleton-library <target-dir>Run tests and code style analyses
$ make test-analysisRun tests only
$ make testTo upload to private repos, you need to export an OCULAR_TOKEN environment variable :
$ export OCULAR_TOKEN='Scrutinizer API token'
$ make test-uploadAlternatively, without exporting the variable :
$ OCULAR_TOKEN='Scrutinizer API token' make test-upload$ make clean