├── .gitignore ├── LICENSE ├── README.md ├── app ├── controllers │ ├── Controller.php │ ├── ErrorController.php │ ├── IndexController.php │ └── UsersController.php ├── models │ ├── Post.php │ ├── PostModel.php │ └── User.php └── views │ ├── error │ ├── development.phtml │ ├── pagenotfound.phtml │ └── production.phtml │ ├── index │ ├── index.phtml │ ├── mixed.phtml │ ├── request.phtml │ └── response.phtml │ ├── layout │ ├── error.phtml │ └── main.phtml │ ├── partials │ └── pagination.phtml │ └── users │ ├── index.phtml │ └── show.phtml ├── config ├── config.php ├── routes.php └── schema.sql ├── doc ├── Controller.md ├── GettingStarted.md ├── Model.md ├── Request.md ├── Response.md └── View.md ├── library ├── Database.php ├── Exceptions.php ├── Loader.php ├── Model.php ├── Renderer.php ├── Request.php ├── Response.php ├── Router.php ├── Session.php ├── StringUtil.php └── View.php └── public ├── .htaccess └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/controllers/Controller.php -------------------------------------------------------------------------------- /app/controllers/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/controllers/ErrorController.php -------------------------------------------------------------------------------- /app/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/controllers/IndexController.php -------------------------------------------------------------------------------- /app/controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/controllers/UsersController.php -------------------------------------------------------------------------------- /app/models/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/models/Post.php -------------------------------------------------------------------------------- /app/models/PostModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/models/PostModel.php -------------------------------------------------------------------------------- /app/models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/models/User.php -------------------------------------------------------------------------------- /app/views/error/development.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/error/development.phtml -------------------------------------------------------------------------------- /app/views/error/pagenotfound.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/error/pagenotfound.phtml -------------------------------------------------------------------------------- /app/views/error/production.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/error/production.phtml -------------------------------------------------------------------------------- /app/views/index/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/index/index.phtml -------------------------------------------------------------------------------- /app/views/index/mixed.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/index/mixed.phtml -------------------------------------------------------------------------------- /app/views/index/request.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/index/request.phtml -------------------------------------------------------------------------------- /app/views/index/response.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/index/response.phtml -------------------------------------------------------------------------------- /app/views/layout/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/layout/error.phtml -------------------------------------------------------------------------------- /app/views/layout/main.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/layout/main.phtml -------------------------------------------------------------------------------- /app/views/partials/pagination.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/partials/pagination.phtml -------------------------------------------------------------------------------- /app/views/users/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/users/index.phtml -------------------------------------------------------------------------------- /app/views/users/show.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/app/views/users/show.phtml -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/config/config.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/config/schema.sql -------------------------------------------------------------------------------- /doc/Controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/Controller.md -------------------------------------------------------------------------------- /doc/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/GettingStarted.md -------------------------------------------------------------------------------- /doc/Model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/Model.md -------------------------------------------------------------------------------- /doc/Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/Request.md -------------------------------------------------------------------------------- /doc/Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/Response.md -------------------------------------------------------------------------------- /doc/View.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/doc/View.md -------------------------------------------------------------------------------- /library/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Database.php -------------------------------------------------------------------------------- /library/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Exceptions.php -------------------------------------------------------------------------------- /library/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Loader.php -------------------------------------------------------------------------------- /library/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Model.php -------------------------------------------------------------------------------- /library/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Renderer.php -------------------------------------------------------------------------------- /library/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Request.php -------------------------------------------------------------------------------- /library/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Response.php -------------------------------------------------------------------------------- /library/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Router.php -------------------------------------------------------------------------------- /library/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/Session.php -------------------------------------------------------------------------------- /library/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/StringUtil.php -------------------------------------------------------------------------------- /library/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/library/View.php -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedecarg/apify-library/HEAD/public/index.php --------------------------------------------------------------------------------