├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rmt.yml ├── .scrutinizer.yml ├── .styleci.yml ├── .travis.yml ├── CHANGELOG ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.md ├── README.md ├── RMT ├── bin └── phpqt-install ├── composer.json ├── composer.lock ├── phpcs.xml ├── phpmd.xml ├── phpunit.xml.dist ├── src ├── PhpQualityTools.php ├── helpers.php └── install.php └── tests ├── InstallTest.php ├── expected ├── composer.json ├── composer_no_script.json ├── phpcs.xml └── phpmd.xml └── resources ├── composer.json └── composer_no_script.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.rmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.rmt.yml -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/README.md -------------------------------------------------------------------------------- /RMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/RMT -------------------------------------------------------------------------------- /bin/phpqt-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/bin/phpqt-install -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/composer.lock -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/phpmd.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/PhpQualityTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/src/PhpQualityTools.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/src/helpers.php -------------------------------------------------------------------------------- /src/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/src/install.php -------------------------------------------------------------------------------- /tests/InstallTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/InstallTest.php -------------------------------------------------------------------------------- /tests/expected/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/expected/composer.json -------------------------------------------------------------------------------- /tests/expected/composer_no_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/expected/composer_no_script.json -------------------------------------------------------------------------------- /tests/expected/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/expected/phpcs.xml -------------------------------------------------------------------------------- /tests/expected/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/expected/phpmd.xml -------------------------------------------------------------------------------- /tests/resources/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/resources/composer.json -------------------------------------------------------------------------------- /tests/resources/composer_no_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniel-werner/php-quality-tools/HEAD/tests/resources/composer_no_script.json --------------------------------------------------------------------------------