├── .gitignore ├── README.md ├── class-loader.php ├── cli-config.php ├── composer.json ├── config └── local.ini.dist ├── public ├── .htaccess └── index.php └── src └── App ├── Entity.php ├── Entity └── User.php ├── Resource.php ├── Resource └── User.php ├── Service.php └── Service └── User.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /class-loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/class-loader.php -------------------------------------------------------------------------------- /cli-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/cli-config.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/composer.json -------------------------------------------------------------------------------- /config/local.ini.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/config/local.ini.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/public/index.php -------------------------------------------------------------------------------- /src/App/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Entity.php -------------------------------------------------------------------------------- /src/App/Entity/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Entity/User.php -------------------------------------------------------------------------------- /src/App/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Resource.php -------------------------------------------------------------------------------- /src/App/Resource/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Resource/User.php -------------------------------------------------------------------------------- /src/App/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Service.php -------------------------------------------------------------------------------- /src/App/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroenweustink/slim-rest-api/HEAD/src/App/Service/User.php --------------------------------------------------------------------------------