├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Controller.php ├── Http │ ├── Request.php │ └── Response.php └── Test │ └── PHPUnit │ └── TestCase.php └── tests ├── ControllerTest.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/src/Controller.php -------------------------------------------------------------------------------- /src/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/src/Http/Request.php -------------------------------------------------------------------------------- /src/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/src/Http/Response.php -------------------------------------------------------------------------------- /src/Test/PHPUnit/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/src/Test/PHPUnit/TestCase.php -------------------------------------------------------------------------------- /tests/ControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/tests/ControllerTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martynbiz/slim3-controller/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------