├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── COMMIT_CONVENTION.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── bun-core-test.yml │ ├── bun-e2e-test.yml │ ├── nodejs-automated.yml │ ├── nodejs-core-test.yml │ ├── nodejs-e2e-test.yml │ └── package-test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── formidablejs │ ├── Commands │ │ ├── Build.js │ │ └── Start.js │ ├── ext.js │ ├── index.js │ └── runtime.js ├── imba │ └── server.imba └── jest │ └── preprocessor.js ├── formidable ├── Package.js ├── auth-emails │ ├── ResetPassword.imba │ └── VerifyEmail.imba ├── auth │ ├── imba │ │ ├── app │ │ │ ├── Http │ │ │ │ └── Controllers │ │ │ │ │ └── AuthController.imba │ │ │ └── Resolvers │ │ │ │ └── AuthServiceResolver.imba │ │ ├── resources │ │ │ └── views │ │ │ │ ├── Auth │ │ │ │ ├── EmailUnverified.imba │ │ │ │ ├── EmailVerification.imba │ │ │ │ ├── ForgotPassword.imba │ │ │ │ ├── Login.imba │ │ │ │ ├── PasswordReset.imba │ │ │ │ └── Register.imba │ │ │ │ └── welcome.imba │ │ ├── routes │ │ │ └── web.imba │ │ └── test │ │ │ ├── __mocks__ │ │ │ └── @paralleldrive │ │ │ │ └── cuid2.js │ │ │ └── app.e2e.test.imba │ └── ts │ │ ├── app │ │ ├── Http │ │ │ └── Controllers │ │ │ │ └── AuthController.ts │ │ └── Resolvers │ │ │ └── AuthServiceResolver.ts │ │ ├── resources │ │ └── views │ │ │ ├── Auth │ │ │ ├── EmailUnverified.imba │ │ │ ├── EmailVerification.imba │ │ │ ├── ForgotPassword.imba │ │ │ ├── Login.imba │ │ │ ├── PasswordReset.imba │ │ │ └── Register.imba │ │ │ └── welcome.imba │ │ ├── routes │ │ └── web.ts │ │ └── test │ │ ├── __mocks__ │ │ └── @paralleldrive │ │ │ └── cuid2.js │ │ └── app.e2e.test.ts └── web │ ├── config │ ├── imba │ │ └── auth.imba │ └── ts │ │ └── auth.ts │ ├── public │ ├── favicon.ico │ └── formidable.png │ ├── resolvers │ ├── imba │ │ └── RouterServiceResolver.imba │ └── ts │ │ └── RouterServiceResolver.ts │ ├── routes │ ├── imba │ │ ├── api.imba │ │ └── web.imba │ └── ts │ │ ├── api.ts │ │ └── web.ts │ ├── test │ ├── imba │ │ ├── __mocks__ │ │ │ └── @paralleldrive │ │ │ │ └── cuid2.js │ │ └── app.e2e.test.imba │ └── ts │ │ ├── __mocks__ │ │ └── @paralleldrive │ │ │ └── cuid2.js │ │ └── app.e2e.test.ts │ └── views │ └── welcome.imba ├── package.json ├── scripts ├── 0-package.sh ├── 1-fetch.sh ├── 2-install.sh ├── 3-copy-test-files.sh ├── 4-prepare.sh ├── 5-clean-up.sh ├── e2e │ ├── app │ │ ├── Http │ │ │ ├── Controllers │ │ │ │ └── PostController.imba │ │ │ └── Request │ │ │ │ └── StorePostRequest.imba │ │ └── Resolvers │ │ │ └── AppServiceResolver.imba │ ├── config │ │ └── database.imba │ ├── database │ │ └── migrations │ │ │ └── 20211126141343_create_posts_table.js │ ├── ecosystem.config.js │ ├── routes │ │ └── api.imba │ └── test │ │ ├── __mocks__ │ │ └── @paralleldrive │ │ │ └── cuid2.js │ │ ├── app.e2e.test.imba │ │ ├── auth.test.imba │ │ ├── database.test.imba │ │ ├── language.test.imba │ │ ├── responses.test.imba │ │ ├── routes.test.imba │ │ └── validation.test.imba └── server-command-replace.sh ├── src ├── Auth │ ├── Auth.imba │ ├── AuthService.imba │ ├── AuthenticationServiceResolver.imba │ ├── Authorize.imba │ ├── DriverManager.imba │ ├── Drivers │ │ ├── Driver.imba │ │ ├── JwtDriver.imba │ │ └── SessionDriver.imba │ ├── Exceptions │ │ ├── AuthenticationException.imba │ │ ├── AuthorizationException.imba │ │ ├── EmailNotVerifiedException.imba │ │ ├── EmailVerifiedException.imba │ │ ├── UnauthenticatedException.imba │ │ ├── UnsupportedAuthDriverException.imba │ │ └── index.imba │ ├── Http │ │ ├── Controllers │ │ │ ├── EmailVerificationController.imba │ │ │ ├── LoginController.imba │ │ │ ├── LogoutController.imba │ │ │ ├── PasswordController.imba │ │ │ └── RegisterController.imba │ │ ├── Middleware │ │ │ ├── Authenticate.imba │ │ │ ├── BeforeForgot.imba │ │ │ ├── BeforeLogin.imba │ │ │ ├── BeforeLogout.imba │ │ │ ├── BeforeRegister.imba │ │ │ ├── BeforeResend.imba │ │ │ ├── BeforeReset.imba │ │ │ ├── BeforeVerify.imba │ │ │ └── ErrorIfAuthenticated.imba │ │ └── Requests │ │ │ ├── EmailResendRequest.imba │ │ │ ├── ForgotPasswordRequest.imba │ │ │ ├── LoginRequest.imba │ │ │ ├── LogoutRequest.imba │ │ │ ├── RegisterRequest.imba │ │ │ ├── ResetPasswordRequest.imba │ │ │ └── VerifyEmailRequest.imba │ ├── Mail │ │ ├── ResetPassword.imba │ │ ├── VerifyEmail.imba │ │ └── index.imba │ ├── Protocol.imba │ └── Tokens │ │ ├── PersonalAccessToken.imba │ │ └── PersonalAccessTokenServiceResolver.imba ├── Config │ └── Repository.imba ├── Database │ ├── Bind.imba │ ├── Config.imba │ ├── Database.imba │ ├── Factory.imba │ ├── Migration.imba │ ├── Repository.imba │ └── Seeder.imba ├── Environment │ └── Repository.imba ├── Foundation │ ├── Application.imba │ ├── Bootstrap.imba │ ├── Console.imba │ ├── Console │ │ ├── Command.imba │ │ ├── Commands │ │ │ ├── CacheCommand.imba │ │ │ ├── ConfigCacheCommand.imba │ │ │ ├── ConfigClearCommand.imba │ │ │ ├── DbSeedCommand.imba │ │ │ ├── DownCommand.imba │ │ │ ├── EnvironmentCommand.imba │ │ │ ├── GenerateKeyCommand.imba │ │ │ ├── InspireCommand.imba │ │ │ ├── MaintenanceCommand.imba │ │ │ ├── MakeCommandCommand.imba │ │ │ ├── MakeConfigCommand.imba │ │ │ ├── MakeControllerCommand.imba │ │ │ ├── MakeCrudCommand.imba │ │ │ ├── MakeExceptionCommand.imba │ │ │ ├── MakeFactoryCommand.imba │ │ │ ├── MakeMailCommand.imba │ │ │ ├── MakeMiddlewareCommand.imba │ │ │ ├── MakeMigrationCommand.imba │ │ │ ├── MakeRepositoryCommand.imba │ │ │ ├── MakeRequestCommand.imba │ │ │ ├── MakeResolverCommand.imba │ │ │ ├── MakeResourceCommand.imba │ │ │ ├── MakeSeederCommand.imba │ │ │ ├── MakeTagCommand.imba │ │ │ ├── MakeViewCommand.imba │ │ │ ├── MigrateCommand.imba │ │ │ ├── MigrateDownCommand.imba │ │ │ ├── MigrateFreshCommand.imba │ │ │ ├── MigrateLatestCommand.imba │ │ │ ├── MigrateRollbackCommand.imba │ │ │ ├── MigrateUpCommand.imba │ │ │ ├── MigrationCommand.imba │ │ │ ├── PackagePublishCommand.imba │ │ │ ├── RouteListCommand.imba │ │ │ ├── ServeCommand.imba │ │ │ ├── SessionPruneExpiredCommand.imba │ │ │ ├── ShellCommand.imba │ │ │ └── UpCommand.imba │ │ ├── ServeEvents.imba │ │ └── verifyPort.imba │ ├── ConsoleKernel.imba │ ├── Context.imba │ ├── Encrypter.imba │ ├── Exceptions │ │ ├── ApplicationException.imba │ │ ├── DecryptException.imba │ │ ├── EncryptException.imba │ │ ├── ExitHandlerException.imba │ │ ├── Handler.imba │ │ ├── Handler │ │ │ └── handleException.imba │ │ ├── InvalidAppKeyException.imba │ │ ├── InvalidEncryptionKeyTypeException.imba │ │ ├── InvalidServiceResolver.imba │ │ ├── MaintenanceModeException.imba │ │ └── UnserializedEncryptValueException.imba │ ├── Inspiring.imba │ ├── MaintenanceServiceResolver.imba │ └── Server.imba ├── Hashing │ ├── Exceptions │ │ ├── InvalidHashConfigurationException.imba │ │ └── InvalidHashDriverException.imba │ ├── Hash.imba │ └── HashServiceResolver.imba ├── Http │ ├── Controller.imba │ ├── Cookie │ │ └── CookieServiceResolver.imba │ ├── Cors │ │ └── CorsServiceResolver.imba │ ├── Exceptions │ │ ├── BadRequestException.imba │ │ ├── ForbiddenException.imba │ │ ├── HttpException.imba │ │ ├── InvalidRouteActionException.imba │ │ ├── InvalidSignatureException.imba │ │ ├── NotFoundException.imba │ │ ├── UndefinedMiddlewareException.imba │ │ ├── UnsupportedSessionDriverException.imba │ │ └── index.imba │ ├── Kernel.imba │ ├── Kernel │ │ ├── getResponse.imba │ │ ├── handleNotFound.imba │ │ ├── hasContentTypes.imba │ │ └── resolveResponse.imba │ ├── Middleware.imba │ ├── Middleware │ │ ├── ConvertEmptyStringsToNull.imba │ │ ├── EnsureEmailIsVerified.imba │ │ ├── EnsureStateless.imba │ │ ├── ExitMiddleware.imba │ │ ├── TransformsRequest.imba │ │ ├── TrimStrings.imba │ │ ├── ValidateSignature.imba │ │ └── VerifyCsrfToken.imba │ ├── Redirect │ │ └── Redirect.imba │ ├── Request │ │ ├── Cookies.imba │ │ ├── Exceptions │ │ │ └── DestinationExistsException.imba │ │ ├── File.imba │ │ ├── FileCollection.imba │ │ ├── FormRequest.imba │ │ ├── FormValidation.imba │ │ ├── MultipartServiceResolver.imba │ │ ├── Request.imba │ │ └── Session.imba │ ├── Response │ │ ├── JsonResponse.imba │ │ ├── Response.imba │ │ └── ViewResponse.imba │ ├── Router │ │ ├── Exceptions │ │ │ └── InvalidRouteActionException.imba │ │ ├── Path.imba │ │ └── Route.imba │ ├── Session │ │ ├── DriverManager.imba │ │ ├── Exceptions │ │ │ ├── TokenMismatchException.imba │ │ │ └── UnsupportedSessionDriverException.imba │ │ ├── SessionFileStoreServiceResolver.imba │ │ ├── SessionMemoryStoreServiceResolver.imba │ │ └── SessionServiceResolver.imba │ ├── Static │ │ └── StaticContentServiceResolver.imba │ ├── URL │ │ ├── Exceptions │ │ │ ├── MissingRouteParamException.imba │ │ │ └── UnregisteredRouteException.imba │ │ └── URL.imba │ └── View │ │ ├── Exceptions │ │ └── UndefinedDataPropException.imba │ │ └── View.imba ├── Mail │ └── Mailable.imba ├── Mix │ └── Repository.imba ├── Redis │ ├── Redis.imba │ ├── RedisFactory.imba │ └── RedisServiceResolver.imba ├── Support │ ├── Decorators │ │ ├── context.imba │ │ └── use.imba │ ├── Encryption │ │ ├── Exceptions │ │ │ └── MissingAppKeyException.imba │ │ └── HasEncryptionKey.imba │ ├── Helpers │ │ ├── Error │ │ │ ├── BooleanCastError.imba │ │ │ ├── ConfigNotCachedError.imba │ │ │ └── InvalidExitFunction.imba │ │ ├── asObject.imba │ │ ├── bind.imba │ │ ├── config.imba │ │ ├── decrypt.imba │ │ ├── die.imba │ │ ├── dotNotation.imba │ │ ├── encrypt.imba │ │ ├── env.imba │ │ ├── expiresIn.imba │ │ ├── hashEquals.imba │ │ ├── imbaEnv.imba │ │ ├── index.imba │ │ ├── isArray.imba │ │ ├── isBoolean.imba │ │ ├── isClass.imba │ │ ├── isEmpty.imba │ │ ├── isFunction.imba │ │ ├── isNumber.imba │ │ ├── isObject.imba │ │ ├── isString.imba │ │ ├── loadHelpers.imba │ │ ├── location.imba │ │ ├── mix.imba │ │ ├── multitap.imba │ │ ├── now.imba │ │ ├── response.imba │ │ ├── route.imba │ │ ├── runtime.imba │ │ ├── signedRoute.imba │ │ ├── singularize.imba │ │ ├── slug.imba │ │ ├── strRandom.imba │ │ ├── tap.imba │ │ ├── temporarySignedRoute.imba │ │ ├── toBoolean.imba │ │ ├── updateLine.imba │ │ ├── version.imba │ │ ├── view.imba │ │ ├── wildcard.imba │ │ └── without.imba │ ├── HigherOrderTapProxy.imba │ ├── InfiniteHigherOrderTapProxy.imba │ ├── Language │ │ ├── Language.imba │ │ ├── LanguageServiceResolver.imba │ │ └── Middleware │ │ │ └── AcceptLanguage.imba │ └── ServiceResolver.imba ├── Validator │ ├── Exceptions │ │ └── ValidationException.imba │ ├── ValidationServiceResolver.imba │ └── Validator.imba └── index.imba ├── test ├── config │ ├── Config.js │ └── repository.test.js ├── encrypter │ ├── encrypter.exceptions.test.js │ ├── encrypter.test.js │ └── setup │ │ └── Encrypter.js ├── environment │ ├── .env │ └── repository.test.js ├── hashing │ └── hash.test.js ├── helpers │ ├── asObject.test.js │ ├── config.test.js │ ├── dotNotation.test.js │ ├── env.test.js │ ├── isArray.test.js │ ├── isBoolean.test.js │ ├── isClass.test.js │ ├── isEmpty.test.js │ ├── isFunction.test.js │ ├── isNumber.test.js │ ├── isObject.test.js │ ├── isString.test.js │ ├── multitap.test.js │ ├── route.test.js │ ├── signedRoute.test.js │ ├── slug.test.js │ ├── strRandom.test.js │ ├── tap.test.js │ ├── temporarySignedRoute.test.js │ ├── toBoolean.test.js │ ├── wildcard.test.js │ └── without.test.js ├── http │ ├── redirect │ │ └── redirect.test.js │ ├── router │ │ └── route.test.js │ └── url │ │ └── url.test.js ├── jwt │ ├── personalAccessToken.test.js │ └── setup │ │ ├── Config.js │ │ ├── Database.js │ │ ├── db-config.js │ │ ├── knexfile.js │ │ ├── migrations │ │ ├── 20210724082462-create_users_table.js │ │ └── 20210820161410_create_personal_access_tokens_table.js │ │ └── seeds │ │ └── users.js └── redis │ ├── redis.test.js │ └── setup │ └── Config.js ├── tsconfig.json └── types ├── Auth ├── Auth.d.ts ├── AuthService.d.ts ├── AuthenticationServiceResolver.d.ts ├── Authorize.d.ts ├── DriverManager.d.ts ├── Drivers │ ├── Driver.d.ts │ ├── JwtDriver.d.ts │ └── SessionDriver.d.ts ├── Exceptions │ ├── AuthorizationException.d.ts │ ├── EmailNotVerifiedException.d.ts │ ├── EmailVerifiedException.d.ts │ └── UnsupportedAuthDriverException.d.ts ├── Http │ ├── Controllers │ │ ├── EmailVerificationController.d.ts │ │ ├── LoginController.d.ts │ │ ├── LogoutController.d.ts │ │ ├── PasswordController.d.ts │ │ └── RegisterController.d.ts │ ├── Middleware │ │ ├── Authenticate.d.ts │ │ ├── BeforeForgot.d.ts │ │ ├── BeforeLogin.d.ts │ │ ├── BeforeLogout.d.ts │ │ ├── BeforeRegister.d.ts │ │ ├── BeforeResend.d.ts │ │ ├── BeforeReset.d.ts │ │ ├── BeforeVerify.d.ts │ │ └── ErrorIfAuthenticated.d.ts │ └── Requests │ │ ├── EmailResendRequest.d.ts │ │ ├── ForgotPasswordRequest.d.ts │ │ ├── LoginRequest.d.ts │ │ ├── LogoutRequest.d.ts │ │ ├── RegisterRequest.d.ts │ │ ├── ResetPasswordRequest.d.ts │ │ └── VerifyEmailRequest.d.ts ├── Mail │ ├── ResetPassword.d.ts │ ├── VerifyEmail.d.ts │ └── index.d.ts ├── Protocol.d.ts └── Tokens │ ├── PersonalAccessToken.d.ts │ └── PersonalAccessTokenServiceResolver.d.ts ├── Config └── Repository.d.ts ├── Database ├── Bind.d.ts ├── Config.d.ts ├── Database.d.ts ├── Factory.d.ts ├── IContextual.d.ts ├── Migration.d.ts ├── Repository.d.ts ├── Seeder.d.ts └── result.d.ts ├── Environment └── Repository.d.ts ├── Foundation ├── Application.d.ts ├── Bootstrap.d.ts ├── Console.d.ts ├── Console │ ├── Command.d.ts │ ├── Commands │ │ ├── CacheCommand.d.ts │ │ ├── ConfigCacheCommand.d.ts │ │ ├── ConfigClearCommand.d.ts │ │ ├── DbSeedCommand.d.ts │ │ ├── DownCommand.d.ts │ │ ├── EnvironmentCommand.d.ts │ │ ├── GenerateKeyCommand.d.ts │ │ ├── InspireCommand.d.ts │ │ ├── MaintenanceCommand.d.ts │ │ ├── MakeCommandCommand.d.ts │ │ ├── MakeConfigCommand.d.ts │ │ ├── MakeControllerCommand.d.ts │ │ ├── MakeCrudCommand.d.ts │ │ ├── MakeExceptionCommand.d.ts │ │ ├── MakeMailCommand.d.ts │ │ ├── MakeMiddlewareCommand.d.ts │ │ ├── MakeMigrationCommand.d.ts │ │ ├── MakeRepositoryCommand.d.ts │ │ ├── MakeRequestCommand.d.ts │ │ ├── MakeResolverCommand.d.ts │ │ ├── MakeResourceCommand.d.ts │ │ ├── MakeSeederCommand.d.ts │ │ ├── MakeTagCommand.d.ts │ │ ├── MakeViewCommand.d.ts │ │ ├── MigrateDownCommand.d.ts │ │ ├── MigrateFreshCommand.d.ts │ │ ├── MigrateLatestCommand.d.ts │ │ ├── MigrateRollbackCommand.d.ts │ │ ├── MigrateUpCommand.d.ts │ │ ├── MigrationCommand.d.ts │ │ ├── PackagePublishCommand.d.ts │ │ ├── RouteListCommand.d.ts │ │ ├── ServeCommand.d.ts │ │ ├── SessionPruneExpiredCommand.d.ts │ │ ├── ShellCommand.d.ts │ │ └── UpCommand.d.ts │ └── verifyPort.ts ├── ConsoleKernel.d.ts ├── Context.d.ts ├── Encrypter.d.ts ├── Exceptions │ ├── ApplicationException.d.ts │ ├── DecryptException.d.ts │ ├── EncryptException.d.ts │ ├── ExitHandlerException.d.ts │ ├── Handler.d.ts │ ├── Handler │ │ └── handleException.d.ts │ ├── InvalidAppKeyException.d.ts │ ├── InvalidEncryptionKeyTypeException.d.ts │ ├── InvalidServiceResolver.d.ts │ └── MaintenanceModeException.d.ts ├── Inspiring.d.ts ├── MaintenanceServiceResolver.d.ts └── Server.d.ts ├── Hashing ├── Exceptions │ ├── InvalidHashConfigurationException.d.ts │ └── InvalidHashDriverException.d.ts ├── Hash.d.ts └── HashServiceResolver.d.ts ├── Http ├── Controller.d.ts ├── Cookie │ └── CookieServiceResolver.d.ts ├── Cors │ └── CorsServiceResolver.d.ts ├── Exceptions │ ├── BadRequestException.d.ts │ ├── ForbiddenException.d.ts │ ├── HttpException.d.ts │ ├── InvalidSignatureException.d.ts │ ├── NotFoundException.d.ts │ └── UndefinedMiddlewareException.d.ts ├── Kernel.d.ts ├── Kernel │ ├── getResponse.d.ts │ ├── handleNotFound.d.ts │ ├── hasContentTypes.d.ts │ └── resolveResponse.d.ts ├── Middleware.d.ts ├── Middleware │ ├── ConvertEmptyStringsToNull.d.ts │ ├── EnsureEmailIsVerified.d.ts │ ├── EnsureStateless.d.ts │ ├── IMiddleware.d.ts │ ├── MiddlewareAliases.d.ts │ ├── MiddlewareGroups.d.ts │ ├── TransformsRequest.d.ts │ ├── TrimStrings.d.ts │ ├── ValidateSignature.d.ts │ └── VerifyCsrfToken.d.ts ├── Redirect │ └── Redirect.d.ts ├── Request │ ├── Cookies.d.ts │ ├── Exceptions │ │ └── DestinationExistsException.d.ts │ ├── File.d.ts │ ├── FileCollection.d.ts │ ├── FormRequest.d.ts │ ├── FormValidation.d.ts │ ├── MultipartServiceResolver.d.ts │ ├── Request.d.ts │ ├── Session.d.ts │ └── ValidationRules.d.ts ├── Response │ ├── JsonResponse.d.ts │ ├── Response.d.ts │ └── ViewResponse.d.ts ├── Router │ ├── Exceptions │ │ └── InvalidRouteActionException.d.ts │ ├── Path.d.ts │ └── Route.d.ts ├── Session │ ├── DriverManager.d.ts │ ├── Exceptions │ │ ├── TokenMismatchException.d.ts │ │ └── UnsupportedSessionDriverException.d.ts │ ├── SessionFileStoreServiceResolver.d.ts │ ├── SessionMemoryStoreServiceResolver.d.ts │ └── SessionServiceResolver.d.ts ├── Static │ └── StaticContentServiceResolver.d.ts ├── URL │ ├── Exceptions │ │ ├── MissingRouteParamException.d.ts │ │ └── UnregisteredRouteException.d.ts │ └── URL.d.ts └── View │ ├── Exceptions │ └── UndefinedDataPropException.d.ts │ └── View.d.ts ├── Mail └── Mailable.d.ts ├── Mix └── Repository.d.ts ├── Redis ├── Redis.d.ts └── RedisServiceResolver.d.ts ├── Support ├── Decorators │ ├── context.d.ts │ └── use.d.ts ├── Encryption │ ├── Exceptions │ │ └── MissingAppKeyException.d.ts │ └── HasEncryptionKey.d.ts ├── Helpers │ ├── Error │ │ ├── BooleanCastError.d.ts │ │ ├── ConfigNotCachedError.d.ts │ │ └── InvalidExitFunction.d.ts │ ├── asObject.d.ts │ ├── bind.d.ts │ ├── config.d.ts │ ├── decrypt.d.ts │ ├── die.d.ts │ ├── dotNotation.d.ts │ ├── encrypt.d.ts │ ├── env.d.ts │ ├── expiresIn.d.ts │ ├── hashEquals.d.ts │ ├── imbaEnv.d.ts │ ├── index.d.ts │ ├── isArray.d.ts │ ├── isBoolean.d.ts │ ├── isClass.d.ts │ ├── isEmpty.d.ts │ ├── isFunction.d.ts │ ├── isNumber.d.ts │ ├── isObject.d.ts │ ├── isString.d.ts │ ├── loadHelpers.d.ts │ ├── location.d.ts │ ├── mix.d.ts │ ├── multitap.d.ts │ ├── now.d.ts │ ├── response.d.ts │ ├── route.d.ts │ ├── runtime.d.ts │ ├── signedRoute.d.ts │ ├── singularize.d.ts │ ├── slug.d.ts │ ├── strRandom.d.ts │ ├── tap.d.ts │ ├── temporarySignedRoute.d.ts │ ├── toBoolean.d.ts │ ├── updateLine.d.ts │ ├── version.d.ts │ ├── view.d.ts │ ├── wildcard.d.ts │ └── without.d.ts ├── HigherOrderTapProxy.d.ts ├── InfiniteHigherOrderTapProxy.d.ts ├── Language │ ├── Language.d.ts │ ├── LanguageServiceResolver.d.ts │ └── Middleware │ │ └── AcceptLanguage.d.ts └── ServiceResolver.d.ts ├── Validator ├── Exceptions │ └── ValidationException.d.ts ├── ValidationServiceResolver.d.ts └── Validator.d.ts └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/COMMIT_CONVENTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/COMMIT_CONVENTION.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: donaldp -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/bun-core-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/bun-core-test.yml -------------------------------------------------------------------------------- /.github/workflows/bun-e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/bun-e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-automated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/nodejs-automated.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-core-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/nodejs-core-test.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs-e2e-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/nodejs-e2e-test.yml -------------------------------------------------------------------------------- /.github/workflows/package-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.github/workflows/package-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/README.md -------------------------------------------------------------------------------- /bin/formidablejs/Commands/Build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/formidablejs/Commands/Build.js -------------------------------------------------------------------------------- /bin/formidablejs/Commands/Start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/formidablejs/Commands/Start.js -------------------------------------------------------------------------------- /bin/formidablejs/ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/formidablejs/ext.js -------------------------------------------------------------------------------- /bin/formidablejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/formidablejs/index.js -------------------------------------------------------------------------------- /bin/formidablejs/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/formidablejs/runtime.js -------------------------------------------------------------------------------- /bin/imba/server.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/imba/server.imba -------------------------------------------------------------------------------- /bin/jest/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/bin/jest/preprocessor.js -------------------------------------------------------------------------------- /formidable/Package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/Package.js -------------------------------------------------------------------------------- /formidable/auth-emails/ResetPassword.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth-emails/ResetPassword.imba -------------------------------------------------------------------------------- /formidable/auth-emails/VerifyEmail.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth-emails/VerifyEmail.imba -------------------------------------------------------------------------------- /formidable/auth/imba/app/Http/Controllers/AuthController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/app/Http/Controllers/AuthController.imba -------------------------------------------------------------------------------- /formidable/auth/imba/app/Resolvers/AuthServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/app/Resolvers/AuthServiceResolver.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/EmailUnverified.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/EmailUnverified.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/EmailVerification.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/EmailVerification.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/ForgotPassword.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/ForgotPassword.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/Login.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/Login.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/PasswordReset.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/PasswordReset.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/Auth/Register.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/Auth/Register.imba -------------------------------------------------------------------------------- /formidable/auth/imba/resources/views/welcome.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/resources/views/welcome.imba -------------------------------------------------------------------------------- /formidable/auth/imba/routes/web.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/routes/web.imba -------------------------------------------------------------------------------- /formidable/auth/imba/test/__mocks__/@paralleldrive/cuid2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/test/__mocks__/@paralleldrive/cuid2.js -------------------------------------------------------------------------------- /formidable/auth/imba/test/app.e2e.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/imba/test/app.e2e.test.imba -------------------------------------------------------------------------------- /formidable/auth/ts/app/Http/Controllers/AuthController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/app/Http/Controllers/AuthController.ts -------------------------------------------------------------------------------- /formidable/auth/ts/app/Resolvers/AuthServiceResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/app/Resolvers/AuthServiceResolver.ts -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/EmailUnverified.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/EmailUnverified.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/EmailVerification.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/EmailVerification.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/ForgotPassword.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/ForgotPassword.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/Login.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/Login.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/PasswordReset.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/PasswordReset.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/Auth/Register.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/Auth/Register.imba -------------------------------------------------------------------------------- /formidable/auth/ts/resources/views/welcome.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/resources/views/welcome.imba -------------------------------------------------------------------------------- /formidable/auth/ts/routes/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/routes/web.ts -------------------------------------------------------------------------------- /formidable/auth/ts/test/__mocks__/@paralleldrive/cuid2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/test/__mocks__/@paralleldrive/cuid2.js -------------------------------------------------------------------------------- /formidable/auth/ts/test/app.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/auth/ts/test/app.e2e.test.ts -------------------------------------------------------------------------------- /formidable/web/config/imba/auth.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/config/imba/auth.imba -------------------------------------------------------------------------------- /formidable/web/config/ts/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/config/ts/auth.ts -------------------------------------------------------------------------------- /formidable/web/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /formidable/web/public/formidable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/public/formidable.png -------------------------------------------------------------------------------- /formidable/web/resolvers/imba/RouterServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/resolvers/imba/RouterServiceResolver.imba -------------------------------------------------------------------------------- /formidable/web/resolvers/ts/RouterServiceResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/resolvers/ts/RouterServiceResolver.ts -------------------------------------------------------------------------------- /formidable/web/routes/imba/api.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/routes/imba/api.imba -------------------------------------------------------------------------------- /formidable/web/routes/imba/web.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/routes/imba/web.imba -------------------------------------------------------------------------------- /formidable/web/routes/ts/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/routes/ts/api.ts -------------------------------------------------------------------------------- /formidable/web/routes/ts/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/routes/ts/web.ts -------------------------------------------------------------------------------- /formidable/web/test/imba/__mocks__/@paralleldrive/cuid2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/test/imba/__mocks__/@paralleldrive/cuid2.js -------------------------------------------------------------------------------- /formidable/web/test/imba/app.e2e.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/test/imba/app.e2e.test.imba -------------------------------------------------------------------------------- /formidable/web/test/ts/__mocks__/@paralleldrive/cuid2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/test/ts/__mocks__/@paralleldrive/cuid2.js -------------------------------------------------------------------------------- /formidable/web/test/ts/app.e2e.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/test/ts/app.e2e.test.ts -------------------------------------------------------------------------------- /formidable/web/views/welcome.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/formidable/web/views/welcome.imba -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/package.json -------------------------------------------------------------------------------- /scripts/0-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/0-package.sh -------------------------------------------------------------------------------- /scripts/1-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/1-fetch.sh -------------------------------------------------------------------------------- /scripts/2-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/2-install.sh -------------------------------------------------------------------------------- /scripts/3-copy-test-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/3-copy-test-files.sh -------------------------------------------------------------------------------- /scripts/4-prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/4-prepare.sh -------------------------------------------------------------------------------- /scripts/5-clean-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/5-clean-up.sh -------------------------------------------------------------------------------- /scripts/e2e/app/Http/Controllers/PostController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/app/Http/Controllers/PostController.imba -------------------------------------------------------------------------------- /scripts/e2e/app/Http/Request/StorePostRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/app/Http/Request/StorePostRequest.imba -------------------------------------------------------------------------------- /scripts/e2e/app/Resolvers/AppServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/app/Resolvers/AppServiceResolver.imba -------------------------------------------------------------------------------- /scripts/e2e/config/database.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/config/database.imba -------------------------------------------------------------------------------- /scripts/e2e/database/migrations/20211126141343_create_posts_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/database/migrations/20211126141343_create_posts_table.js -------------------------------------------------------------------------------- /scripts/e2e/ecosystem.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/ecosystem.config.js -------------------------------------------------------------------------------- /scripts/e2e/routes/api.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/routes/api.imba -------------------------------------------------------------------------------- /scripts/e2e/test/__mocks__/@paralleldrive/cuid2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/__mocks__/@paralleldrive/cuid2.js -------------------------------------------------------------------------------- /scripts/e2e/test/app.e2e.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/app.e2e.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/auth.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/auth.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/database.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/database.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/language.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/language.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/responses.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/responses.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/routes.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/routes.test.imba -------------------------------------------------------------------------------- /scripts/e2e/test/validation.test.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/e2e/test/validation.test.imba -------------------------------------------------------------------------------- /scripts/server-command-replace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/scripts/server-command-replace.sh -------------------------------------------------------------------------------- /src/Auth/Auth.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Auth.imba -------------------------------------------------------------------------------- /src/Auth/AuthService.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/AuthService.imba -------------------------------------------------------------------------------- /src/Auth/AuthenticationServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/AuthenticationServiceResolver.imba -------------------------------------------------------------------------------- /src/Auth/Authorize.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Authorize.imba -------------------------------------------------------------------------------- /src/Auth/DriverManager.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/DriverManager.imba -------------------------------------------------------------------------------- /src/Auth/Drivers/Driver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Drivers/Driver.imba -------------------------------------------------------------------------------- /src/Auth/Drivers/JwtDriver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Drivers/JwtDriver.imba -------------------------------------------------------------------------------- /src/Auth/Drivers/SessionDriver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Drivers/SessionDriver.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/AuthenticationException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/AuthenticationException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/AuthorizationException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/AuthorizationException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/EmailNotVerifiedException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/EmailNotVerifiedException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/EmailVerifiedException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/EmailVerifiedException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/UnauthenticatedException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/UnauthenticatedException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/UnsupportedAuthDriverException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/UnsupportedAuthDriverException.imba -------------------------------------------------------------------------------- /src/Auth/Exceptions/index.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Exceptions/index.imba -------------------------------------------------------------------------------- /src/Auth/Http/Controllers/EmailVerificationController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Controllers/EmailVerificationController.imba -------------------------------------------------------------------------------- /src/Auth/Http/Controllers/LoginController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Controllers/LoginController.imba -------------------------------------------------------------------------------- /src/Auth/Http/Controllers/LogoutController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Controllers/LogoutController.imba -------------------------------------------------------------------------------- /src/Auth/Http/Controllers/PasswordController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Controllers/PasswordController.imba -------------------------------------------------------------------------------- /src/Auth/Http/Controllers/RegisterController.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Controllers/RegisterController.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/Authenticate.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/Authenticate.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeForgot.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeForgot.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeLogin.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeLogin.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeLogout.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeLogout.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeRegister.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeRegister.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeResend.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeResend.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeReset.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeReset.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/BeforeVerify.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/BeforeVerify.imba -------------------------------------------------------------------------------- /src/Auth/Http/Middleware/ErrorIfAuthenticated.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Middleware/ErrorIfAuthenticated.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/EmailResendRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/EmailResendRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/ForgotPasswordRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/ForgotPasswordRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/LoginRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/LoginRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/LogoutRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/LogoutRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/RegisterRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/RegisterRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/ResetPasswordRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/ResetPasswordRequest.imba -------------------------------------------------------------------------------- /src/Auth/Http/Requests/VerifyEmailRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Http/Requests/VerifyEmailRequest.imba -------------------------------------------------------------------------------- /src/Auth/Mail/ResetPassword.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Mail/ResetPassword.imba -------------------------------------------------------------------------------- /src/Auth/Mail/VerifyEmail.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Mail/VerifyEmail.imba -------------------------------------------------------------------------------- /src/Auth/Mail/index.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Mail/index.imba -------------------------------------------------------------------------------- /src/Auth/Protocol.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Protocol.imba -------------------------------------------------------------------------------- /src/Auth/Tokens/PersonalAccessToken.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Tokens/PersonalAccessToken.imba -------------------------------------------------------------------------------- /src/Auth/Tokens/PersonalAccessTokenServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Auth/Tokens/PersonalAccessTokenServiceResolver.imba -------------------------------------------------------------------------------- /src/Config/Repository.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Config/Repository.imba -------------------------------------------------------------------------------- /src/Database/Bind.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Bind.imba -------------------------------------------------------------------------------- /src/Database/Config.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Config.imba -------------------------------------------------------------------------------- /src/Database/Database.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Database.imba -------------------------------------------------------------------------------- /src/Database/Factory.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Factory.imba -------------------------------------------------------------------------------- /src/Database/Migration.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Migration.imba -------------------------------------------------------------------------------- /src/Database/Repository.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Repository.imba -------------------------------------------------------------------------------- /src/Database/Seeder.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Database/Seeder.imba -------------------------------------------------------------------------------- /src/Environment/Repository.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Environment/Repository.imba -------------------------------------------------------------------------------- /src/Foundation/Application.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Application.imba -------------------------------------------------------------------------------- /src/Foundation/Bootstrap.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Bootstrap.imba -------------------------------------------------------------------------------- /src/Foundation/Console.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Command.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Command.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/CacheCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/CacheCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/ConfigCacheCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/ConfigCacheCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/ConfigClearCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/ConfigClearCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/DbSeedCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/DbSeedCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/DownCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/DownCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/EnvironmentCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/EnvironmentCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/GenerateKeyCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/GenerateKeyCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/InspireCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/InspireCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MaintenanceCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MaintenanceCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeCommandCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeCommandCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeConfigCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeConfigCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeControllerCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeControllerCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeCrudCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeCrudCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeExceptionCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeExceptionCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeFactoryCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeFactoryCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeMailCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeMailCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeMiddlewareCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeMiddlewareCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeMigrationCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeMigrationCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeRepositoryCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeRepositoryCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeRequestCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeRequestCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeResolverCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeResolverCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeResourceCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeResourceCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeSeederCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeSeederCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeTagCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeTagCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MakeViewCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MakeViewCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateDownCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateDownCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateFreshCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateFreshCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateLatestCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateLatestCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateRollbackCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateRollbackCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrateUpCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrateUpCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/MigrationCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/MigrationCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/PackagePublishCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/PackagePublishCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/RouteListCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/RouteListCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/ServeCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/ServeCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/SessionPruneExpiredCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/SessionPruneExpiredCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/ShellCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/ShellCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/Commands/UpCommand.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/Commands/UpCommand.imba -------------------------------------------------------------------------------- /src/Foundation/Console/ServeEvents.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/ServeEvents.imba -------------------------------------------------------------------------------- /src/Foundation/Console/verifyPort.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Console/verifyPort.imba -------------------------------------------------------------------------------- /src/Foundation/ConsoleKernel.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/ConsoleKernel.imba -------------------------------------------------------------------------------- /src/Foundation/Context.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Context.imba -------------------------------------------------------------------------------- /src/Foundation/Encrypter.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Encrypter.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/ApplicationException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/ApplicationException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/DecryptException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/DecryptException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/EncryptException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/EncryptException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/ExitHandlerException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/ExitHandlerException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/Handler.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/Handler.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/Handler/handleException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/Handler/handleException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/InvalidAppKeyException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/InvalidAppKeyException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/InvalidEncryptionKeyTypeException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/InvalidEncryptionKeyTypeException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/InvalidServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/InvalidServiceResolver.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/MaintenanceModeException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/MaintenanceModeException.imba -------------------------------------------------------------------------------- /src/Foundation/Exceptions/UnserializedEncryptValueException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Exceptions/UnserializedEncryptValueException.imba -------------------------------------------------------------------------------- /src/Foundation/Inspiring.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Inspiring.imba -------------------------------------------------------------------------------- /src/Foundation/MaintenanceServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/MaintenanceServiceResolver.imba -------------------------------------------------------------------------------- /src/Foundation/Server.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Foundation/Server.imba -------------------------------------------------------------------------------- /src/Hashing/Exceptions/InvalidHashConfigurationException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Hashing/Exceptions/InvalidHashConfigurationException.imba -------------------------------------------------------------------------------- /src/Hashing/Exceptions/InvalidHashDriverException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Hashing/Exceptions/InvalidHashDriverException.imba -------------------------------------------------------------------------------- /src/Hashing/Hash.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Hashing/Hash.imba -------------------------------------------------------------------------------- /src/Hashing/HashServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Hashing/HashServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Controller.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Controller.imba -------------------------------------------------------------------------------- /src/Http/Cookie/CookieServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Cookie/CookieServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Cors/CorsServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Cors/CorsServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/BadRequestException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/BadRequestException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/ForbiddenException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/ForbiddenException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/HttpException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/HttpException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/InvalidRouteActionException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/InvalidRouteActionException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/InvalidSignatureException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/InvalidSignatureException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/NotFoundException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/NotFoundException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/UndefinedMiddlewareException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/UndefinedMiddlewareException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/UnsupportedSessionDriverException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/UnsupportedSessionDriverException.imba -------------------------------------------------------------------------------- /src/Http/Exceptions/index.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Exceptions/index.imba -------------------------------------------------------------------------------- /src/Http/Kernel.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Kernel.imba -------------------------------------------------------------------------------- /src/Http/Kernel/getResponse.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Kernel/getResponse.imba -------------------------------------------------------------------------------- /src/Http/Kernel/handleNotFound.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Kernel/handleNotFound.imba -------------------------------------------------------------------------------- /src/Http/Kernel/hasContentTypes.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Kernel/hasContentTypes.imba -------------------------------------------------------------------------------- /src/Http/Kernel/resolveResponse.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Kernel/resolveResponse.imba -------------------------------------------------------------------------------- /src/Http/Middleware.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware.imba -------------------------------------------------------------------------------- /src/Http/Middleware/ConvertEmptyStringsToNull.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/ConvertEmptyStringsToNull.imba -------------------------------------------------------------------------------- /src/Http/Middleware/EnsureEmailIsVerified.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/EnsureEmailIsVerified.imba -------------------------------------------------------------------------------- /src/Http/Middleware/EnsureStateless.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/EnsureStateless.imba -------------------------------------------------------------------------------- /src/Http/Middleware/ExitMiddleware.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/ExitMiddleware.imba -------------------------------------------------------------------------------- /src/Http/Middleware/TransformsRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/TransformsRequest.imba -------------------------------------------------------------------------------- /src/Http/Middleware/TrimStrings.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/TrimStrings.imba -------------------------------------------------------------------------------- /src/Http/Middleware/ValidateSignature.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/ValidateSignature.imba -------------------------------------------------------------------------------- /src/Http/Middleware/VerifyCsrfToken.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Middleware/VerifyCsrfToken.imba -------------------------------------------------------------------------------- /src/Http/Redirect/Redirect.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Redirect/Redirect.imba -------------------------------------------------------------------------------- /src/Http/Request/Cookies.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/Cookies.imba -------------------------------------------------------------------------------- /src/Http/Request/Exceptions/DestinationExistsException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/Exceptions/DestinationExistsException.imba -------------------------------------------------------------------------------- /src/Http/Request/File.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/File.imba -------------------------------------------------------------------------------- /src/Http/Request/FileCollection.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/FileCollection.imba -------------------------------------------------------------------------------- /src/Http/Request/FormRequest.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/FormRequest.imba -------------------------------------------------------------------------------- /src/Http/Request/FormValidation.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/FormValidation.imba -------------------------------------------------------------------------------- /src/Http/Request/MultipartServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/MultipartServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Request/Request.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/Request.imba -------------------------------------------------------------------------------- /src/Http/Request/Session.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Request/Session.imba -------------------------------------------------------------------------------- /src/Http/Response/JsonResponse.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Response/JsonResponse.imba -------------------------------------------------------------------------------- /src/Http/Response/Response.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Response/Response.imba -------------------------------------------------------------------------------- /src/Http/Response/ViewResponse.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Response/ViewResponse.imba -------------------------------------------------------------------------------- /src/Http/Router/Exceptions/InvalidRouteActionException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Router/Exceptions/InvalidRouteActionException.imba -------------------------------------------------------------------------------- /src/Http/Router/Path.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Router/Path.imba -------------------------------------------------------------------------------- /src/Http/Router/Route.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Router/Route.imba -------------------------------------------------------------------------------- /src/Http/Session/DriverManager.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/DriverManager.imba -------------------------------------------------------------------------------- /src/Http/Session/Exceptions/TokenMismatchException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/Exceptions/TokenMismatchException.imba -------------------------------------------------------------------------------- /src/Http/Session/Exceptions/UnsupportedSessionDriverException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/Exceptions/UnsupportedSessionDriverException.imba -------------------------------------------------------------------------------- /src/Http/Session/SessionFileStoreServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/SessionFileStoreServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Session/SessionMemoryStoreServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/SessionMemoryStoreServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Session/SessionServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Session/SessionServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/Static/StaticContentServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/Static/StaticContentServiceResolver.imba -------------------------------------------------------------------------------- /src/Http/URL/Exceptions/MissingRouteParamException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/URL/Exceptions/MissingRouteParamException.imba -------------------------------------------------------------------------------- /src/Http/URL/Exceptions/UnregisteredRouteException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/URL/Exceptions/UnregisteredRouteException.imba -------------------------------------------------------------------------------- /src/Http/URL/URL.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/URL/URL.imba -------------------------------------------------------------------------------- /src/Http/View/Exceptions/UndefinedDataPropException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/View/Exceptions/UndefinedDataPropException.imba -------------------------------------------------------------------------------- /src/Http/View/View.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Http/View/View.imba -------------------------------------------------------------------------------- /src/Mail/Mailable.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Mail/Mailable.imba -------------------------------------------------------------------------------- /src/Mix/Repository.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Mix/Repository.imba -------------------------------------------------------------------------------- /src/Redis/Redis.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Redis/Redis.imba -------------------------------------------------------------------------------- /src/Redis/RedisFactory.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Redis/RedisFactory.imba -------------------------------------------------------------------------------- /src/Redis/RedisServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Redis/RedisServiceResolver.imba -------------------------------------------------------------------------------- /src/Support/Decorators/context.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Decorators/context.imba -------------------------------------------------------------------------------- /src/Support/Decorators/use.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Decorators/use.imba -------------------------------------------------------------------------------- /src/Support/Encryption/Exceptions/MissingAppKeyException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Encryption/Exceptions/MissingAppKeyException.imba -------------------------------------------------------------------------------- /src/Support/Encryption/HasEncryptionKey.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Encryption/HasEncryptionKey.imba -------------------------------------------------------------------------------- /src/Support/Helpers/Error/BooleanCastError.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/Error/BooleanCastError.imba -------------------------------------------------------------------------------- /src/Support/Helpers/Error/ConfigNotCachedError.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/Error/ConfigNotCachedError.imba -------------------------------------------------------------------------------- /src/Support/Helpers/Error/InvalidExitFunction.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/Error/InvalidExitFunction.imba -------------------------------------------------------------------------------- /src/Support/Helpers/asObject.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/asObject.imba -------------------------------------------------------------------------------- /src/Support/Helpers/bind.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/bind.imba -------------------------------------------------------------------------------- /src/Support/Helpers/config.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/config.imba -------------------------------------------------------------------------------- /src/Support/Helpers/decrypt.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/decrypt.imba -------------------------------------------------------------------------------- /src/Support/Helpers/die.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/die.imba -------------------------------------------------------------------------------- /src/Support/Helpers/dotNotation.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/dotNotation.imba -------------------------------------------------------------------------------- /src/Support/Helpers/encrypt.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/encrypt.imba -------------------------------------------------------------------------------- /src/Support/Helpers/env.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/env.imba -------------------------------------------------------------------------------- /src/Support/Helpers/expiresIn.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/expiresIn.imba -------------------------------------------------------------------------------- /src/Support/Helpers/hashEquals.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/hashEquals.imba -------------------------------------------------------------------------------- /src/Support/Helpers/imbaEnv.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/imbaEnv.imba -------------------------------------------------------------------------------- /src/Support/Helpers/index.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/index.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isArray.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isArray.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isBoolean.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isBoolean.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isClass.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isClass.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isEmpty.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isEmpty.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isFunction.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isFunction.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isNumber.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isNumber.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isObject.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isObject.imba -------------------------------------------------------------------------------- /src/Support/Helpers/isString.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/isString.imba -------------------------------------------------------------------------------- /src/Support/Helpers/loadHelpers.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/loadHelpers.imba -------------------------------------------------------------------------------- /src/Support/Helpers/location.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/location.imba -------------------------------------------------------------------------------- /src/Support/Helpers/mix.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/mix.imba -------------------------------------------------------------------------------- /src/Support/Helpers/multitap.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/multitap.imba -------------------------------------------------------------------------------- /src/Support/Helpers/now.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/now.imba -------------------------------------------------------------------------------- /src/Support/Helpers/response.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/response.imba -------------------------------------------------------------------------------- /src/Support/Helpers/route.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/route.imba -------------------------------------------------------------------------------- /src/Support/Helpers/runtime.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/runtime.imba -------------------------------------------------------------------------------- /src/Support/Helpers/signedRoute.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/signedRoute.imba -------------------------------------------------------------------------------- /src/Support/Helpers/singularize.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/singularize.imba -------------------------------------------------------------------------------- /src/Support/Helpers/slug.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/slug.imba -------------------------------------------------------------------------------- /src/Support/Helpers/strRandom.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/strRandom.imba -------------------------------------------------------------------------------- /src/Support/Helpers/tap.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/tap.imba -------------------------------------------------------------------------------- /src/Support/Helpers/temporarySignedRoute.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/temporarySignedRoute.imba -------------------------------------------------------------------------------- /src/Support/Helpers/toBoolean.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/toBoolean.imba -------------------------------------------------------------------------------- /src/Support/Helpers/updateLine.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/updateLine.imba -------------------------------------------------------------------------------- /src/Support/Helpers/version.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/version.imba -------------------------------------------------------------------------------- /src/Support/Helpers/view.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/view.imba -------------------------------------------------------------------------------- /src/Support/Helpers/wildcard.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/wildcard.imba -------------------------------------------------------------------------------- /src/Support/Helpers/without.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Helpers/without.imba -------------------------------------------------------------------------------- /src/Support/HigherOrderTapProxy.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/HigherOrderTapProxy.imba -------------------------------------------------------------------------------- /src/Support/InfiniteHigherOrderTapProxy.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/InfiniteHigherOrderTapProxy.imba -------------------------------------------------------------------------------- /src/Support/Language/Language.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Language/Language.imba -------------------------------------------------------------------------------- /src/Support/Language/LanguageServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Language/LanguageServiceResolver.imba -------------------------------------------------------------------------------- /src/Support/Language/Middleware/AcceptLanguage.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/Language/Middleware/AcceptLanguage.imba -------------------------------------------------------------------------------- /src/Support/ServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Support/ServiceResolver.imba -------------------------------------------------------------------------------- /src/Validator/Exceptions/ValidationException.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Validator/Exceptions/ValidationException.imba -------------------------------------------------------------------------------- /src/Validator/ValidationServiceResolver.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Validator/ValidationServiceResolver.imba -------------------------------------------------------------------------------- /src/Validator/Validator.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/Validator/Validator.imba -------------------------------------------------------------------------------- /src/index.imba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/src/index.imba -------------------------------------------------------------------------------- /test/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/config/Config.js -------------------------------------------------------------------------------- /test/config/repository.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/config/repository.test.js -------------------------------------------------------------------------------- /test/encrypter/encrypter.exceptions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/encrypter/encrypter.exceptions.test.js -------------------------------------------------------------------------------- /test/encrypter/encrypter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/encrypter/encrypter.test.js -------------------------------------------------------------------------------- /test/encrypter/setup/Encrypter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/encrypter/setup/Encrypter.js -------------------------------------------------------------------------------- /test/environment/.env: -------------------------------------------------------------------------------- 1 | APP_NAME=Formidable 2 | APP_ENV=testing 3 | -------------------------------------------------------------------------------- /test/environment/repository.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/environment/repository.test.js -------------------------------------------------------------------------------- /test/hashing/hash.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/hashing/hash.test.js -------------------------------------------------------------------------------- /test/helpers/asObject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/asObject.test.js -------------------------------------------------------------------------------- /test/helpers/config.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/config.test.js -------------------------------------------------------------------------------- /test/helpers/dotNotation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/dotNotation.test.js -------------------------------------------------------------------------------- /test/helpers/env.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/env.test.js -------------------------------------------------------------------------------- /test/helpers/isArray.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isArray.test.js -------------------------------------------------------------------------------- /test/helpers/isBoolean.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isBoolean.test.js -------------------------------------------------------------------------------- /test/helpers/isClass.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isClass.test.js -------------------------------------------------------------------------------- /test/helpers/isEmpty.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isEmpty.test.js -------------------------------------------------------------------------------- /test/helpers/isFunction.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isFunction.test.js -------------------------------------------------------------------------------- /test/helpers/isNumber.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isNumber.test.js -------------------------------------------------------------------------------- /test/helpers/isObject.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isObject.test.js -------------------------------------------------------------------------------- /test/helpers/isString.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/isString.test.js -------------------------------------------------------------------------------- /test/helpers/multitap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/multitap.test.js -------------------------------------------------------------------------------- /test/helpers/route.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/route.test.js -------------------------------------------------------------------------------- /test/helpers/signedRoute.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/signedRoute.test.js -------------------------------------------------------------------------------- /test/helpers/slug.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/slug.test.js -------------------------------------------------------------------------------- /test/helpers/strRandom.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/strRandom.test.js -------------------------------------------------------------------------------- /test/helpers/tap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/tap.test.js -------------------------------------------------------------------------------- /test/helpers/temporarySignedRoute.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/temporarySignedRoute.test.js -------------------------------------------------------------------------------- /test/helpers/toBoolean.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/toBoolean.test.js -------------------------------------------------------------------------------- /test/helpers/wildcard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/wildcard.test.js -------------------------------------------------------------------------------- /test/helpers/without.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/helpers/without.test.js -------------------------------------------------------------------------------- /test/http/redirect/redirect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/http/redirect/redirect.test.js -------------------------------------------------------------------------------- /test/http/router/route.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/http/router/route.test.js -------------------------------------------------------------------------------- /test/http/url/url.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/http/url/url.test.js -------------------------------------------------------------------------------- /test/jwt/personalAccessToken.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/personalAccessToken.test.js -------------------------------------------------------------------------------- /test/jwt/setup/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/Config.js -------------------------------------------------------------------------------- /test/jwt/setup/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/Database.js -------------------------------------------------------------------------------- /test/jwt/setup/db-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/db-config.js -------------------------------------------------------------------------------- /test/jwt/setup/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/knexfile.js -------------------------------------------------------------------------------- /test/jwt/setup/migrations/20210724082462-create_users_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/migrations/20210724082462-create_users_table.js -------------------------------------------------------------------------------- /test/jwt/setup/migrations/20210820161410_create_personal_access_tokens_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/migrations/20210820161410_create_personal_access_tokens_table.js -------------------------------------------------------------------------------- /test/jwt/setup/seeds/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/jwt/setup/seeds/users.js -------------------------------------------------------------------------------- /test/redis/redis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/redis/redis.test.js -------------------------------------------------------------------------------- /test/redis/setup/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/test/redis/setup/Config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/Auth/Auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Auth.d.ts -------------------------------------------------------------------------------- /types/Auth/AuthService.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/AuthService.d.ts -------------------------------------------------------------------------------- /types/Auth/AuthenticationServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/AuthenticationServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Auth/Authorize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Authorize.d.ts -------------------------------------------------------------------------------- /types/Auth/DriverManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/DriverManager.d.ts -------------------------------------------------------------------------------- /types/Auth/Drivers/Driver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Drivers/Driver.d.ts -------------------------------------------------------------------------------- /types/Auth/Drivers/JwtDriver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Drivers/JwtDriver.d.ts -------------------------------------------------------------------------------- /types/Auth/Drivers/SessionDriver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Drivers/SessionDriver.d.ts -------------------------------------------------------------------------------- /types/Auth/Exceptions/AuthorizationException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Exceptions/AuthorizationException.d.ts -------------------------------------------------------------------------------- /types/Auth/Exceptions/EmailNotVerifiedException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Exceptions/EmailNotVerifiedException.d.ts -------------------------------------------------------------------------------- /types/Auth/Exceptions/EmailVerifiedException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Exceptions/EmailVerifiedException.d.ts -------------------------------------------------------------------------------- /types/Auth/Exceptions/UnsupportedAuthDriverException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Exceptions/UnsupportedAuthDriverException.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Controllers/EmailVerificationController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Controllers/EmailVerificationController.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Controllers/LoginController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Controllers/LoginController.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Controllers/LogoutController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Controllers/LogoutController.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Controllers/PasswordController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Controllers/PasswordController.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Controllers/RegisterController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Controllers/RegisterController.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/Authenticate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/Authenticate.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeForgot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeForgot.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeLogin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeLogin.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeLogout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeLogout.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeRegister.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeRegister.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeResend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeResend.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeReset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeReset.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/BeforeVerify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/BeforeVerify.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Middleware/ErrorIfAuthenticated.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Middleware/ErrorIfAuthenticated.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/EmailResendRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/EmailResendRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/ForgotPasswordRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/ForgotPasswordRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/LoginRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/LoginRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/LogoutRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/LogoutRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/RegisterRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/RegisterRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/ResetPasswordRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/ResetPasswordRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Http/Requests/VerifyEmailRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Http/Requests/VerifyEmailRequest.d.ts -------------------------------------------------------------------------------- /types/Auth/Mail/ResetPassword.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Mail/ResetPassword.d.ts -------------------------------------------------------------------------------- /types/Auth/Mail/VerifyEmail.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Mail/VerifyEmail.d.ts -------------------------------------------------------------------------------- /types/Auth/Mail/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Mail/index.d.ts -------------------------------------------------------------------------------- /types/Auth/Protocol.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Protocol.d.ts -------------------------------------------------------------------------------- /types/Auth/Tokens/PersonalAccessToken.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Tokens/PersonalAccessToken.d.ts -------------------------------------------------------------------------------- /types/Auth/Tokens/PersonalAccessTokenServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Auth/Tokens/PersonalAccessTokenServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Config/Repository.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Config/Repository.d.ts -------------------------------------------------------------------------------- /types/Database/Bind.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Bind.d.ts -------------------------------------------------------------------------------- /types/Database/Config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Config.d.ts -------------------------------------------------------------------------------- /types/Database/Database.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Database.d.ts -------------------------------------------------------------------------------- /types/Database/Factory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Factory.d.ts -------------------------------------------------------------------------------- /types/Database/IContextual.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/IContextual.d.ts -------------------------------------------------------------------------------- /types/Database/Migration.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Migration.d.ts -------------------------------------------------------------------------------- /types/Database/Repository.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Repository.d.ts -------------------------------------------------------------------------------- /types/Database/Seeder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/Seeder.d.ts -------------------------------------------------------------------------------- /types/Database/result.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Database/result.d.ts -------------------------------------------------------------------------------- /types/Environment/Repository.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Environment/Repository.d.ts -------------------------------------------------------------------------------- /types/Foundation/Application.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Application.d.ts -------------------------------------------------------------------------------- /types/Foundation/Bootstrap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Bootstrap.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Command.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Command.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/CacheCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/CacheCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/ConfigCacheCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/ConfigCacheCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/ConfigClearCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/ConfigClearCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/DbSeedCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/DbSeedCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/DownCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/DownCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/EnvironmentCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/EnvironmentCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/GenerateKeyCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/GenerateKeyCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/InspireCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/InspireCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MaintenanceCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MaintenanceCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeCommandCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeCommandCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeConfigCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeConfigCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeControllerCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeControllerCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeCrudCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeCrudCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeExceptionCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeExceptionCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeMailCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeMailCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeMiddlewareCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeMiddlewareCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeMigrationCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeMigrationCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeRepositoryCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeRepositoryCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeRequestCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeRequestCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeResolverCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeResolverCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeResourceCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeResourceCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeSeederCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeSeederCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeTagCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeTagCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MakeViewCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MakeViewCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrateDownCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrateDownCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrateFreshCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrateFreshCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrateLatestCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrateLatestCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrateRollbackCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrateRollbackCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrateUpCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrateUpCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/MigrationCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/MigrationCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/PackagePublishCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/PackagePublishCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/RouteListCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/RouteListCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/ServeCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/ServeCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/SessionPruneExpiredCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/SessionPruneExpiredCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/ShellCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/ShellCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/Commands/UpCommand.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/Commands/UpCommand.d.ts -------------------------------------------------------------------------------- /types/Foundation/Console/verifyPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Console/verifyPort.ts -------------------------------------------------------------------------------- /types/Foundation/ConsoleKernel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/ConsoleKernel.d.ts -------------------------------------------------------------------------------- /types/Foundation/Context.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Context.d.ts -------------------------------------------------------------------------------- /types/Foundation/Encrypter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Encrypter.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/ApplicationException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/ApplicationException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/DecryptException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/DecryptException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/EncryptException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/EncryptException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/ExitHandlerException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/ExitHandlerException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/Handler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/Handler.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/Handler/handleException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/Handler/handleException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/InvalidAppKeyException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/InvalidAppKeyException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/InvalidEncryptionKeyTypeException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/InvalidEncryptionKeyTypeException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/InvalidServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/InvalidServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Foundation/Exceptions/MaintenanceModeException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Exceptions/MaintenanceModeException.d.ts -------------------------------------------------------------------------------- /types/Foundation/Inspiring.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Inspiring.d.ts -------------------------------------------------------------------------------- /types/Foundation/MaintenanceServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/MaintenanceServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Foundation/Server.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Foundation/Server.d.ts -------------------------------------------------------------------------------- /types/Hashing/Exceptions/InvalidHashConfigurationException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Hashing/Exceptions/InvalidHashConfigurationException.d.ts -------------------------------------------------------------------------------- /types/Hashing/Exceptions/InvalidHashDriverException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Hashing/Exceptions/InvalidHashDriverException.d.ts -------------------------------------------------------------------------------- /types/Hashing/Hash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Hashing/Hash.d.ts -------------------------------------------------------------------------------- /types/Hashing/HashServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Hashing/HashServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Controller.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Controller.d.ts -------------------------------------------------------------------------------- /types/Http/Cookie/CookieServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Cookie/CookieServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Cors/CorsServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Cors/CorsServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/BadRequestException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/BadRequestException.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/ForbiddenException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/ForbiddenException.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/HttpException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/HttpException.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/InvalidSignatureException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/InvalidSignatureException.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/NotFoundException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/NotFoundException.d.ts -------------------------------------------------------------------------------- /types/Http/Exceptions/UndefinedMiddlewareException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Exceptions/UndefinedMiddlewareException.d.ts -------------------------------------------------------------------------------- /types/Http/Kernel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Kernel.d.ts -------------------------------------------------------------------------------- /types/Http/Kernel/getResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Kernel/getResponse.d.ts -------------------------------------------------------------------------------- /types/Http/Kernel/handleNotFound.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Kernel/handleNotFound.d.ts -------------------------------------------------------------------------------- /types/Http/Kernel/hasContentTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Kernel/hasContentTypes.d.ts -------------------------------------------------------------------------------- /types/Http/Kernel/resolveResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Kernel/resolveResponse.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/ConvertEmptyStringsToNull.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/ConvertEmptyStringsToNull.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/EnsureEmailIsVerified.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/EnsureEmailIsVerified.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/EnsureStateless.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/EnsureStateless.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/IMiddleware.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/IMiddleware.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/MiddlewareAliases.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/MiddlewareAliases.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/MiddlewareGroups.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/MiddlewareGroups.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/TransformsRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/TransformsRequest.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/TrimStrings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/TrimStrings.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/ValidateSignature.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/ValidateSignature.d.ts -------------------------------------------------------------------------------- /types/Http/Middleware/VerifyCsrfToken.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Middleware/VerifyCsrfToken.d.ts -------------------------------------------------------------------------------- /types/Http/Redirect/Redirect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Redirect/Redirect.d.ts -------------------------------------------------------------------------------- /types/Http/Request/Cookies.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/Cookies.d.ts -------------------------------------------------------------------------------- /types/Http/Request/Exceptions/DestinationExistsException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/Exceptions/DestinationExistsException.d.ts -------------------------------------------------------------------------------- /types/Http/Request/File.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/File.d.ts -------------------------------------------------------------------------------- /types/Http/Request/FileCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/FileCollection.d.ts -------------------------------------------------------------------------------- /types/Http/Request/FormRequest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/FormRequest.d.ts -------------------------------------------------------------------------------- /types/Http/Request/FormValidation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/FormValidation.d.ts -------------------------------------------------------------------------------- /types/Http/Request/MultipartServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/MultipartServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Request/Request.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/Request.d.ts -------------------------------------------------------------------------------- /types/Http/Request/Session.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/Session.d.ts -------------------------------------------------------------------------------- /types/Http/Request/ValidationRules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Request/ValidationRules.d.ts -------------------------------------------------------------------------------- /types/Http/Response/JsonResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Response/JsonResponse.d.ts -------------------------------------------------------------------------------- /types/Http/Response/Response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Response/Response.d.ts -------------------------------------------------------------------------------- /types/Http/Response/ViewResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Response/ViewResponse.d.ts -------------------------------------------------------------------------------- /types/Http/Router/Exceptions/InvalidRouteActionException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Router/Exceptions/InvalidRouteActionException.d.ts -------------------------------------------------------------------------------- /types/Http/Router/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Router/Path.d.ts -------------------------------------------------------------------------------- /types/Http/Router/Route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Router/Route.d.ts -------------------------------------------------------------------------------- /types/Http/Session/DriverManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/DriverManager.d.ts -------------------------------------------------------------------------------- /types/Http/Session/Exceptions/TokenMismatchException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/Exceptions/TokenMismatchException.d.ts -------------------------------------------------------------------------------- /types/Http/Session/Exceptions/UnsupportedSessionDriverException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/Exceptions/UnsupportedSessionDriverException.d.ts -------------------------------------------------------------------------------- /types/Http/Session/SessionFileStoreServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/SessionFileStoreServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Session/SessionMemoryStoreServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/SessionMemoryStoreServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Session/SessionServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Session/SessionServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/Static/StaticContentServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/Static/StaticContentServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Http/URL/Exceptions/MissingRouteParamException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/URL/Exceptions/MissingRouteParamException.d.ts -------------------------------------------------------------------------------- /types/Http/URL/Exceptions/UnregisteredRouteException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/URL/Exceptions/UnregisteredRouteException.d.ts -------------------------------------------------------------------------------- /types/Http/URL/URL.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/URL/URL.d.ts -------------------------------------------------------------------------------- /types/Http/View/Exceptions/UndefinedDataPropException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/View/Exceptions/UndefinedDataPropException.d.ts -------------------------------------------------------------------------------- /types/Http/View/View.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Http/View/View.d.ts -------------------------------------------------------------------------------- /types/Mail/Mailable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Mail/Mailable.d.ts -------------------------------------------------------------------------------- /types/Mix/Repository.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Mix/Repository.d.ts -------------------------------------------------------------------------------- /types/Redis/Redis.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Redis/Redis.d.ts -------------------------------------------------------------------------------- /types/Redis/RedisServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Redis/RedisServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Support/Decorators/context.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /types/Support/Decorators/use.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Decorators/use.d.ts -------------------------------------------------------------------------------- /types/Support/Encryption/Exceptions/MissingAppKeyException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Encryption/Exceptions/MissingAppKeyException.d.ts -------------------------------------------------------------------------------- /types/Support/Encryption/HasEncryptionKey.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Encryption/HasEncryptionKey.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/Error/BooleanCastError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/Error/BooleanCastError.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/Error/ConfigNotCachedError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/Error/ConfigNotCachedError.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/Error/InvalidExitFunction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/Error/InvalidExitFunction.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/asObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/asObject.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/bind.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/bind.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/config.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/decrypt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/decrypt.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/die.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/die.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/dotNotation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/dotNotation.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/encrypt.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/encrypt.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/env.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/expiresIn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/expiresIn.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/hashEquals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/hashEquals.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/imbaEnv.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/imbaEnv.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/index.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isArray.d.ts: -------------------------------------------------------------------------------- 1 | export default function isArray(object: any): boolean; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/isBoolean.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/isBoolean.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/isClass.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isEmpty.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/isEmpty.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isFunction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/isFunction.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isNumber.d.ts: -------------------------------------------------------------------------------- 1 | export default function isNumber(object: any): boolean; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/isObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/isObject.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/isString.d.ts: -------------------------------------------------------------------------------- 1 | export default function isString(object: any): boolean; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/loadHelpers.d.ts: -------------------------------------------------------------------------------- 1 | export default function loadHelpers(): void; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/location.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/location.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/mix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/mix.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/multitap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/multitap.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/now.d.ts: -------------------------------------------------------------------------------- 1 | export default function now(): any; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/response.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/response.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/route.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/runtime.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/runtime.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/signedRoute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/signedRoute.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/singularize.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/singularize.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/slug.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/slug.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/strRandom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/strRandom.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/tap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/tap.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/temporarySignedRoute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/temporarySignedRoute.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/toBoolean.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/toBoolean.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/updateLine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/updateLine.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/version.d.ts: -------------------------------------------------------------------------------- 1 | export default function version(): string; 2 | -------------------------------------------------------------------------------- /types/Support/Helpers/view.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/view.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/wildcard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/wildcard.d.ts -------------------------------------------------------------------------------- /types/Support/Helpers/without.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Helpers/without.d.ts -------------------------------------------------------------------------------- /types/Support/HigherOrderTapProxy.d.ts: -------------------------------------------------------------------------------- 1 | export class HigherOrderTapProxy { 2 | constructor(object: any); 3 | } 4 | -------------------------------------------------------------------------------- /types/Support/InfiniteHigherOrderTapProxy.d.ts: -------------------------------------------------------------------------------- 1 | export class InfiniteHigherOrderTapProxy { 2 | constructor(object: any); 3 | } 4 | -------------------------------------------------------------------------------- /types/Support/Language/Language.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Language/Language.d.ts -------------------------------------------------------------------------------- /types/Support/Language/LanguageServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Language/LanguageServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Support/Language/Middleware/AcceptLanguage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/Language/Middleware/AcceptLanguage.d.ts -------------------------------------------------------------------------------- /types/Support/ServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Support/ServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Validator/Exceptions/ValidationException.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Validator/Exceptions/ValidationException.d.ts -------------------------------------------------------------------------------- /types/Validator/ValidationServiceResolver.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Validator/ValidationServiceResolver.d.ts -------------------------------------------------------------------------------- /types/Validator/Validator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/Validator/Validator.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formidablejs/framework/HEAD/types/index.d.ts --------------------------------------------------------------------------------