├── .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
│ ├── Auth
│ │ ├── AccountController.php
│ │ ├── LoginController.php
│ │ ├── PasswordController.php
│ │ ├── RegistrationController.php
│ │ ├── SettingsController.php
│ │ └── UsersController.php
│ └── BaseController.php
├── Database
│ ├── Migrations
│ │ └── .gitkeep
│ └── Seeds
│ │ └── .gitkeep
├── Filters
│ └── .gitkeep
├── Helpers
│ ├── .gitkeep
│ └── auth_helper.php
├── Language
│ ├── .gitkeep
│ └── en
│ │ ├── Auth.php
│ │ └── Validation.php
├── Libraries
│ └── .gitkeep
├── Models
│ ├── .gitkeep
│ ├── EmailconfigModel.php
│ ├── LogsModel.php
│ ├── SettingsModel.php
│ └── UserModel.php
├── ThirdParty
│ └── .gitkeep
├── Views
│ ├── auth
│ │ ├── auth
│ │ │ ├── forgot.php
│ │ │ ├── login.php
│ │ │ └── reset.php
│ │ ├── components
│ │ │ ├── navbar.php
│ │ │ └── notifications.php
│ │ ├── edit-user.php
│ │ ├── edits
│ │ │ └── edit-user.php
│ │ ├── emails
│ │ │ ├── activation.php
│ │ │ ├── confirmation.php
│ │ │ ├── footer.php
│ │ │ ├── header.php
│ │ │ ├── notification.php
│ │ │ └── reset.php
│ │ ├── layouts
│ │ │ ├── auth.php
│ │ │ ├── default-table.php
│ │ │ └── default.php
│ │ ├── modals
│ │ │ └── add-user.php
│ │ ├── profile.php
│ │ ├── register.php
│ │ ├── settings.php
│ │ ├── starter.php
│ │ ├── user-logs.php
│ │ └── users.php
│ └── errors
│ │ ├── cli
│ │ ├── error_404.php
│ │ ├── error_exception.php
│ │ └── production.php
│ │ └── html
│ │ ├── debug.css
│ │ ├── debug.js
│ │ ├── error_404.php
│ │ ├── error_exception.php
│ │ └── production.php
└── index.html
├── composer.json
├── database.sql
├── license.txt
├── public
├── .htaccess
├── css
│ ├── auth.css
│ └── starter-template.css
├── favicon.ico
├── index.php
├── robots.txt
└── vendor
│ ├── bootstrap
│ ├── LICENSE.md
│ ├── css
│ │ ├── bootstrap-grid.css
│ │ ├── bootstrap-grid.css.map
│ │ ├── bootstrap-grid.min.css
│ │ ├── bootstrap-grid.min.css.map
│ │ ├── bootstrap-reboot.css
│ │ ├── bootstrap-reboot.css.map
│ │ ├── bootstrap-reboot.min.css
│ │ ├── bootstrap-reboot.min.css.map
│ │ ├── bootstrap.css
│ │ ├── bootstrap.css.map
│ │ ├── bootstrap.min.css
│ │ └── bootstrap.min.css.map
│ └── js
│ │ ├── bootstrap.bundle.js
│ │ ├── bootstrap.bundle.js.map
│ │ ├── bootstrap.bundle.min.js
│ │ ├── bootstrap.bundle.min.js.map
│ │ ├── bootstrap.js
│ │ ├── bootstrap.js.map
│ │ ├── bootstrap.min.js
│ │ └── bootstrap.min.js.map
│ ├── datatables
│ ├── DataTables-1.10.23
│ │ ├── css
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── dataTables.bootstrap.min.css
│ │ │ ├── dataTables.bootstrap4.css
│ │ │ ├── dataTables.bootstrap4.min.css
│ │ │ ├── dataTables.foundation.css
│ │ │ ├── dataTables.foundation.min.css
│ │ │ ├── dataTables.jqueryui.css
│ │ │ ├── dataTables.jqueryui.min.css
│ │ │ ├── dataTables.semanticui.css
│ │ │ ├── dataTables.semanticui.min.css
│ │ │ ├── jquery.dataTables.css
│ │ │ └── jquery.dataTables.min.css
│ │ ├── images
│ │ │ ├── sort_asc.png
│ │ │ ├── sort_asc_disabled.png
│ │ │ ├── sort_both.png
│ │ │ ├── sort_desc.png
│ │ │ └── sort_desc_disabled.png
│ │ └── js
│ │ │ ├── dataTables.bootstrap.js
│ │ │ ├── dataTables.bootstrap.min.js
│ │ │ ├── dataTables.bootstrap4.js
│ │ │ ├── dataTables.bootstrap4.min.js
│ │ │ ├── dataTables.foundation.js
│ │ │ ├── dataTables.foundation.min.js
│ │ │ ├── dataTables.jqueryui.js
│ │ │ ├── dataTables.jqueryui.min.js
│ │ │ ├── dataTables.semanticui.js
│ │ │ ├── dataTables.semanticui.min.js
│ │ │ ├── jquery.dataTables.js
│ │ │ └── jquery.dataTables.min.js
│ ├── LICENSE.md
│ ├── Responsive-2.2.7
│ │ ├── css
│ │ │ ├── responsive.bootstrap.css
│ │ │ ├── responsive.bootstrap.min.css
│ │ │ ├── responsive.bootstrap4.css
│ │ │ ├── responsive.bootstrap4.min.css
│ │ │ ├── responsive.dataTables.css
│ │ │ ├── responsive.dataTables.min.css
│ │ │ ├── responsive.foundation.css
│ │ │ ├── responsive.foundation.min.css
│ │ │ ├── responsive.jqueryui.css
│ │ │ ├── responsive.jqueryui.min.css
│ │ │ ├── responsive.semanticui.css
│ │ │ └── responsive.semanticui.min.css
│ │ └── js
│ │ │ ├── dataTables.responsive.js
│ │ │ ├── dataTables.responsive.min.js
│ │ │ ├── responsive.bootstrap.js
│ │ │ ├── responsive.bootstrap.min.js
│ │ │ ├── responsive.bootstrap4.js
│ │ │ ├── responsive.bootstrap4.min.js
│ │ │ ├── responsive.foundation.js
│ │ │ ├── responsive.foundation.min.js
│ │ │ ├── responsive.jqueryui.js
│ │ │ ├── responsive.jqueryui.min.js
│ │ │ ├── responsive.semanticui.js
│ │ │ └── responsive.semanticui.min.js
│ ├── datatables.css
│ ├── datatables.js
│ ├── datatables.min.css
│ └── datatables.min.js
│ ├── fontawesome
│ ├── LICENSE.md
│ ├── css
│ │ ├── brands.min.css
│ │ ├── fontawesome.min.css
│ │ └── solid.min.css
│ ├── sprites
│ │ ├── brands.svg
│ │ └── solid.svg
│ └── webfonts
│ │ ├── fa-brands-400.eot
│ │ ├── fa-brands-400.svg
│ │ ├── fa-brands-400.ttf
│ │ ├── fa-brands-400.woff
│ │ ├── fa-brands-400.woff2
│ │ ├── fa-solid-900.eot
│ │ ├── fa-solid-900.svg
│ │ ├── fa-solid-900.ttf
│ │ ├── fa-solid-900.woff
│ │ └── fa-solid-900.woff2
│ └── jquery
│ ├── LICENSE.md
│ ├── jquery.min.js
│ ├── jquery.min.map
│ ├── jquery.slim.min.js
│ └── jquery.slim.min.map
├── readme.txt
├── spark
├── system
├── .htaccess
├── API
│ └── ResponseTrait.php
├── Autoloader
│ ├── Autoloader.php
│ └── FileLocator.php
├── CLI
│ ├── BaseCommand.php
│ ├── CLI.php
│ ├── CommandRunner.php
│ ├── Commands.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
│ ├── Cache
│ │ └── ClearCache.php
│ ├── Database
│ │ ├── CreateMigration.php
│ │ ├── CreateSeeder.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
│ ├── test_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
│ │ ├── Fabricator.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
│ │ ├── Seed.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
├── Modules
│ └── Modules.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
│ ├── Fabricator.php
│ ├── FeatureResponse.php
│ ├── FeatureTestCase.php
│ ├── FeatureTestTrait.php
│ ├── Filters
│ │ └── CITestStreamFilter.php
│ ├── Interfaces
│ │ └── FabricatorModel.php
│ ├── Mock
│ │ ├── MockAppConfig.php
│ │ ├── MockAutoload.php
│ │ ├── MockBuilder.php
│ │ ├── MockCLIConfig.php
│ │ ├── MockCURLRequest.php
│ │ ├── MockCache.php
│ │ ├── MockCodeIgniter.php
│ │ ├── MockCommon.php
│ │ ├── MockConnection.php
│ │ ├── MockEmail.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
│ │ ├── Kint.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
│ │ └── 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
└── writable
├── .htaccess
├── cache
└── index.html
├── logs
└── index.html
├── session
└── index.html
└── uploads
└── index.html
/app/.htaccess:
--------------------------------------------------------------------------------
1 |
= session('success') ?>
9 |= session('error') ?>
20 |Thank you for signing up on = base_url() ?>!
2 | 3 |Please click the following link to activate your account!
4 |= base_url('activate-account') . '?token=' . $hash ?>
5 | 6 |If you didn't register on this website, just ignore this email.
-------------------------------------------------------------------------------- /app/Views/auth/emails/confirmation.php: -------------------------------------------------------------------------------- 1 |Dear member of = base_url() ?>,
2 | 3 |please click the following link to confirm your new e-mail address!
4 |= base_url('confirm-email') . '?token=' . $hash ?>
5 | 6 |If you didn't request this, just ignore this email.
-------------------------------------------------------------------------------- /app/Views/auth/emails/footer.php: -------------------------------------------------------------------------------- 1 |