├── .gitignore ├── README.md ├── app ├── .htaccess ├── Commands │ └── API │ │ └── template │ │ ├── controller.stub │ │ ├── entity.stub │ │ └── model.stub ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Routes.php │ ├── Security.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── BaseController.php │ ├── Home.php │ └── Swagger.php ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeds │ │ └── .gitkeep ├── Filters │ └── .gitkeep ├── Helpers │ └── .gitkeep ├── Language │ ├── .gitkeep │ └── en │ │ └── Validation.php ├── Libraries │ └── .gitkeep ├── Models │ └── .gitkeep ├── ThirdParty │ └── .gitkeep ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ ├── swagger │ │ └── index.php │ └── welcome_message.php └── index.html ├── composer.json ├── composer.lock ├── domains ├── almuhajirin │ ├── assets │ ├── env │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ ├── vhost.nginx.example │ └── writable │ │ ├── .htaccess │ │ ├── cache │ │ └── index.html │ │ ├── debugbar │ │ ├── debugbar_1637535622.json │ │ └── debugbar_1637536890.json │ │ ├── logs │ │ ├── index.html │ │ ├── log-2021-11-21.log │ │ └── nginx-error.log │ │ ├── session │ │ └── index.html │ │ └── uploads │ │ └── index.html └── attaqwa │ ├── assets │ ├── env │ ├── favicon.ico │ ├── index.php │ ├── robots.txt │ ├── vhost.nginx.example │ └── writable │ ├── .htaccess │ ├── cache │ └── index.html │ ├── logs │ ├── index.html │ └── nginx-error.log │ ├── session │ └── index.html │ └── uploads │ └── index.html ├── env ├── license.txt ├── phpunit.xml.dist ├── preview └── apidocs.png ├── public ├── .htaccess ├── assets │ └── swagger │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── index.html │ │ ├── oauth2-redirect.html │ │ ├── swagger-ui-bundle.js │ │ ├── swagger-ui-bundle.js.map │ │ ├── swagger-ui-standalone-preset.js │ │ ├── swagger-ui-standalone-preset.js.map │ │ ├── swagger-ui.css │ │ ├── swagger-ui.css.map │ │ ├── swagger-ui.js │ │ └── swagger-ui.js.map ├── favicon.ico ├── index.php └── robots.txt ├── spark ├── tests ├── README.md ├── _support │ ├── Database │ │ ├── Migrations │ │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ │ └── ExampleSeeder.php │ ├── DatabaseTestCase.php │ ├── Libraries │ │ └── ConfigReader.php │ ├── Models │ │ └── ExampleModel.php │ └── SessionTestCase.php ├── database │ └── ExampleDatabaseTest.php ├── session │ └── ExampleSessionTest.php └── unit │ └── HealthTest.php └── writable ├── .htaccess ├── cache └── index.html ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/Commands/API/template/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Commands/API/template/controller.stub -------------------------------------------------------------------------------- /app/Commands/API/template/entity.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Commands/API/template/entity.stub -------------------------------------------------------------------------------- /app/Commands/API/template/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Commands/API/template/model.stub -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Common.php -------------------------------------------------------------------------------- /app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/App.php -------------------------------------------------------------------------------- /app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Autoload.php -------------------------------------------------------------------------------- /app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Boot/development.php -------------------------------------------------------------------------------- /app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Boot/production.php -------------------------------------------------------------------------------- /app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /app/Config/CURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/CURLRequest.php -------------------------------------------------------------------------------- /app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Cache.php -------------------------------------------------------------------------------- /app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Constants.php -------------------------------------------------------------------------------- /app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /app/Config/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Cookie.php -------------------------------------------------------------------------------- /app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Database.php -------------------------------------------------------------------------------- /app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/DocTypes.php -------------------------------------------------------------------------------- /app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Email.php -------------------------------------------------------------------------------- /app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Encryption.php -------------------------------------------------------------------------------- /app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Events.php -------------------------------------------------------------------------------- /app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Exceptions.php -------------------------------------------------------------------------------- /app/Config/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Feature.php -------------------------------------------------------------------------------- /app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Filters.php -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Format.php -------------------------------------------------------------------------------- /app/Config/Generators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Generators.php -------------------------------------------------------------------------------- /app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Honeypot.php -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Images.php -------------------------------------------------------------------------------- /app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Kint.php -------------------------------------------------------------------------------- /app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Logger.php -------------------------------------------------------------------------------- /app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Migrations.php -------------------------------------------------------------------------------- /app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Mimes.php -------------------------------------------------------------------------------- /app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Modules.php -------------------------------------------------------------------------------- /app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Pager.php -------------------------------------------------------------------------------- /app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Paths.php -------------------------------------------------------------------------------- /app/Config/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Publisher.php -------------------------------------------------------------------------------- /app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Routes.php -------------------------------------------------------------------------------- /app/Config/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Security.php -------------------------------------------------------------------------------- /app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Services.php -------------------------------------------------------------------------------- /app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Toolbar.php -------------------------------------------------------------------------------- /app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/UserAgents.php -------------------------------------------------------------------------------- /app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/Validation.php -------------------------------------------------------------------------------- /app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Config/View.php -------------------------------------------------------------------------------- /app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Controllers/Home.php -------------------------------------------------------------------------------- /app/Controllers/Swagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Controllers/Swagger.php -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/en/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Language/en/Validation.php -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /app/Views/swagger/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/swagger/index.php -------------------------------------------------------------------------------- /app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/Views/welcome_message.php -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/app/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/composer.lock -------------------------------------------------------------------------------- /domains/almuhajirin/assets: -------------------------------------------------------------------------------- 1 | /data/docker/codeigniter4/easyAPI/public/assets/ -------------------------------------------------------------------------------- /domains/almuhajirin/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/env -------------------------------------------------------------------------------- /domains/almuhajirin/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/favicon.ico -------------------------------------------------------------------------------- /domains/almuhajirin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/index.php -------------------------------------------------------------------------------- /domains/almuhajirin/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /domains/almuhajirin/vhost.nginx.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/vhost.nginx.example -------------------------------------------------------------------------------- /domains/almuhajirin/writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/.htaccess -------------------------------------------------------------------------------- /domains/almuhajirin/writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/cache/index.html -------------------------------------------------------------------------------- /domains/almuhajirin/writable/debugbar/debugbar_1637535622.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/debugbar/debugbar_1637535622.json -------------------------------------------------------------------------------- /domains/almuhajirin/writable/debugbar/debugbar_1637536890.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/debugbar/debugbar_1637536890.json -------------------------------------------------------------------------------- /domains/almuhajirin/writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/logs/index.html -------------------------------------------------------------------------------- /domains/almuhajirin/writable/logs/log-2021-11-21.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/logs/log-2021-11-21.log -------------------------------------------------------------------------------- /domains/almuhajirin/writable/logs/nginx-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/logs/nginx-error.log -------------------------------------------------------------------------------- /domains/almuhajirin/writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/session/index.html -------------------------------------------------------------------------------- /domains/almuhajirin/writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/almuhajirin/writable/uploads/index.html -------------------------------------------------------------------------------- /domains/attaqwa/assets: -------------------------------------------------------------------------------- 1 | /data/docker/codeigniter4/easyAPI/public/assets/ -------------------------------------------------------------------------------- /domains/attaqwa/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/env -------------------------------------------------------------------------------- /domains/attaqwa/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/favicon.ico -------------------------------------------------------------------------------- /domains/attaqwa/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/index.php -------------------------------------------------------------------------------- /domains/attaqwa/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /domains/attaqwa/vhost.nginx.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/vhost.nginx.example -------------------------------------------------------------------------------- /domains/attaqwa/writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/.htaccess -------------------------------------------------------------------------------- /domains/attaqwa/writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/cache/index.html -------------------------------------------------------------------------------- /domains/attaqwa/writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/logs/index.html -------------------------------------------------------------------------------- /domains/attaqwa/writable/logs/nginx-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/logs/nginx-error.log -------------------------------------------------------------------------------- /domains/attaqwa/writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/session/index.html -------------------------------------------------------------------------------- /domains/attaqwa/writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/domains/attaqwa/writable/uploads/index.html -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/env -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/license.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /preview/apidocs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/preview/apidocs.png -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/swagger/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/favicon-16x16.png -------------------------------------------------------------------------------- /public/assets/swagger/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/favicon-32x32.png -------------------------------------------------------------------------------- /public/assets/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/index.html -------------------------------------------------------------------------------- /public/assets/swagger/oauth2-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/oauth2-redirect.html -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui-bundle.js -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui-bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui-bundle.js.map -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui-standalone-preset.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui-standalone-preset.js.map -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui.css -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui.css.map -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui.js -------------------------------------------------------------------------------- /public/assets/swagger/swagger-ui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/assets/swagger/swagger-ui.js.map -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/spark -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php -------------------------------------------------------------------------------- /tests/_support/Database/Seeds/ExampleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/Database/Seeds/ExampleSeeder.php -------------------------------------------------------------------------------- /tests/_support/DatabaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/DatabaseTestCase.php -------------------------------------------------------------------------------- /tests/_support/Libraries/ConfigReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/Libraries/ConfigReader.php -------------------------------------------------------------------------------- /tests/_support/Models/ExampleModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/Models/ExampleModel.php -------------------------------------------------------------------------------- /tests/_support/SessionTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/_support/SessionTestCase.php -------------------------------------------------------------------------------- /tests/database/ExampleDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/database/ExampleDatabaseTest.php -------------------------------------------------------------------------------- /tests/session/ExampleSessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/session/ExampleSessionTest.php -------------------------------------------------------------------------------- /tests/unit/HealthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/tests/unit/HealthTest.php -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/writable/.htaccess -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/writable/cache/index.html -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/writable/logs/index.html -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/writable/session/index.html -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandigresik/easyAPI/HEAD/writable/uploads/index.html --------------------------------------------------------------------------------