├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md ├── .gitignore ├── .travis.yml ├── .vscode └── launch.json ├── .zappr.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── api.php ├── api.yaml ├── blueprints.yaml ├── blueprints └── user │ └── account.yaml ├── codeception.yml ├── composer.json ├── docker-compose.yaml ├── docs ├── AUTHENTICATION.md ├── DEVELOPMENT.md ├── EVENTS.md ├── EXTENSIONS.md ├── FAQ.md ├── postman_collection.json └── specification.yaml ├── grav ├── accounts │ ├── andy.yaml │ ├── development.yaml │ ├── greg.yaml │ ├── joe.yaml │ ├── percy.yaml │ └── tom.yaml ├── config │ ├── groups.yaml │ ├── plugins │ │ ├── api.yaml │ │ └── login.yaml │ ├── site.yaml │ └── system.yaml └── pages │ ├── 01.home │ └── default.md │ ├── 02.typography │ └── default.md │ ├── othertest │ └── default.md │ └── test │ ├── 01.child │ └── default.md │ ├── 02.another-child │ └── default.md │ └── default.md ├── phplint.yaml ├── src ├── Api.php ├── Config │ ├── Config.php │ ├── Constants.php │ ├── Endpoint.php │ └── Method.php ├── Handlers │ ├── BaseHandler.php │ ├── ConfigHandler.php │ ├── NotFoundHandler.php │ ├── PagesHandler.php │ ├── PluginsHandler.php │ └── UsersHandler.php ├── Helpers │ ├── ArrayHelper.php │ ├── AuthHelper.php │ ├── BlueprintHelper.php │ ├── ConfigHelper.php │ ├── PageHelper.php │ ├── PluginHelper.php │ └── TaxonomyHelper.php ├── Middlewares │ └── AuthMiddleware.php ├── Models │ └── ConfigModel.php ├── Resources │ ├── CollectionResource.php │ ├── ConfigCollectionResource.php │ ├── ConfigResource.php │ ├── PageCollectionResource.php │ ├── PageResource.php │ ├── PluginCollectionResource.php │ ├── PluginResource.php │ ├── Resource.php │ ├── UserCollectionResource.php │ └── UserResource.php └── Responses │ ├── BadRequestResponse.php │ ├── BaseResponse.php │ ├── NotFoundResponse.php │ ├── ResourceExistsResponse.php │ ├── Response.php │ └── UnauthorizedResponse.php └── tests ├── unit.suite.yml └── unit ├── Config ├── ConfigTest.php ├── EndpointTest.php └── MethodTest.php ├── Handlers ├── ConfigHandlerTest.php ├── NotFoundHandlerTest.php ├── PagesHandlerTest.php ├── PluginsHandlerTest.php └── UsersHandlerTest.php ├── Helpers ├── ArrayHelperTest.php ├── AuthHelperTest.php ├── ConfigHelperTest.php ├── PluginHelperTest.php └── TaxonomyHelperTest.php ├── Middlewares └── AuthMiddlewareTest.php ├── Models └── ConfigModelTest.php ├── Resources ├── ConfigCollectionResourceTest.php ├── ConfigResourceTest.php ├── PageCollectionResourceTest.php ├── PageResourceTest.php ├── PluginCollectionResourceTest.php ├── PluginResourceTest.php ├── UserCollectionResourceTest.php └── UserResourceTest.php └── _bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.zappr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/.zappr.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # v0.1.0 2 | ## 10/25/2017 3 | 4 | 1. [](#new) 5 | * ChangeLog started... 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/README.md -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/api.php -------------------------------------------------------------------------------- /api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/api.yaml -------------------------------------------------------------------------------- /blueprints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/blueprints.yaml -------------------------------------------------------------------------------- /blueprints/user/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/blueprints/user/account.yaml -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/AUTHENTICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/AUTHENTICATION.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/EVENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/EVENTS.md -------------------------------------------------------------------------------- /docs/EXTENSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/EXTENSIONS.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/postman_collection.json -------------------------------------------------------------------------------- /docs/specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/docs/specification.yaml -------------------------------------------------------------------------------- /grav/accounts/andy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/andy.yaml -------------------------------------------------------------------------------- /grav/accounts/development.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/development.yaml -------------------------------------------------------------------------------- /grav/accounts/greg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/greg.yaml -------------------------------------------------------------------------------- /grav/accounts/joe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/joe.yaml -------------------------------------------------------------------------------- /grav/accounts/percy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/percy.yaml -------------------------------------------------------------------------------- /grav/accounts/tom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/accounts/tom.yaml -------------------------------------------------------------------------------- /grav/config/groups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/config/groups.yaml -------------------------------------------------------------------------------- /grav/config/plugins/api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/config/plugins/api.yaml -------------------------------------------------------------------------------- /grav/config/plugins/login.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/config/plugins/login.yaml -------------------------------------------------------------------------------- /grav/config/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/config/site.yaml -------------------------------------------------------------------------------- /grav/config/system.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/config/system.yaml -------------------------------------------------------------------------------- /grav/pages/01.home/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/01.home/default.md -------------------------------------------------------------------------------- /grav/pages/02.typography/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/02.typography/default.md -------------------------------------------------------------------------------- /grav/pages/othertest/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/othertest/default.md -------------------------------------------------------------------------------- /grav/pages/test/01.child/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/test/01.child/default.md -------------------------------------------------------------------------------- /grav/pages/test/02.another-child/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/test/02.another-child/default.md -------------------------------------------------------------------------------- /grav/pages/test/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/grav/pages/test/default.md -------------------------------------------------------------------------------- /phplint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/phplint.yaml -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Config/Config.php -------------------------------------------------------------------------------- /src/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Config/Constants.php -------------------------------------------------------------------------------- /src/Config/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Config/Endpoint.php -------------------------------------------------------------------------------- /src/Config/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Config/Method.php -------------------------------------------------------------------------------- /src/Handlers/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/BaseHandler.php -------------------------------------------------------------------------------- /src/Handlers/ConfigHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/ConfigHandler.php -------------------------------------------------------------------------------- /src/Handlers/NotFoundHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/NotFoundHandler.php -------------------------------------------------------------------------------- /src/Handlers/PagesHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/PagesHandler.php -------------------------------------------------------------------------------- /src/Handlers/PluginsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/PluginsHandler.php -------------------------------------------------------------------------------- /src/Handlers/UsersHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Handlers/UsersHandler.php -------------------------------------------------------------------------------- /src/Helpers/ArrayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/ArrayHelper.php -------------------------------------------------------------------------------- /src/Helpers/AuthHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/AuthHelper.php -------------------------------------------------------------------------------- /src/Helpers/BlueprintHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/BlueprintHelper.php -------------------------------------------------------------------------------- /src/Helpers/ConfigHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/ConfigHelper.php -------------------------------------------------------------------------------- /src/Helpers/PageHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/PageHelper.php -------------------------------------------------------------------------------- /src/Helpers/PluginHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/PluginHelper.php -------------------------------------------------------------------------------- /src/Helpers/TaxonomyHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Helpers/TaxonomyHelper.php -------------------------------------------------------------------------------- /src/Middlewares/AuthMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Middlewares/AuthMiddleware.php -------------------------------------------------------------------------------- /src/Models/ConfigModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Models/ConfigModel.php -------------------------------------------------------------------------------- /src/Resources/CollectionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/CollectionResource.php -------------------------------------------------------------------------------- /src/Resources/ConfigCollectionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/ConfigCollectionResource.php -------------------------------------------------------------------------------- /src/Resources/ConfigResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/ConfigResource.php -------------------------------------------------------------------------------- /src/Resources/PageCollectionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/PageCollectionResource.php -------------------------------------------------------------------------------- /src/Resources/PageResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/PageResource.php -------------------------------------------------------------------------------- /src/Resources/PluginCollectionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/PluginCollectionResource.php -------------------------------------------------------------------------------- /src/Resources/PluginResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/PluginResource.php -------------------------------------------------------------------------------- /src/Resources/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/Resource.php -------------------------------------------------------------------------------- /src/Resources/UserCollectionResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/UserCollectionResource.php -------------------------------------------------------------------------------- /src/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Resources/UserResource.php -------------------------------------------------------------------------------- /src/Responses/BadRequestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/BadRequestResponse.php -------------------------------------------------------------------------------- /src/Responses/BaseResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/BaseResponse.php -------------------------------------------------------------------------------- /src/Responses/NotFoundResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/NotFoundResponse.php -------------------------------------------------------------------------------- /src/Responses/ResourceExistsResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/ResourceExistsResponse.php -------------------------------------------------------------------------------- /src/Responses/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/Response.php -------------------------------------------------------------------------------- /src/Responses/UnauthorizedResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/src/Responses/UnauthorizedResponse.php -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit.suite.yml -------------------------------------------------------------------------------- /tests/unit/Config/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Config/ConfigTest.php -------------------------------------------------------------------------------- /tests/unit/Config/EndpointTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Config/EndpointTest.php -------------------------------------------------------------------------------- /tests/unit/Config/MethodTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Config/MethodTest.php -------------------------------------------------------------------------------- /tests/unit/Handlers/ConfigHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Handlers/ConfigHandlerTest.php -------------------------------------------------------------------------------- /tests/unit/Handlers/NotFoundHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Handlers/NotFoundHandlerTest.php -------------------------------------------------------------------------------- /tests/unit/Handlers/PagesHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Handlers/PagesHandlerTest.php -------------------------------------------------------------------------------- /tests/unit/Handlers/PluginsHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Handlers/PluginsHandlerTest.php -------------------------------------------------------------------------------- /tests/unit/Handlers/UsersHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Handlers/UsersHandlerTest.php -------------------------------------------------------------------------------- /tests/unit/Helpers/ArrayHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Helpers/ArrayHelperTest.php -------------------------------------------------------------------------------- /tests/unit/Helpers/AuthHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Helpers/AuthHelperTest.php -------------------------------------------------------------------------------- /tests/unit/Helpers/ConfigHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Helpers/ConfigHelperTest.php -------------------------------------------------------------------------------- /tests/unit/Helpers/PluginHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Helpers/PluginHelperTest.php -------------------------------------------------------------------------------- /tests/unit/Helpers/TaxonomyHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Helpers/TaxonomyHelperTest.php -------------------------------------------------------------------------------- /tests/unit/Middlewares/AuthMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Middlewares/AuthMiddlewareTest.php -------------------------------------------------------------------------------- /tests/unit/Models/ConfigModelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Models/ConfigModelTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/ConfigCollectionResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/ConfigCollectionResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/ConfigResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/ConfigResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/PageCollectionResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/PageCollectionResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/PageResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/PageResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/PluginCollectionResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/PluginCollectionResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/PluginResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/PluginResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/UserCollectionResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/UserCollectionResourceTest.php -------------------------------------------------------------------------------- /tests/unit/Resources/UserResourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/Resources/UserResourceTest.php -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Regaez/grav-plugin-api/HEAD/tests/unit/_bootstrap.php --------------------------------------------------------------------------------