├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin └── composer ├── composer.json └── config ├── behat.yml ├── phpcs.xml ├── phpmd.xml ├── phpspec.yml ├── phpunit.xml └── sami.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/README.md -------------------------------------------------------------------------------- /bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/bin/composer -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/composer.json -------------------------------------------------------------------------------- /config/behat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/behat.yml -------------------------------------------------------------------------------- /config/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/phpcs.xml -------------------------------------------------------------------------------- /config/phpmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/phpmd.xml -------------------------------------------------------------------------------- /config/phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/phpspec.yml -------------------------------------------------------------------------------- /config/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/phpunit.xml -------------------------------------------------------------------------------- /config/sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leanphp/common-dev/HEAD/config/sami.php --------------------------------------------------------------------------------