├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Routes.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── BaseController.php │ └── Home.php ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeds │ │ └── .gitkeep ├── Filters │ └── .gitkeep ├── Helpers │ └── .gitkeep ├── Language │ └── .gitkeep ├── Libraries │ └── .gitkeep ├── Models │ └── .gitkeep ├── ThirdParty │ └── .gitkeep ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ └── welcome_message.php └── index.html ├── composer.json ├── contributing.md ├── license.txt ├── phpunit.xml.dist ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── spark ├── system ├── .htaccess ├── API │ └── ResponseTrait.php ├── Autoloader │ ├── Autoloader.php │ └── FileLocator.php ├── CLI │ ├── BaseCommand.php │ ├── CLI.php │ ├── CommandRunner.php │ ├── Console.php │ └── Exceptions │ │ └── CLIException.php ├── Cache │ ├── CacheFactory.php │ ├── CacheInterface.php │ ├── Exceptions │ │ ├── CacheException.php │ │ └── ExceptionInterface.php │ └── Handlers │ │ ├── DummyHandler.php │ │ ├── FileHandler.php │ │ ├── MemcachedHandler.php │ │ ├── PredisHandler.php │ │ ├── RedisHandler.php │ │ └── WincacheHandler.php ├── CodeIgniter.php ├── Commands │ ├── Database │ │ ├── CreateMigration.php │ │ ├── Migrate.php │ │ ├── MigrateRefresh.php │ │ ├── MigrateRollback.php │ │ ├── MigrateStatus.php │ │ └── Seed.php │ ├── Help.php │ ├── ListCommands.php │ ├── Server │ │ ├── Serve.php │ │ └── rewrite.php │ ├── Sessions │ │ ├── CreateMigration.php │ │ └── Views │ │ │ └── migration.tpl.php │ └── Utilities │ │ ├── Namespaces.php │ │ └── Routes.php ├── Common.php ├── ComposerScripts.php ├── Config │ ├── AutoloadConfig.php │ ├── BaseConfig.php │ ├── BaseService.php │ ├── Config.php │ ├── DotEnv.php │ ├── ForeignCharacters.php │ ├── Routes.php │ ├── Services.php │ └── View.php ├── Controller.php ├── Database │ ├── BaseBuilder.php │ ├── BaseConnection.php │ ├── BasePreparedQuery.php │ ├── BaseResult.php │ ├── BaseUtils.php │ ├── Config.php │ ├── ConnectionInterface.php │ ├── Database.php │ ├── Exceptions │ │ ├── DataException.php │ │ ├── DatabaseException.php │ │ └── ExceptionInterface.php │ ├── Forge.php │ ├── Migration.php │ ├── MigrationRunner.php │ ├── ModelFactory.php │ ├── MySQLi │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── Postgre │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ └── Utils.php │ ├── PreparedQueryInterface.php │ ├── Query.php │ ├── QueryInterface.php │ ├── ResultInterface.php │ ├── SQLite3 │ │ ├── Builder.php │ │ ├── Connection.php │ │ ├── Forge.php │ │ ├── PreparedQuery.php │ │ ├── Result.php │ │ ├── Table.php │ │ └── Utils.php │ └── Seeder.php ├── Debug │ ├── Exceptions.php │ ├── Iterator.php │ ├── Timer.php │ ├── Toolbar.php │ └── Toolbar │ │ ├── Collectors │ │ ├── BaseCollector.php │ │ ├── Config.php │ │ ├── Database.php │ │ ├── Events.php │ │ ├── Files.php │ │ ├── History.php │ │ ├── Logs.php │ │ ├── Routes.php │ │ ├── Timers.php │ │ └── Views.php │ │ └── Views │ │ ├── _config.tpl │ │ ├── _database.tpl │ │ ├── _events.tpl │ │ ├── _files.tpl │ │ ├── _history.tpl │ │ ├── _logs.tpl │ │ ├── _routes.tpl │ │ ├── toolbar.css │ │ ├── toolbar.js │ │ ├── toolbar.tpl.php │ │ └── toolbarloader.js.php ├── Email │ └── Email.php ├── Encryption │ ├── EncrypterInterface.php │ ├── Encryption.php │ ├── Exceptions │ │ └── EncryptionException.php │ └── Handlers │ │ ├── BaseHandler.php │ │ └── OpenSSLHandler.php ├── Entity.php ├── Events │ └── Events.php ├── Exceptions │ ├── AlertError.php │ ├── CastException.php │ ├── ConfigException.php │ ├── CriticalError.php │ ├── DownloadException.php │ ├── EmergencyError.php │ ├── ExceptionInterface.php │ ├── FrameworkException.php │ ├── ModelException.php │ └── PageNotFoundException.php ├── Files │ ├── Exceptions │ │ ├── FileException.php │ │ └── FileNotFoundException.php │ └── File.php ├── Filters │ ├── CSRF.php │ ├── DebugToolbar.php │ ├── Exceptions │ │ └── FilterException.php │ ├── FilterInterface.php │ ├── Filters.php │ └── Honeypot.php ├── Format │ ├── Exceptions │ │ └── FormatException.php │ ├── FormatterInterface.php │ ├── JSONFormatter.php │ └── XMLFormatter.php ├── HTTP │ ├── CLIRequest.php │ ├── CURLRequest.php │ ├── ContentSecurityPolicy.php │ ├── DownloadResponse.php │ ├── Exceptions │ │ └── HTTPException.php │ ├── Files │ │ ├── FileCollection.php │ │ ├── UploadedFile.php │ │ └── UploadedFileInterface.php │ ├── Header.php │ ├── IncomingRequest.php │ ├── Message.php │ ├── Negotiate.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestInterface.php │ ├── Response.php │ ├── ResponseInterface.php │ ├── URI.php │ └── UserAgent.php ├── Helpers │ ├── array_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── filesystem_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── inflector_helper.php │ ├── number_helper.php │ ├── security_helper.php │ ├── text_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── Honeypot │ ├── Exceptions │ │ └── HoneypotException.php │ └── Honeypot.php ├── I18n │ ├── Exceptions │ │ └── I18nException.php │ ├── Time.php │ └── TimeDifference.php ├── Images │ ├── Exceptions │ │ └── ImageException.php │ ├── Handlers │ │ ├── BaseHandler.php │ │ ├── GDHandler.php │ │ └── ImageMagickHandler.php │ ├── Image.php │ └── ImageHandlerInterface.php ├── Language │ ├── Language.php │ └── en │ │ ├── CLI.php │ │ ├── Cache.php │ │ ├── Cast.php │ │ ├── Core.php │ │ ├── Database.php │ │ ├── Email.php │ │ ├── Encryption.php │ │ ├── Entity.php │ │ ├── Files.php │ │ ├── Filters.php │ │ ├── Format.php │ │ ├── HTTP.php │ │ ├── Images.php │ │ ├── Language.php │ │ ├── Log.php │ │ ├── Migrations.php │ │ ├── Number.php │ │ ├── Pager.php │ │ ├── RESTful.php │ │ ├── Redirect.php │ │ ├── Router.php │ │ ├── Session.php │ │ ├── Time.php │ │ ├── Validation.php │ │ └── View.php ├── Log │ ├── Exceptions │ │ └── LogException.php │ ├── Handlers │ │ ├── BaseHandler.php │ │ ├── ChromeLoggerHandler.php │ │ ├── FileHandler.php │ │ └── HandlerInterface.php │ └── Logger.php ├── Model.php ├── Pager │ ├── Exceptions │ │ └── PagerException.php │ ├── Pager.php │ ├── PagerInterface.php │ ├── PagerRenderer.php │ └── Views │ │ ├── default_full.php │ │ ├── default_head.php │ │ └── default_simple.php ├── RESTful │ ├── ResourceController.php │ └── ResourcePresenter.php ├── Router │ ├── Exceptions │ │ ├── RedirectException.php │ │ └── RouterException.php │ ├── RouteCollection.php │ ├── RouteCollectionInterface.php │ ├── Router.php │ └── RouterInterface.php ├── Security │ ├── Exceptions │ │ └── SecurityException.php │ └── Security.php ├── Session │ ├── Exceptions │ │ └── SessionException.php │ ├── Handlers │ │ ├── ArrayHandler.php │ │ ├── BaseHandler.php │ │ ├── DatabaseHandler.php │ │ ├── FileHandler.php │ │ ├── MemcachedHandler.php │ │ └── RedisHandler.php │ ├── Session.php │ └── SessionInterface.php ├── Test │ ├── CIDatabaseTestCase.php │ ├── CIUnitTestCase.php │ ├── ControllerResponse.php │ ├── ControllerTester.php │ ├── DOMParser.php │ ├── FeatureResponse.php │ ├── FeatureTestCase.php │ ├── Filters │ │ └── CITestStreamFilter.php │ ├── Mock │ │ ├── MockAppConfig.php │ │ ├── MockAutoload.php │ │ ├── MockBuilder.php │ │ ├── MockCLIConfig.php │ │ ├── MockCURLRequest.php │ │ ├── MockCache.php │ │ ├── MockChromeLogger.php │ │ ├── MockCodeIgniter.php │ │ ├── MockCommon.php │ │ ├── MockConnection.php │ │ ├── MockEvents.php │ │ ├── MockFileLogger.php │ │ ├── MockIncomingRequest.php │ │ ├── MockLanguage.php │ │ ├── MockLogger.php │ │ ├── MockQuery.php │ │ ├── MockResourceController.php │ │ ├── MockResourcePresenter.php │ │ ├── MockResponse.php │ │ ├── MockResult.php │ │ ├── MockSecurity.php │ │ ├── MockServices.php │ │ ├── MockSession.php │ │ └── MockTable.php │ ├── ReflectionHelper.php │ ├── TestLogger.php │ └── bootstrap.php ├── ThirdParty │ ├── Escaper │ │ ├── Escaper.php │ │ └── Exception │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidArgumentException.php │ │ │ └── RuntimeException.php │ ├── Kint │ │ ├── CallFinder.php │ │ ├── Object │ │ │ ├── BasicObject.php │ │ │ ├── BlobObject.php │ │ │ ├── ClosureObject.php │ │ │ ├── DateTimeObject.php │ │ │ ├── InstanceObject.php │ │ │ ├── MethodObject.php │ │ │ ├── ParameterObject.php │ │ │ ├── Representation │ │ │ │ ├── ColorRepresentation.php │ │ │ │ ├── DocstringRepresentation.php │ │ │ │ ├── MicrotimeRepresentation.php │ │ │ │ ├── Representation.php │ │ │ │ ├── SourceRepresentation.php │ │ │ │ └── SplFileInfoRepresentation.php │ │ │ ├── ResourceObject.php │ │ │ ├── StreamObject.php │ │ │ ├── ThrowableObject.php │ │ │ ├── TraceFrameObject.php │ │ │ └── TraceObject.php │ │ ├── Parser │ │ │ ├── ArrayObjectPlugin.php │ │ │ ├── Base64Plugin.php │ │ │ ├── BinaryPlugin.php │ │ │ ├── BlacklistPlugin.php │ │ │ ├── ClassMethodsPlugin.php │ │ │ ├── ClassStaticsPlugin.php │ │ │ ├── ClosurePlugin.php │ │ │ ├── ColorPlugin.php │ │ │ ├── DOMDocumentPlugin.php │ │ │ ├── DateTimePlugin.php │ │ │ ├── FsPathPlugin.php │ │ │ ├── IteratorPlugin.php │ │ │ ├── JsonPlugin.php │ │ │ ├── MicrotimePlugin.php │ │ │ ├── MysqliPlugin.php │ │ │ ├── Parser.php │ │ │ ├── Plugin.php │ │ │ ├── ProxyPlugin.php │ │ │ ├── SerializePlugin.php │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ ├── SplFileInfoPlugin.php │ │ │ ├── SplObjectStoragePlugin.php │ │ │ ├── StreamPlugin.php │ │ │ ├── TablePlugin.php │ │ │ ├── ThrowablePlugin.php │ │ │ ├── TimestampPlugin.php │ │ │ ├── ToStringPlugin.php │ │ │ ├── TracePlugin.php │ │ │ └── XmlPlugin.php │ │ ├── Renderer │ │ │ ├── CliRenderer.php │ │ │ ├── PlainRenderer.php │ │ │ ├── Renderer.php │ │ │ ├── Rich │ │ │ │ ├── BinaryPlugin.php │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ ├── CallablePlugin.php │ │ │ │ ├── ClosurePlugin.php │ │ │ │ ├── ColorPlugin.php │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ ├── DocstringPlugin.php │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ ├── ObjectPluginInterface.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── PluginInterface.php │ │ │ │ ├── RecursionPlugin.php │ │ │ │ ├── SimpleXMLElementPlugin.php │ │ │ │ ├── SourcePlugin.php │ │ │ │ ├── TabPluginInterface.php │ │ │ │ ├── TablePlugin.php │ │ │ │ ├── TimestampPlugin.php │ │ │ │ └── TraceFramePlugin.php │ │ │ ├── RichRenderer.php │ │ │ ├── Text │ │ │ │ ├── BlacklistPlugin.php │ │ │ │ ├── DepthLimitPlugin.php │ │ │ │ ├── MicrotimePlugin.php │ │ │ │ ├── Plugin.php │ │ │ │ ├── RecursionPlugin.php │ │ │ │ └── TracePlugin.php │ │ │ └── TextRenderer.php │ │ ├── Utils.php │ │ ├── init.php │ │ ├── init_helpers.php │ │ ├── kint.php │ │ └── resources │ │ │ └── compiled │ │ │ ├── aante-light.css │ │ │ ├── microtime.js │ │ │ ├── original.css │ │ │ ├── plain.css │ │ │ ├── plain.js │ │ │ ├── rich.js │ │ │ ├── shared.js │ │ │ ├── solarized-dark.css │ │ │ └── solarized.css │ └── PSR │ │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ └── NullLogger.php ├── Throttle │ ├── Throttler.php │ └── ThrottlerInterface.php ├── Typography │ └── Typography.php ├── Validation │ ├── CreditCardRules.php │ ├── Exceptions │ │ └── ValidationException.php │ ├── FileRules.php │ ├── FormatRules.php │ ├── Rules.php │ ├── Validation.php │ ├── ValidationInterface.php │ └── Views │ │ ├── list.php │ │ └── single.php ├── View │ ├── Cell.php │ ├── Exceptions │ │ └── ViewException.php │ ├── Filters.php │ ├── Parser.php │ ├── Plugins.php │ ├── RendererInterface.php │ ├── Table.php │ └── View.php ├── bootstrap.php └── index.html ├── tests └── _support │ ├── Autoloader │ └── UnnamespacedClass.php │ ├── CIDatabaseTestCase.php │ ├── CIUnitTestCase.php │ ├── Cache │ └── Handlers │ │ └── MockHandler.php │ ├── Commands │ ├── AbstractInfo.php │ └── AppInfo.php │ ├── Config │ ├── BadRegistrar.php │ ├── MockAppConfig.php │ ├── MockAutoload.php │ ├── MockCLIConfig.php │ ├── MockLogger.php │ ├── MockServices.php │ ├── Registrar.php │ └── Routes.php │ ├── Controllers │ └── Popcorn.php │ ├── Database │ ├── Migrations │ │ └── 20160428212500_Create_test_tables.php │ ├── MockBuilder.php │ ├── MockConnection.php │ ├── MockQuery.php │ ├── MockResult.php │ ├── MockTestClass.php │ ├── Seeds │ │ ├── AnotherSeeder.php │ │ └── CITestSeeder.php │ └── SupportMigrations │ │ └── 001_Some_migration.php │ ├── DatabaseTestMigrations │ └── Database │ │ └── Migrations │ │ └── 20160428212500_Create_test_tables.php │ ├── Events │ └── MockEvents.php │ ├── Files │ ├── able │ │ ├── apple.php │ │ ├── fig_3.php │ │ └── prune_ripe.php │ └── baker │ │ └── banana.php │ ├── HTTP │ ├── Files │ │ ├── CookiesHolder.txt │ │ └── tmp │ │ │ ├── fileA.txt │ │ │ └── fileB.txt │ ├── MockCURLRequest.php │ ├── MockIncomingRequest.php │ └── MockResponse.php │ ├── Images │ ├── EXIFsamples │ │ ├── down-mirrored.jpg │ │ ├── down.jpg │ │ ├── left-mirrored.jpg │ │ ├── left.jpg │ │ ├── right-mirrored.jpg │ │ ├── right.jpg │ │ ├── up-mirrored.jpg │ │ └── up.jpg │ ├── Steveston_dusk.JPG │ ├── ci-logo.gif │ ├── ci-logo.jpeg │ └── ci-logo.png │ ├── Language │ ├── MockLanguage.php │ ├── SecondMockLanguage.php │ ├── ab-CD │ │ └── Allin.php │ ├── ab │ │ └── Allin.php │ ├── en-ZZ │ │ └── More.php │ ├── en │ │ ├── Allin.php │ │ ├── Core.php │ │ └── More.php │ └── ru │ │ └── Language.php │ ├── Log │ ├── Handlers │ │ ├── MockChromeHandler.php │ │ ├── MockFileHandler.php │ │ └── TestHandler.php │ └── TestLogger.php │ ├── MigrationTestMigrations │ └── Database │ │ └── Migrations │ │ ├── 2018-01-24-102300_Another_migration.py │ │ ├── 2018-01-24-102301_Some_migration.php │ │ └── 2018-01-24-102302_Another_migration.php │ ├── MockCodeIgniter.php │ ├── MockCommon.php │ ├── Models │ ├── EntityModel.php │ ├── EventModel.php │ ├── JobModel.php │ ├── SecondaryModel.php │ ├── SimpleEntity.php │ ├── UserModel.php │ ├── ValidErrorsModel.php │ └── ValidModel.php │ ├── RESTful │ ├── MockResourceController.php │ ├── MockResourcePresenter.php │ ├── Worker.php │ └── Worker2.php │ ├── Security │ └── MockSecurity.php │ ├── Services.php │ ├── Session │ └── MockSession.php │ ├── SomeEntity.php │ ├── Validation │ ├── TestRules.php │ └── uploads │ │ └── phpUxc0ty │ ├── View │ ├── MockTable.php │ ├── SampleClass.php │ └── Views │ │ ├── simple.php │ │ └── simpler.php │ ├── _bootstrap.php │ └── coverage.txt └── writable ├── .htaccess ├── cache └── index.html ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Common.php -------------------------------------------------------------------------------- /app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/App.php -------------------------------------------------------------------------------- /app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Autoload.php -------------------------------------------------------------------------------- /app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Boot/development.php -------------------------------------------------------------------------------- /app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Boot/production.php -------------------------------------------------------------------------------- /app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Cache.php -------------------------------------------------------------------------------- /app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Constants.php -------------------------------------------------------------------------------- /app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Database.php -------------------------------------------------------------------------------- /app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/DocTypes.php -------------------------------------------------------------------------------- /app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Email.php -------------------------------------------------------------------------------- /app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Encryption.php -------------------------------------------------------------------------------- /app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Events.php -------------------------------------------------------------------------------- /app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Exceptions.php -------------------------------------------------------------------------------- /app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Filters.php -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Format.php -------------------------------------------------------------------------------- /app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Honeypot.php -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Images.php -------------------------------------------------------------------------------- /app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Kint.php -------------------------------------------------------------------------------- /app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Logger.php -------------------------------------------------------------------------------- /app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Migrations.php -------------------------------------------------------------------------------- /app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Mimes.php -------------------------------------------------------------------------------- /app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Modules.php -------------------------------------------------------------------------------- /app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Pager.php -------------------------------------------------------------------------------- /app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Paths.php -------------------------------------------------------------------------------- /app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Routes.php -------------------------------------------------------------------------------- /app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Services.php -------------------------------------------------------------------------------- /app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Toolbar.php -------------------------------------------------------------------------------- /app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/UserAgents.php -------------------------------------------------------------------------------- /app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/Validation.php -------------------------------------------------------------------------------- /app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Config/View.php -------------------------------------------------------------------------------- /app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Controllers/Home.php -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/Views/welcome_message.php -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/app/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/contributing.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/license.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/spark -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/API/ResponseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/API/ResponseTrait.php -------------------------------------------------------------------------------- /system/Autoloader/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Autoloader/Autoloader.php -------------------------------------------------------------------------------- /system/Autoloader/FileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Autoloader/FileLocator.php -------------------------------------------------------------------------------- /system/CLI/BaseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CLI/BaseCommand.php -------------------------------------------------------------------------------- /system/CLI/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CLI/CLI.php -------------------------------------------------------------------------------- /system/CLI/CommandRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CLI/CommandRunner.php -------------------------------------------------------------------------------- /system/CLI/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CLI/Console.php -------------------------------------------------------------------------------- /system/CLI/Exceptions/CLIException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CLI/Exceptions/CLIException.php -------------------------------------------------------------------------------- /system/Cache/CacheFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/CacheFactory.php -------------------------------------------------------------------------------- /system/Cache/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/CacheInterface.php -------------------------------------------------------------------------------- /system/Cache/Exceptions/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Exceptions/CacheException.php -------------------------------------------------------------------------------- /system/Cache/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Exceptions/ExceptionInterface.php -------------------------------------------------------------------------------- /system/Cache/Handlers/DummyHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/DummyHandler.php -------------------------------------------------------------------------------- /system/Cache/Handlers/FileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/FileHandler.php -------------------------------------------------------------------------------- /system/Cache/Handlers/MemcachedHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/MemcachedHandler.php -------------------------------------------------------------------------------- /system/Cache/Handlers/PredisHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/PredisHandler.php -------------------------------------------------------------------------------- /system/Cache/Handlers/RedisHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/RedisHandler.php -------------------------------------------------------------------------------- /system/Cache/Handlers/WincacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Cache/Handlers/WincacheHandler.php -------------------------------------------------------------------------------- /system/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/CodeIgniter.php -------------------------------------------------------------------------------- /system/Commands/Database/CreateMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/CreateMigration.php -------------------------------------------------------------------------------- /system/Commands/Database/Migrate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/Migrate.php -------------------------------------------------------------------------------- /system/Commands/Database/MigrateRefresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/MigrateRefresh.php -------------------------------------------------------------------------------- /system/Commands/Database/MigrateRollback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/MigrateRollback.php -------------------------------------------------------------------------------- /system/Commands/Database/MigrateStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/MigrateStatus.php -------------------------------------------------------------------------------- /system/Commands/Database/Seed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Database/Seed.php -------------------------------------------------------------------------------- /system/Commands/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Help.php -------------------------------------------------------------------------------- /system/Commands/ListCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/ListCommands.php -------------------------------------------------------------------------------- /system/Commands/Server/Serve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Server/Serve.php -------------------------------------------------------------------------------- /system/Commands/Server/rewrite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Server/rewrite.php -------------------------------------------------------------------------------- /system/Commands/Sessions/CreateMigration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Sessions/CreateMigration.php -------------------------------------------------------------------------------- /system/Commands/Sessions/Views/migration.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Sessions/Views/migration.tpl.php -------------------------------------------------------------------------------- /system/Commands/Utilities/Namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Utilities/Namespaces.php -------------------------------------------------------------------------------- /system/Commands/Utilities/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Commands/Utilities/Routes.php -------------------------------------------------------------------------------- /system/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Common.php -------------------------------------------------------------------------------- /system/ComposerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ComposerScripts.php -------------------------------------------------------------------------------- /system/Config/AutoloadConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/AutoloadConfig.php -------------------------------------------------------------------------------- /system/Config/BaseConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/BaseConfig.php -------------------------------------------------------------------------------- /system/Config/BaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/BaseService.php -------------------------------------------------------------------------------- /system/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/Config.php -------------------------------------------------------------------------------- /system/Config/DotEnv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/DotEnv.php -------------------------------------------------------------------------------- /system/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /system/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/Routes.php -------------------------------------------------------------------------------- /system/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/Services.php -------------------------------------------------------------------------------- /system/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Config/View.php -------------------------------------------------------------------------------- /system/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Controller.php -------------------------------------------------------------------------------- /system/Database/BaseBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/BaseBuilder.php -------------------------------------------------------------------------------- /system/Database/BaseConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/BaseConnection.php -------------------------------------------------------------------------------- /system/Database/BasePreparedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/BasePreparedQuery.php -------------------------------------------------------------------------------- /system/Database/BaseResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/BaseResult.php -------------------------------------------------------------------------------- /system/Database/BaseUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/BaseUtils.php -------------------------------------------------------------------------------- /system/Database/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Config.php -------------------------------------------------------------------------------- /system/Database/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/ConnectionInterface.php -------------------------------------------------------------------------------- /system/Database/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Database.php -------------------------------------------------------------------------------- /system/Database/Exceptions/DataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Exceptions/DataException.php -------------------------------------------------------------------------------- /system/Database/Exceptions/DatabaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Exceptions/DatabaseException.php -------------------------------------------------------------------------------- /system/Database/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Exceptions/ExceptionInterface.php -------------------------------------------------------------------------------- /system/Database/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Forge.php -------------------------------------------------------------------------------- /system/Database/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Migration.php -------------------------------------------------------------------------------- /system/Database/MigrationRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MigrationRunner.php -------------------------------------------------------------------------------- /system/Database/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/ModelFactory.php -------------------------------------------------------------------------------- /system/Database/MySQLi/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/Builder.php -------------------------------------------------------------------------------- /system/Database/MySQLi/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/Connection.php -------------------------------------------------------------------------------- /system/Database/MySQLi/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/Forge.php -------------------------------------------------------------------------------- /system/Database/MySQLi/PreparedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/PreparedQuery.php -------------------------------------------------------------------------------- /system/Database/MySQLi/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/Result.php -------------------------------------------------------------------------------- /system/Database/MySQLi/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/MySQLi/Utils.php -------------------------------------------------------------------------------- /system/Database/Postgre/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/Builder.php -------------------------------------------------------------------------------- /system/Database/Postgre/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/Connection.php -------------------------------------------------------------------------------- /system/Database/Postgre/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/Forge.php -------------------------------------------------------------------------------- /system/Database/Postgre/PreparedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/PreparedQuery.php -------------------------------------------------------------------------------- /system/Database/Postgre/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/Result.php -------------------------------------------------------------------------------- /system/Database/Postgre/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Postgre/Utils.php -------------------------------------------------------------------------------- /system/Database/PreparedQueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/PreparedQueryInterface.php -------------------------------------------------------------------------------- /system/Database/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Query.php -------------------------------------------------------------------------------- /system/Database/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/QueryInterface.php -------------------------------------------------------------------------------- /system/Database/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/ResultInterface.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Builder.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Connection.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Forge.php -------------------------------------------------------------------------------- /system/Database/SQLite3/PreparedQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/PreparedQuery.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Result.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Table.php -------------------------------------------------------------------------------- /system/Database/SQLite3/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/SQLite3/Utils.php -------------------------------------------------------------------------------- /system/Database/Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Database/Seeder.php -------------------------------------------------------------------------------- /system/Debug/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Exceptions.php -------------------------------------------------------------------------------- /system/Debug/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Iterator.php -------------------------------------------------------------------------------- /system/Debug/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Timer.php -------------------------------------------------------------------------------- /system/Debug/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/BaseCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/BaseCollector.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Config.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Database.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Events.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Files.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/History.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/History.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Logs.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Routes.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Timers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Timers.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Collectors/Views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Collectors/Views.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_config.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_config.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_database.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_database.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_events.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_events.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_files.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_files.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_history.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_logs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_logs.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/_routes.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/_routes.tpl -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/toolbar.css -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/toolbar.js -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/toolbar.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/toolbar.tpl.php -------------------------------------------------------------------------------- /system/Debug/Toolbar/Views/toolbarloader.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Debug/Toolbar/Views/toolbarloader.js.php -------------------------------------------------------------------------------- /system/Email/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Email/Email.php -------------------------------------------------------------------------------- /system/Encryption/EncrypterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Encryption/EncrypterInterface.php -------------------------------------------------------------------------------- /system/Encryption/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Encryption/Encryption.php -------------------------------------------------------------------------------- /system/Encryption/Exceptions/EncryptionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Encryption/Exceptions/EncryptionException.php -------------------------------------------------------------------------------- /system/Encryption/Handlers/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Encryption/Handlers/BaseHandler.php -------------------------------------------------------------------------------- /system/Encryption/Handlers/OpenSSLHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Encryption/Handlers/OpenSSLHandler.php -------------------------------------------------------------------------------- /system/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Entity.php -------------------------------------------------------------------------------- /system/Events/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Events/Events.php -------------------------------------------------------------------------------- /system/Exceptions/AlertError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/AlertError.php -------------------------------------------------------------------------------- /system/Exceptions/CastException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/CastException.php -------------------------------------------------------------------------------- /system/Exceptions/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/ConfigException.php -------------------------------------------------------------------------------- /system/Exceptions/CriticalError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/CriticalError.php -------------------------------------------------------------------------------- /system/Exceptions/DownloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/DownloadException.php -------------------------------------------------------------------------------- /system/Exceptions/EmergencyError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/EmergencyError.php -------------------------------------------------------------------------------- /system/Exceptions/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/ExceptionInterface.php -------------------------------------------------------------------------------- /system/Exceptions/FrameworkException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/FrameworkException.php -------------------------------------------------------------------------------- /system/Exceptions/ModelException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/ModelException.php -------------------------------------------------------------------------------- /system/Exceptions/PageNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Exceptions/PageNotFoundException.php -------------------------------------------------------------------------------- /system/Files/Exceptions/FileException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Files/Exceptions/FileException.php -------------------------------------------------------------------------------- /system/Files/Exceptions/FileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Files/Exceptions/FileNotFoundException.php -------------------------------------------------------------------------------- /system/Files/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Files/File.php -------------------------------------------------------------------------------- /system/Filters/CSRF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/CSRF.php -------------------------------------------------------------------------------- /system/Filters/DebugToolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/DebugToolbar.php -------------------------------------------------------------------------------- /system/Filters/Exceptions/FilterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/Exceptions/FilterException.php -------------------------------------------------------------------------------- /system/Filters/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/FilterInterface.php -------------------------------------------------------------------------------- /system/Filters/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/Filters.php -------------------------------------------------------------------------------- /system/Filters/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Filters/Honeypot.php -------------------------------------------------------------------------------- /system/Format/Exceptions/FormatException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Format/Exceptions/FormatException.php -------------------------------------------------------------------------------- /system/Format/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Format/FormatterInterface.php -------------------------------------------------------------------------------- /system/Format/JSONFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Format/JSONFormatter.php -------------------------------------------------------------------------------- /system/Format/XMLFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Format/XMLFormatter.php -------------------------------------------------------------------------------- /system/HTTP/CLIRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/CLIRequest.php -------------------------------------------------------------------------------- /system/HTTP/CURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/CURLRequest.php -------------------------------------------------------------------------------- /system/HTTP/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /system/HTTP/DownloadResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/DownloadResponse.php -------------------------------------------------------------------------------- /system/HTTP/Exceptions/HTTPException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Exceptions/HTTPException.php -------------------------------------------------------------------------------- /system/HTTP/Files/FileCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Files/FileCollection.php -------------------------------------------------------------------------------- /system/HTTP/Files/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Files/UploadedFile.php -------------------------------------------------------------------------------- /system/HTTP/Files/UploadedFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Files/UploadedFileInterface.php -------------------------------------------------------------------------------- /system/HTTP/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Header.php -------------------------------------------------------------------------------- /system/HTTP/IncomingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/IncomingRequest.php -------------------------------------------------------------------------------- /system/HTTP/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Message.php -------------------------------------------------------------------------------- /system/HTTP/Negotiate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Negotiate.php -------------------------------------------------------------------------------- /system/HTTP/RedirectResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/RedirectResponse.php -------------------------------------------------------------------------------- /system/HTTP/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Request.php -------------------------------------------------------------------------------- /system/HTTP/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/RequestInterface.php -------------------------------------------------------------------------------- /system/HTTP/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/Response.php -------------------------------------------------------------------------------- /system/HTTP/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/ResponseInterface.php -------------------------------------------------------------------------------- /system/HTTP/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/URI.php -------------------------------------------------------------------------------- /system/HTTP/UserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/HTTP/UserAgent.php -------------------------------------------------------------------------------- /system/Helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/array_helper.php -------------------------------------------------------------------------------- /system/Helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/Helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/date_helper.php -------------------------------------------------------------------------------- /system/Helpers/filesystem_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/filesystem_helper.php -------------------------------------------------------------------------------- /system/Helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/form_helper.php -------------------------------------------------------------------------------- /system/Helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/html_helper.php -------------------------------------------------------------------------------- /system/Helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/Helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/number_helper.php -------------------------------------------------------------------------------- /system/Helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/security_helper.php -------------------------------------------------------------------------------- /system/Helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/text_helper.php -------------------------------------------------------------------------------- /system/Helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/url_helper.php -------------------------------------------------------------------------------- /system/Helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Helpers/xml_helper.php -------------------------------------------------------------------------------- /system/Honeypot/Exceptions/HoneypotException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Honeypot/Exceptions/HoneypotException.php -------------------------------------------------------------------------------- /system/Honeypot/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Honeypot/Honeypot.php -------------------------------------------------------------------------------- /system/I18n/Exceptions/I18nException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/I18n/Exceptions/I18nException.php -------------------------------------------------------------------------------- /system/I18n/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/I18n/Time.php -------------------------------------------------------------------------------- /system/I18n/TimeDifference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/I18n/TimeDifference.php -------------------------------------------------------------------------------- /system/Images/Exceptions/ImageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/Exceptions/ImageException.php -------------------------------------------------------------------------------- /system/Images/Handlers/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/Handlers/BaseHandler.php -------------------------------------------------------------------------------- /system/Images/Handlers/GDHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/Handlers/GDHandler.php -------------------------------------------------------------------------------- /system/Images/Handlers/ImageMagickHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/Handlers/ImageMagickHandler.php -------------------------------------------------------------------------------- /system/Images/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/Image.php -------------------------------------------------------------------------------- /system/Images/ImageHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Images/ImageHandlerInterface.php -------------------------------------------------------------------------------- /system/Language/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/Language.php -------------------------------------------------------------------------------- /system/Language/en/CLI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/CLI.php -------------------------------------------------------------------------------- /system/Language/en/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Cache.php -------------------------------------------------------------------------------- /system/Language/en/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Cast.php -------------------------------------------------------------------------------- /system/Language/en/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Core.php -------------------------------------------------------------------------------- /system/Language/en/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Database.php -------------------------------------------------------------------------------- /system/Language/en/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Email.php -------------------------------------------------------------------------------- /system/Language/en/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Encryption.php -------------------------------------------------------------------------------- /system/Language/en/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Entity.php -------------------------------------------------------------------------------- /system/Language/en/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Files.php -------------------------------------------------------------------------------- /system/Language/en/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Filters.php -------------------------------------------------------------------------------- /system/Language/en/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Format.php -------------------------------------------------------------------------------- /system/Language/en/HTTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/HTTP.php -------------------------------------------------------------------------------- /system/Language/en/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Images.php -------------------------------------------------------------------------------- /system/Language/en/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Language.php -------------------------------------------------------------------------------- /system/Language/en/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Log.php -------------------------------------------------------------------------------- /system/Language/en/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Migrations.php -------------------------------------------------------------------------------- /system/Language/en/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Number.php -------------------------------------------------------------------------------- /system/Language/en/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Pager.php -------------------------------------------------------------------------------- /system/Language/en/RESTful.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/RESTful.php -------------------------------------------------------------------------------- /system/Language/en/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Redirect.php -------------------------------------------------------------------------------- /system/Language/en/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Router.php -------------------------------------------------------------------------------- /system/Language/en/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Session.php -------------------------------------------------------------------------------- /system/Language/en/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Time.php -------------------------------------------------------------------------------- /system/Language/en/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/Validation.php -------------------------------------------------------------------------------- /system/Language/en/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Language/en/View.php -------------------------------------------------------------------------------- /system/Log/Exceptions/LogException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Exceptions/LogException.php -------------------------------------------------------------------------------- /system/Log/Handlers/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Handlers/BaseHandler.php -------------------------------------------------------------------------------- /system/Log/Handlers/ChromeLoggerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Handlers/ChromeLoggerHandler.php -------------------------------------------------------------------------------- /system/Log/Handlers/FileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Handlers/FileHandler.php -------------------------------------------------------------------------------- /system/Log/Handlers/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Handlers/HandlerInterface.php -------------------------------------------------------------------------------- /system/Log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Log/Logger.php -------------------------------------------------------------------------------- /system/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Model.php -------------------------------------------------------------------------------- /system/Pager/Exceptions/PagerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/Exceptions/PagerException.php -------------------------------------------------------------------------------- /system/Pager/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/Pager.php -------------------------------------------------------------------------------- /system/Pager/PagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/PagerInterface.php -------------------------------------------------------------------------------- /system/Pager/PagerRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/PagerRenderer.php -------------------------------------------------------------------------------- /system/Pager/Views/default_full.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/Views/default_full.php -------------------------------------------------------------------------------- /system/Pager/Views/default_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/Views/default_head.php -------------------------------------------------------------------------------- /system/Pager/Views/default_simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Pager/Views/default_simple.php -------------------------------------------------------------------------------- /system/RESTful/ResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/RESTful/ResourceController.php -------------------------------------------------------------------------------- /system/RESTful/ResourcePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/RESTful/ResourcePresenter.php -------------------------------------------------------------------------------- /system/Router/Exceptions/RedirectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/Exceptions/RedirectException.php -------------------------------------------------------------------------------- /system/Router/Exceptions/RouterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/Exceptions/RouterException.php -------------------------------------------------------------------------------- /system/Router/RouteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/RouteCollection.php -------------------------------------------------------------------------------- /system/Router/RouteCollectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/RouteCollectionInterface.php -------------------------------------------------------------------------------- /system/Router/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/Router.php -------------------------------------------------------------------------------- /system/Router/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Router/RouterInterface.php -------------------------------------------------------------------------------- /system/Security/Exceptions/SecurityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Security/Exceptions/SecurityException.php -------------------------------------------------------------------------------- /system/Security/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Security/Security.php -------------------------------------------------------------------------------- /system/Session/Exceptions/SessionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Exceptions/SessionException.php -------------------------------------------------------------------------------- /system/Session/Handlers/ArrayHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/ArrayHandler.php -------------------------------------------------------------------------------- /system/Session/Handlers/BaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/BaseHandler.php -------------------------------------------------------------------------------- /system/Session/Handlers/DatabaseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/DatabaseHandler.php -------------------------------------------------------------------------------- /system/Session/Handlers/FileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/FileHandler.php -------------------------------------------------------------------------------- /system/Session/Handlers/MemcachedHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/MemcachedHandler.php -------------------------------------------------------------------------------- /system/Session/Handlers/RedisHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Handlers/RedisHandler.php -------------------------------------------------------------------------------- /system/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/Session.php -------------------------------------------------------------------------------- /system/Session/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Session/SessionInterface.php -------------------------------------------------------------------------------- /system/Test/CIDatabaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/CIDatabaseTestCase.php -------------------------------------------------------------------------------- /system/Test/CIUnitTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/CIUnitTestCase.php -------------------------------------------------------------------------------- /system/Test/ControllerResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/ControllerResponse.php -------------------------------------------------------------------------------- /system/Test/ControllerTester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/ControllerTester.php -------------------------------------------------------------------------------- /system/Test/DOMParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/DOMParser.php -------------------------------------------------------------------------------- /system/Test/FeatureResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/FeatureResponse.php -------------------------------------------------------------------------------- /system/Test/FeatureTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/FeatureTestCase.php -------------------------------------------------------------------------------- /system/Test/Filters/CITestStreamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Filters/CITestStreamFilter.php -------------------------------------------------------------------------------- /system/Test/Mock/MockAppConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockAppConfig.php -------------------------------------------------------------------------------- /system/Test/Mock/MockAutoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockAutoload.php -------------------------------------------------------------------------------- /system/Test/Mock/MockBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockBuilder.php -------------------------------------------------------------------------------- /system/Test/Mock/MockCLIConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockCLIConfig.php -------------------------------------------------------------------------------- /system/Test/Mock/MockCURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockCURLRequest.php -------------------------------------------------------------------------------- /system/Test/Mock/MockCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockCache.php -------------------------------------------------------------------------------- /system/Test/Mock/MockChromeLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockChromeLogger.php -------------------------------------------------------------------------------- /system/Test/Mock/MockCodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockCodeIgniter.php -------------------------------------------------------------------------------- /system/Test/Mock/MockCommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockCommon.php -------------------------------------------------------------------------------- /system/Test/Mock/MockConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockConnection.php -------------------------------------------------------------------------------- /system/Test/Mock/MockEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockEvents.php -------------------------------------------------------------------------------- /system/Test/Mock/MockFileLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockFileLogger.php -------------------------------------------------------------------------------- /system/Test/Mock/MockIncomingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockIncomingRequest.php -------------------------------------------------------------------------------- /system/Test/Mock/MockLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockLanguage.php -------------------------------------------------------------------------------- /system/Test/Mock/MockLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockLogger.php -------------------------------------------------------------------------------- /system/Test/Mock/MockQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockQuery.php -------------------------------------------------------------------------------- /system/Test/Mock/MockResourceController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockResourceController.php -------------------------------------------------------------------------------- /system/Test/Mock/MockResourcePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockResourcePresenter.php -------------------------------------------------------------------------------- /system/Test/Mock/MockResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockResponse.php -------------------------------------------------------------------------------- /system/Test/Mock/MockResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockResult.php -------------------------------------------------------------------------------- /system/Test/Mock/MockSecurity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockSecurity.php -------------------------------------------------------------------------------- /system/Test/Mock/MockServices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockServices.php -------------------------------------------------------------------------------- /system/Test/Mock/MockSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockSession.php -------------------------------------------------------------------------------- /system/Test/Mock/MockTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/Mock/MockTable.php -------------------------------------------------------------------------------- /system/Test/ReflectionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/ReflectionHelper.php -------------------------------------------------------------------------------- /system/Test/TestLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/TestLogger.php -------------------------------------------------------------------------------- /system/Test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Test/bootstrap.php -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Escaper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Escaper/Escaper.php -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Escaper/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Escaper/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /system/ThirdParty/Escaper/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Escaper/Exception/RuntimeException.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/CallFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/CallFinder.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/BasicObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/BasicObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/BlobObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/BlobObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/ClosureObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/ClosureObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/DateTimeObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/DateTimeObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/InstanceObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/InstanceObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/MethodObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/MethodObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/ParameterObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/ParameterObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/ColorRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/ColorRepresentation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/DocstringRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/DocstringRepresentation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/MicrotimeRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/MicrotimeRepresentation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/Representation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/Representation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/SourceRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/SourceRepresentation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/Representation/SplFileInfoRepresentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/Representation/SplFileInfoRepresentation.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/ResourceObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/ResourceObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/StreamObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/StreamObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/ThrowableObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/ThrowableObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/TraceFrameObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/TraceFrameObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Object/TraceObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Object/TraceObject.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ArrayObjectPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ArrayObjectPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/Base64Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/Base64Plugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/BinaryPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/BinaryPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/BlacklistPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/BlacklistPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ClassMethodsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ClassMethodsPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ClassStaticsPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ClassStaticsPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ClosurePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ClosurePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ColorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ColorPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/DOMDocumentPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/DOMDocumentPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/DateTimePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/DateTimePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/FsPathPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/FsPathPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/IteratorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/IteratorPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/JsonPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/JsonPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/MicrotimePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/MicrotimePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/MysqliPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/MysqliPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/Parser.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/Plugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ProxyPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ProxyPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/SerializePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/SerializePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/SimpleXMLElementPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/SimpleXMLElementPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/SplFileInfoPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/SplFileInfoPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/SplObjectStoragePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/SplObjectStoragePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/StreamPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/StreamPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/TablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/TablePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ThrowablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ThrowablePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/TimestampPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/TimestampPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/ToStringPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/ToStringPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/TracePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/TracePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Parser/XmlPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Parser/XmlPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/CliRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/CliRenderer.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/PlainRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/PlainRenderer.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Renderer.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/BinaryPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/BinaryPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/BlacklistPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/BlacklistPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/CallablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/CallablePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/ClosurePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/ClosurePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/ColorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/ColorPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/DepthLimitPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/DepthLimitPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/DocstringPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/DocstringPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/MicrotimePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/MicrotimePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/ObjectPluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/ObjectPluginInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/Plugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/PluginInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/RecursionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/RecursionPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/SimpleXMLElementPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/SimpleXMLElementPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/SourcePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/SourcePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/TabPluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/TabPluginInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/TablePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/TablePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/TimestampPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/TimestampPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Rich/TraceFramePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Rich/TraceFramePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/RichRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/RichRenderer.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/BlacklistPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/BlacklistPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/DepthLimitPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/DepthLimitPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/MicrotimePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/MicrotimePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/Plugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/RecursionPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/RecursionPlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/Text/TracePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/Text/TracePlugin.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Renderer/TextRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Renderer/TextRenderer.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/Utils.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/init.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/init_helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/init_helpers.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/kint.php -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/aante-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/aante-light.css -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/microtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/microtime.js -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/original.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/original.css -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/plain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/plain.css -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/plain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/plain.js -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/rich.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/rich.js -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/shared.js -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/solarized-dark.css -------------------------------------------------------------------------------- /system/ThirdParty/Kint/resources/compiled/solarized.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/Kint/resources/compiled/solarized.css -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/AbstractLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/AbstractLogger.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/InvalidArgumentException.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LogLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/LogLevel.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LoggerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/LoggerAwareInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LoggerAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/LoggerAwareTrait.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/LoggerInterface.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/LoggerTrait.php -------------------------------------------------------------------------------- /system/ThirdParty/PSR/Log/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/ThirdParty/PSR/Log/NullLogger.php -------------------------------------------------------------------------------- /system/Throttle/Throttler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Throttle/Throttler.php -------------------------------------------------------------------------------- /system/Throttle/ThrottlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Throttle/ThrottlerInterface.php -------------------------------------------------------------------------------- /system/Typography/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Typography/Typography.php -------------------------------------------------------------------------------- /system/Validation/CreditCardRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/CreditCardRules.php -------------------------------------------------------------------------------- /system/Validation/Exceptions/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/Exceptions/ValidationException.php -------------------------------------------------------------------------------- /system/Validation/FileRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/FileRules.php -------------------------------------------------------------------------------- /system/Validation/FormatRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/FormatRules.php -------------------------------------------------------------------------------- /system/Validation/Rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/Rules.php -------------------------------------------------------------------------------- /system/Validation/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/Validation.php -------------------------------------------------------------------------------- /system/Validation/ValidationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/ValidationInterface.php -------------------------------------------------------------------------------- /system/Validation/Views/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/Validation/Views/list.php -------------------------------------------------------------------------------- /system/Validation/Views/single.php: -------------------------------------------------------------------------------- 1 | = esc($error) ?> 2 | -------------------------------------------------------------------------------- /system/View/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Cell.php -------------------------------------------------------------------------------- /system/View/Exceptions/ViewException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Exceptions/ViewException.php -------------------------------------------------------------------------------- /system/View/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Filters.php -------------------------------------------------------------------------------- /system/View/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Parser.php -------------------------------------------------------------------------------- /system/View/Plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Plugins.php -------------------------------------------------------------------------------- /system/View/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/RendererInterface.php -------------------------------------------------------------------------------- /system/View/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/Table.php -------------------------------------------------------------------------------- /system/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/View/View.php -------------------------------------------------------------------------------- /system/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/bootstrap.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wildanfuady/ci4_authentication/HEAD/system/index.html -------------------------------------------------------------------------------- /tests/_support/Autoloader/UnnamespacedClass.php: -------------------------------------------------------------------------------- 1 | = $testString ?> -------------------------------------------------------------------------------- /tests/_support/View/Views/simpler.php: -------------------------------------------------------------------------------- 1 |