Download the PHP package sokil/php-library-starter-kit without Composer
On this page you can find all versions of the php package sokil/php-library-starter-kit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sokil/php-library-starter-kit
More information about sokil/php-library-starter-kit
Files in sokil/php-library-starter-kit
Package php-library-starter-kit
Short Description Starter kit for creating composer compatible library
License MIT
Homepage https://github.com/sokil/php-library-starter-kit
Informations about the package php-library-starter-kit
PHP Library Starter Kit
Starter kit for creating composer compatible library will help to add boilerplate code. Clone project and start library development with already configured tests, code coverage, code style and quality tools, betchmarking and CI.
Creating new project
Begin your new library with starter kit. Just create project:
Or you can just clone repo:
Composer commands
- "test": start unit tests
- "cover": generate code coverage report to file
- "coveralls": send code coverage report to
coveralls
- "check-style": check code style by PSR2 rules
- "fix-style": automatically fix style by PSR2 rules
- "bench": run
phpbench
benchmarks, - "infection": run mutation tests
External tools
There are some usefull tools for library development, but they written on PHP > 7.0 and this library by default configured for PHP ">=5.3 || ^7.0". So this tools only suggested to be installed or may be installed globally as phar packages or global composer requirement.
PHPBench
Read more at http://phpbench.readthedocs.io. There is some configuration in phpbench.json
. Also there is composer script to run infection: composer bench
Infection
Read more at https://infection.github.io. There is some configuration in infection.json.dist
. Also there is composer script to run infection: composer infection