gitextract_1rl9e0ja/ ├── .dockerignore ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── SUPPORT.md ├── Vagrantfile ├── composer.json ├── config/ │ ├── application.config.php │ ├── autoload/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── global-development.php │ │ ├── global.php │ │ ├── local.php.dist │ │ ├── user.global.php │ │ ├── zf-mvc-auth-oauth2-override.global.php │ │ └── zfconfig.global.php │ ├── development.config.php.dist │ └── modules.config.php ├── data/ │ └── cache/ │ └── .gitkeep ├── docker-compose.yml ├── module/ │ └── Application/ │ ├── config/ │ │ └── module.config.php │ ├── src/ │ │ ├── Controller/ │ │ │ └── IndexController.php │ │ └── Module.php │ ├── test/ │ │ └── Controller/ │ │ ├── IndexControllerTest.php │ │ └── ZZIndexControllerDevModeTest.php │ └── view/ │ ├── application/ │ │ └── index/ │ │ └── index.phtml │ ├── error/ │ │ ├── 404.phtml │ │ └── index.phtml │ └── layout/ │ └── layout.phtml ├── phpcs.xml ├── phpunit.xml.dist ├── public/ │ ├── .gitignore │ ├── .htaccess │ ├── index.php │ └── web.config └── src/ └── Apigility/ └── constants.php