├── .gitignore ├── .semver ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── composer.json └── src └── Bridges └── Cakephp.php /.gitignore: -------------------------------------------------------------------------------- 1 | /tmp 2 | /vendor 3 | /.idea 4 | composer.lock 5 | .php_cs* 6 | /coverage 7 | -------------------------------------------------------------------------------- /.semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/.semver -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/composer.json -------------------------------------------------------------------------------- /src/Bridges/Cakephp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeDC/cakephp-phppm/HEAD/src/Bridges/Cakephp.php --------------------------------------------------------------------------------