├── .editorconfig ├── .env.dist ├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── README.md ├── app.paths.conf.php ├── app ├── apidoc │ ├── apidocdefine.php │ └── header.md ├── database │ ├── migrations │ │ ├── 20160706231338_create_users_table.php │ │ ├── 20160706232752_create_roles_table.php │ │ ├── 20160706232835_create_rights_table.php │ │ ├── 20160706233448_create_logs_table.php │ │ ├── 20161016143152_create_roles_to_right_table.php │ │ ├── 20170128112159_create_access_tokens_table.php │ │ ├── 20170129140408_create_refresh_tokens_table.php │ │ └── 20180223214037_create_media_files_table.php │ └── seeds │ │ └── 20160706233231_create_roles_rights_users.php ├── lang │ ├── en │ │ └── validation.php │ └── ru │ │ └── validation.php ├── routes.php ├── src │ ├── Common │ │ ├── Acl.php │ │ ├── ApiRenderer.php │ │ ├── Auth.php │ │ ├── Config │ │ │ ├── Definition │ │ │ │ ├── AclConfigDefinition.php │ │ │ │ └── DbConfigDefinition.php │ │ │ ├── FileLocator.php │ │ │ ├── PHPConfigLoader.php │ │ │ └── Settings.php │ │ ├── Helper.php │ │ ├── JsonApiEncoder.php │ │ ├── JsonException.php │ │ └── MailRenderer.php │ ├── Console │ │ ├── CodeTemplates │ │ │ ├── CommandTemplate.tpl │ │ │ ├── MigrationTemplate.tpl │ │ │ ├── ModelTemplate.tpl │ │ │ ├── SchemaTemplate.tpl │ │ │ └── SeedTemplate.tpl │ │ ├── Commands │ │ │ ├── GenerateCommandCommand.php │ │ │ ├── GenerateDocsCommand.php │ │ │ ├── GenerateMigrationCommand.php │ │ │ ├── GenerateModelCommand.php │ │ │ ├── GenerateSchemaCommand.php │ │ │ ├── GenerateSeedCommand.php │ │ │ ├── MigrateDownCommand.php │ │ │ ├── MigrateUpCommand.php │ │ │ ├── RunSeedCommand.php │ │ │ └── RunTestCommand.php │ │ ├── Partisan.php │ │ └── Traits │ │ │ ├── CodeGenerate.php │ │ │ └── DbHelper.php │ ├── Controller │ │ ├── BaseController.php │ │ ├── CrudController.php │ │ ├── TokenController.php │ │ ├── UploadController.php │ │ └── UserController.php │ ├── Middleware │ │ ├── Authentication.php │ │ ├── CustomException.php │ │ └── Logger.php │ ├── Model │ │ ├── AccessToken.php │ │ ├── BaseModel.php │ │ ├── Log.php │ │ ├── MediaFile.php │ │ ├── RefreshToken.php │ │ ├── Right.php │ │ ├── Role.php │ │ ├── RoleToRight.php │ │ └── User.php │ ├── Observers │ │ ├── BaseObserver.php │ │ ├── CreatedByAndUpdatedByObserver.php │ │ └── LoggerObserver.php │ ├── Providers │ │ ├── AclServiceProvider.php │ │ ├── BaseServiceProvider.php │ │ ├── DatabaseServiceProvider.php │ │ ├── EncoderServiceProvider.php │ │ ├── ErrorHandlerServiceProvider.php │ │ ├── LogServiceProvider.php │ │ ├── MailerServiceProvider.php │ │ ├── RendererServiceProvider.php │ │ └── ValidationServiceProvider.php │ ├── Requests │ │ ├── GetTokenRequest.php │ │ ├── IRequest.php │ │ ├── PasswordResetRequest.php │ │ ├── RefreshTokenRequest.php │ │ ├── RequestPasswordResetRequest.php │ │ ├── RightCreateRequest.php │ │ ├── RightUpdateRequest.php │ │ ├── RoleCreateRequest.php │ │ ├── RoleUpdateRequest.php │ │ ├── UserCreateRequest.php │ │ └── UserUpdateRequest.php │ ├── Schema │ │ ├── BaseSchema.php │ │ ├── LogSchema.php │ │ ├── MediaFileSchema.php │ │ ├── RightSchema.php │ │ ├── RoleSchema.php │ │ ├── UserSchema.php │ │ └── UserSchemaExtended.php │ └── Scopes │ │ └── MaxPerPageScope.php └── templates │ └── mail │ └── RequestPasswordReset.php ├── bootstrap └── app.php ├── codeception.yml ├── composer.json ├── config ├── acl.php ├── apidoc.php ├── app.php ├── db.php ├── encoder.php ├── logger.php ├── mail.php ├── slim.php └── translate.php ├── docstemplate ├── css │ └── style.css ├── img │ ├── favicon.ico │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── index.html ├── locales │ ├── ca.js │ ├── de.js │ ├── es.js │ ├── fr.js │ ├── it.js │ ├── locale.js │ ├── nl.js │ ├── pl.js │ ├── pt_br.js │ ├── ro.js │ ├── ru.js │ ├── zh.js │ └── zh_cn.js ├── main.js ├── utils │ ├── handlebars_helper.js │ └── send_sample_request.js └── vendor │ ├── bootstrap-responsive.min.css │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── diff_match_patch.min.js │ ├── handlebars.min.js │ ├── jquery.min.js │ ├── jsoneditor │ ├── img │ │ └── jsoneditor-icons.svg │ ├── jsoneditor.js │ ├── jsoneditor.map │ ├── jsoneditor.min.css │ └── jsoneditor.min.js │ ├── lodash.min.js │ ├── path-to-regexp │ ├── LICENSE │ └── index.js │ ├── polyfill.js │ ├── prettify.css │ ├── prettify │ ├── lang-apollo.js │ ├── lang-basic.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-dart.js │ ├── lang-erlang.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-llvm.js │ ├── lang-lua.js │ ├── lang-matlab.js │ ├── lang-ml.js │ ├── lang-mumps.js │ ├── lang-n.js │ ├── lang-pascal.js │ ├── lang-proto.js │ ├── lang-r.js │ ├── lang-rd.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tcl.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── prettify.css │ ├── prettify.js │ └── run_prettify.js │ ├── require.min.js │ ├── semver.min.js │ └── webfontloader.js ├── log └── .gitignore ├── partisan ├── public ├── index.php ├── robots.txt └── uploads │ └── .gitignore ├── tests ├── _bootstrap.php ├── _data │ └── dump.sql ├── _output │ └── .gitignore ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Functional.php │ │ └── Unit.php │ ├── UnitTester.php │ └── _generated │ │ └── .gitignore ├── acceptance.suite.yml ├── acceptance │ └── _bootstrap.php ├── functional.suite.yml ├── functional │ ├── _bootstrap.php │ ├── tokenCest.php │ └── userCest.php ├── unit.suite.yml └── unit │ └── _bootstrap.php └── version.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/.env.dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/README.md -------------------------------------------------------------------------------- /app.paths.conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app.paths.conf.php -------------------------------------------------------------------------------- /app/apidoc/apidocdefine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/apidoc/apidocdefine.php -------------------------------------------------------------------------------- /app/apidoc/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/apidoc/header.md -------------------------------------------------------------------------------- /app/database/migrations/20160706231338_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20160706231338_create_users_table.php -------------------------------------------------------------------------------- /app/database/migrations/20160706232752_create_roles_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20160706232752_create_roles_table.php -------------------------------------------------------------------------------- /app/database/migrations/20160706232835_create_rights_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20160706232835_create_rights_table.php -------------------------------------------------------------------------------- /app/database/migrations/20160706233448_create_logs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20160706233448_create_logs_table.php -------------------------------------------------------------------------------- /app/database/migrations/20161016143152_create_roles_to_right_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20161016143152_create_roles_to_right_table.php -------------------------------------------------------------------------------- /app/database/migrations/20170128112159_create_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20170128112159_create_access_tokens_table.php -------------------------------------------------------------------------------- /app/database/migrations/20170129140408_create_refresh_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20170129140408_create_refresh_tokens_table.php -------------------------------------------------------------------------------- /app/database/migrations/20180223214037_create_media_files_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/migrations/20180223214037_create_media_files_table.php -------------------------------------------------------------------------------- /app/database/seeds/20160706233231_create_roles_rights_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/database/seeds/20160706233231_create_roles_rights_users.php -------------------------------------------------------------------------------- /app/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/lang/en/validation.php -------------------------------------------------------------------------------- /app/lang/ru/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/lang/ru/validation.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/routes.php -------------------------------------------------------------------------------- /app/src/Common/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Acl.php -------------------------------------------------------------------------------- /app/src/Common/ApiRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/ApiRenderer.php -------------------------------------------------------------------------------- /app/src/Common/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Auth.php -------------------------------------------------------------------------------- /app/src/Common/Config/Definition/AclConfigDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Config/Definition/AclConfigDefinition.php -------------------------------------------------------------------------------- /app/src/Common/Config/Definition/DbConfigDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Config/Definition/DbConfigDefinition.php -------------------------------------------------------------------------------- /app/src/Common/Config/FileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Config/FileLocator.php -------------------------------------------------------------------------------- /app/src/Common/Config/PHPConfigLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Config/PHPConfigLoader.php -------------------------------------------------------------------------------- /app/src/Common/Config/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Config/Settings.php -------------------------------------------------------------------------------- /app/src/Common/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/Helper.php -------------------------------------------------------------------------------- /app/src/Common/JsonApiEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/JsonApiEncoder.php -------------------------------------------------------------------------------- /app/src/Common/JsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/JsonException.php -------------------------------------------------------------------------------- /app/src/Common/MailRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Common/MailRenderer.php -------------------------------------------------------------------------------- /app/src/Console/CodeTemplates/CommandTemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/CodeTemplates/CommandTemplate.tpl -------------------------------------------------------------------------------- /app/src/Console/CodeTemplates/MigrationTemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/CodeTemplates/MigrationTemplate.tpl -------------------------------------------------------------------------------- /app/src/Console/CodeTemplates/ModelTemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/CodeTemplates/ModelTemplate.tpl -------------------------------------------------------------------------------- /app/src/Console/CodeTemplates/SchemaTemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/CodeTemplates/SchemaTemplate.tpl -------------------------------------------------------------------------------- /app/src/Console/CodeTemplates/SeedTemplate.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/CodeTemplates/SeedTemplate.tpl -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateCommandCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateCommandCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateDocsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateDocsCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateMigrationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateMigrationCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateModelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateModelCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateSchemaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateSchemaCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/GenerateSeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/GenerateSeedCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/MigrateDownCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/MigrateDownCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/MigrateUpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/MigrateUpCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/RunSeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/RunSeedCommand.php -------------------------------------------------------------------------------- /app/src/Console/Commands/RunTestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Commands/RunTestCommand.php -------------------------------------------------------------------------------- /app/src/Console/Partisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Partisan.php -------------------------------------------------------------------------------- /app/src/Console/Traits/CodeGenerate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Traits/CodeGenerate.php -------------------------------------------------------------------------------- /app/src/Console/Traits/DbHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Console/Traits/DbHelper.php -------------------------------------------------------------------------------- /app/src/Controller/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Controller/BaseController.php -------------------------------------------------------------------------------- /app/src/Controller/CrudController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Controller/CrudController.php -------------------------------------------------------------------------------- /app/src/Controller/TokenController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Controller/TokenController.php -------------------------------------------------------------------------------- /app/src/Controller/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Controller/UploadController.php -------------------------------------------------------------------------------- /app/src/Controller/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Controller/UserController.php -------------------------------------------------------------------------------- /app/src/Middleware/Authentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Middleware/Authentication.php -------------------------------------------------------------------------------- /app/src/Middleware/CustomException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Middleware/CustomException.php -------------------------------------------------------------------------------- /app/src/Middleware/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Middleware/Logger.php -------------------------------------------------------------------------------- /app/src/Model/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/AccessToken.php -------------------------------------------------------------------------------- /app/src/Model/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/BaseModel.php -------------------------------------------------------------------------------- /app/src/Model/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/Log.php -------------------------------------------------------------------------------- /app/src/Model/MediaFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/MediaFile.php -------------------------------------------------------------------------------- /app/src/Model/RefreshToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/RefreshToken.php -------------------------------------------------------------------------------- /app/src/Model/Right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/Right.php -------------------------------------------------------------------------------- /app/src/Model/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/Role.php -------------------------------------------------------------------------------- /app/src/Model/RoleToRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/RoleToRight.php -------------------------------------------------------------------------------- /app/src/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Model/User.php -------------------------------------------------------------------------------- /app/src/Observers/BaseObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Observers/BaseObserver.php -------------------------------------------------------------------------------- /app/src/Observers/CreatedByAndUpdatedByObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Observers/CreatedByAndUpdatedByObserver.php -------------------------------------------------------------------------------- /app/src/Observers/LoggerObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Observers/LoggerObserver.php -------------------------------------------------------------------------------- /app/src/Providers/AclServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/AclServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/BaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/BaseServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/EncoderServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/EncoderServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/ErrorHandlerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/ErrorHandlerServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/LogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/LogServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/MailerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/MailerServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/RendererServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/RendererServiceProvider.php -------------------------------------------------------------------------------- /app/src/Providers/ValidationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Providers/ValidationServiceProvider.php -------------------------------------------------------------------------------- /app/src/Requests/GetTokenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/GetTokenRequest.php -------------------------------------------------------------------------------- /app/src/Requests/IRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/IRequest.php -------------------------------------------------------------------------------- /app/src/Requests/PasswordResetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/PasswordResetRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RefreshTokenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RefreshTokenRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RequestPasswordResetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RequestPasswordResetRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RightCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RightCreateRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RightUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RightUpdateRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RoleCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RoleCreateRequest.php -------------------------------------------------------------------------------- /app/src/Requests/RoleUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/RoleUpdateRequest.php -------------------------------------------------------------------------------- /app/src/Requests/UserCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/UserCreateRequest.php -------------------------------------------------------------------------------- /app/src/Requests/UserUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Requests/UserUpdateRequest.php -------------------------------------------------------------------------------- /app/src/Schema/BaseSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/BaseSchema.php -------------------------------------------------------------------------------- /app/src/Schema/LogSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/LogSchema.php -------------------------------------------------------------------------------- /app/src/Schema/MediaFileSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/MediaFileSchema.php -------------------------------------------------------------------------------- /app/src/Schema/RightSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/RightSchema.php -------------------------------------------------------------------------------- /app/src/Schema/RoleSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/RoleSchema.php -------------------------------------------------------------------------------- /app/src/Schema/UserSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/UserSchema.php -------------------------------------------------------------------------------- /app/src/Schema/UserSchemaExtended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Schema/UserSchemaExtended.php -------------------------------------------------------------------------------- /app/src/Scopes/MaxPerPageScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/src/Scopes/MaxPerPageScope.php -------------------------------------------------------------------------------- /app/templates/mail/RequestPasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/app/templates/mail/RequestPasswordReset.php -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /codeception.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/codeception.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/composer.json -------------------------------------------------------------------------------- /config/acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/acl.php -------------------------------------------------------------------------------- /config/apidoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/apidoc.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/app.php -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/db.php -------------------------------------------------------------------------------- /config/encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/encoder.php -------------------------------------------------------------------------------- /config/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/logger.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/slim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/slim.php -------------------------------------------------------------------------------- /config/translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/config/translate.php -------------------------------------------------------------------------------- /docstemplate/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/css/style.css -------------------------------------------------------------------------------- /docstemplate/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/img/favicon.ico -------------------------------------------------------------------------------- /docstemplate/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docstemplate/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docstemplate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/index.html -------------------------------------------------------------------------------- /docstemplate/locales/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/ca.js -------------------------------------------------------------------------------- /docstemplate/locales/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/de.js -------------------------------------------------------------------------------- /docstemplate/locales/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/es.js -------------------------------------------------------------------------------- /docstemplate/locales/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/fr.js -------------------------------------------------------------------------------- /docstemplate/locales/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/it.js -------------------------------------------------------------------------------- /docstemplate/locales/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/locale.js -------------------------------------------------------------------------------- /docstemplate/locales/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/nl.js -------------------------------------------------------------------------------- /docstemplate/locales/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/pl.js -------------------------------------------------------------------------------- /docstemplate/locales/pt_br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/pt_br.js -------------------------------------------------------------------------------- /docstemplate/locales/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/ro.js -------------------------------------------------------------------------------- /docstemplate/locales/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/ru.js -------------------------------------------------------------------------------- /docstemplate/locales/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/zh.js -------------------------------------------------------------------------------- /docstemplate/locales/zh_cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/locales/zh_cn.js -------------------------------------------------------------------------------- /docstemplate/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/main.js -------------------------------------------------------------------------------- /docstemplate/utils/handlebars_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/utils/handlebars_helper.js -------------------------------------------------------------------------------- /docstemplate/utils/send_sample_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/utils/send_sample_request.js -------------------------------------------------------------------------------- /docstemplate/vendor/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /docstemplate/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /docstemplate/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/diff_match_patch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/diff_match_patch.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/handlebars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/handlebars.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jquery.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/jsoneditor/img/jsoneditor-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jsoneditor/img/jsoneditor-icons.svg -------------------------------------------------------------------------------- /docstemplate/vendor/jsoneditor/jsoneditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jsoneditor/jsoneditor.js -------------------------------------------------------------------------------- /docstemplate/vendor/jsoneditor/jsoneditor.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jsoneditor/jsoneditor.map -------------------------------------------------------------------------------- /docstemplate/vendor/jsoneditor/jsoneditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jsoneditor/jsoneditor.min.css -------------------------------------------------------------------------------- /docstemplate/vendor/jsoneditor/jsoneditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/jsoneditor/jsoneditor.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/lodash.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/path-to-regexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/path-to-regexp/LICENSE -------------------------------------------------------------------------------- /docstemplate/vendor/path-to-regexp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/path-to-regexp/index.js -------------------------------------------------------------------------------- /docstemplate/vendor/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/polyfill.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify.css -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-apollo.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-basic.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-clj.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-css.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-dart.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-erlang.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-go.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-hs.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-lisp.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-llvm.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-lua.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-matlab.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-ml.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-mumps.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-n.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-pascal.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-proto.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-r.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-rd.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-scala.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-sql.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-tcl.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-tex.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-vb.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-wiki.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-xq.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/lang-yaml.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/prettify.css -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/prettify.js -------------------------------------------------------------------------------- /docstemplate/vendor/prettify/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/prettify/run_prettify.js -------------------------------------------------------------------------------- /docstemplate/vendor/require.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/require.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/semver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/semver.min.js -------------------------------------------------------------------------------- /docstemplate/vendor/webfontloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/docstemplate/vendor/webfontloader.js -------------------------------------------------------------------------------- /log/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /partisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/partisan -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /public/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_bootstrap.php -------------------------------------------------------------------------------- /tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /tests/_output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/_support/AcceptanceTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/AcceptanceTester.php -------------------------------------------------------------------------------- /tests/_support/FunctionalTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/FunctionalTester.php -------------------------------------------------------------------------------- /tests/_support/Helper/Acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/Helper/Acceptance.php -------------------------------------------------------------------------------- /tests/_support/Helper/Functional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/Helper/Functional.php -------------------------------------------------------------------------------- /tests/_support/Helper/Unit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/Helper/Unit.php -------------------------------------------------------------------------------- /tests/_support/UnitTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/_support/UnitTester.php -------------------------------------------------------------------------------- /tests/_support/_generated/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/acceptance.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/acceptance.suite.yml -------------------------------------------------------------------------------- /tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/acceptance/_bootstrap.php -------------------------------------------------------------------------------- /tests/functional.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/functional.suite.yml -------------------------------------------------------------------------------- /tests/functional/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/functional/_bootstrap.php -------------------------------------------------------------------------------- /tests/functional/tokenCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/functional/tokenCest.php -------------------------------------------------------------------------------- /tests/functional/userCest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/functional/userCest.php -------------------------------------------------------------------------------- /tests/unit.suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/unit.suite.yml -------------------------------------------------------------------------------- /tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/tests/unit/_bootstrap.php -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot13/bootstrapi/HEAD/version.sh --------------------------------------------------------------------------------