A template for speeding up the process of creating new PHP projects. Includes phpunit
and php-cs-fixer
.
composer.json
(name
,description
,keywords
,authors
,namespace
)CHANGELOG.md
README.md
LICENSE
.editorconig
.gitignore
.gitattributes
.php-cs-fixer.dist.php
phpunit.xml.dist
You can run tests with composer command:
$ composer test
Check coding standards:
$ composer cs-check
Fix coding standards:
$ composer cs-fix