├── .gitattributes ├── dist ├── bootstrap.php.dist ├── behat.yml.dist ├── phpmd.xml.dist ├── phpunit.xml.dist └── phpdox.xml.dist ├── .gitignore ├── composer.properties ├── composer.json ├── composer.xml ├── README.md ├── php-build-tools.properties └── tests.xml /.gitattributes: -------------------------------------------------------------------------------- 1 | # Normalize line endings 2 | *html text eol=lf 3 | -------------------------------------------------------------------------------- /dist/bootstrap.php.dist: -------------------------------------------------------------------------------- 1 | 7 | Description of your coding standard 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /dist/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | 19 | 20 | @phptools.phpunit.srcdir@ 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /dist/phpdox.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |