├── .gitignore ├── .htaccess ├── .php_cs.php ├── LICENSE ├── README.md ├── TODO.md ├── bin └── composer ├── clients └── APIClient.php ├── composer.json ├── composer.lock ├── config.php ├── cover.png ├── docs.php ├── includes ├── classes │ ├── API.php │ ├── Auth.php │ ├── DatabaseErrors.php │ ├── Docs.php │ ├── Dump.php │ ├── Hooks.php │ ├── Logger.php │ ├── Request.php │ └── Response.php ├── compatibility.php ├── functions.php ├── loader.php └── template │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.min.css │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ └── main.css │ ├── footer.php │ ├── header.php │ ├── img │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png │ └── js │ ├── main.js │ └── vendor │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.min.js │ └── modernizr-2.6.1-respond-1.1.0.min.js ├── index.php ├── logs.php ├── logs └── .empty ├── plugins ├── actions.php ├── custom │ ├── .empty │ └── example.hooks.php ├── filters.php ├── functions.php ├── helpers │ └── example.hooks.php ├── loader.php └── tables │ ├── .empty │ └── example.php ├── renovate.json └── test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/.htaccess -------------------------------------------------------------------------------- /.php_cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/.php_cs.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/TODO.md -------------------------------------------------------------------------------- /bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/bin/composer -------------------------------------------------------------------------------- /clients/APIClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/clients/APIClient.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/composer.lock -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/config.php -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/cover.png -------------------------------------------------------------------------------- /docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/docs.php -------------------------------------------------------------------------------- /includes/classes/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/API.php -------------------------------------------------------------------------------- /includes/classes/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Auth.php -------------------------------------------------------------------------------- /includes/classes/DatabaseErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/DatabaseErrors.php -------------------------------------------------------------------------------- /includes/classes/Docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Docs.php -------------------------------------------------------------------------------- /includes/classes/Dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Dump.php -------------------------------------------------------------------------------- /includes/classes/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Hooks.php -------------------------------------------------------------------------------- /includes/classes/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Logger.php -------------------------------------------------------------------------------- /includes/classes/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Request.php -------------------------------------------------------------------------------- /includes/classes/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/classes/Response.php -------------------------------------------------------------------------------- /includes/compatibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/compatibility.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/loader.php -------------------------------------------------------------------------------- /includes/template/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap-grid.css -------------------------------------------------------------------------------- /includes/template/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /includes/template/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /includes/template/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /includes/template/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap.css -------------------------------------------------------------------------------- /includes/template/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/bootstrap.min.css -------------------------------------------------------------------------------- /includes/template/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/css/main.css -------------------------------------------------------------------------------- /includes/template/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/footer.php -------------------------------------------------------------------------------- /includes/template/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/header.php -------------------------------------------------------------------------------- /includes/template/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /includes/template/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /includes/template/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /includes/template/js/vendor/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/bootstrap.bundle.js -------------------------------------------------------------------------------- /includes/template/js/vendor/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /includes/template/js/vendor/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/bootstrap.js -------------------------------------------------------------------------------- /includes/template/js/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /includes/template/js/vendor/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /includes/template/js/vendor/modernizr-2.6.1-respond-1.1.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/includes/template/js/vendor/modernizr-2.6.1-respond-1.1.0.min.js -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/index.php -------------------------------------------------------------------------------- /logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/logs.php -------------------------------------------------------------------------------- /logs/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/actions.php -------------------------------------------------------------------------------- /plugins/custom/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/custom/example.hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/custom/example.hooks.php -------------------------------------------------------------------------------- /plugins/filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/filters.php -------------------------------------------------------------------------------- /plugins/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/functions.php -------------------------------------------------------------------------------- /plugins/helpers/example.hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/helpers/example.hooks.php -------------------------------------------------------------------------------- /plugins/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/loader.php -------------------------------------------------------------------------------- /plugins/tables/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/tables/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/plugins/tables/example.php -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/renovate.json -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcocesarato/Database-Web-API/HEAD/test.php --------------------------------------------------------------------------------