├── .gitignore ├── LICENSE ├── README.md ├── bar ├── app │ ├── .htaccess │ ├── Common.php │ ├── Config │ │ ├── App.php │ │ ├── Autoload.php │ │ ├── Boot │ │ │ ├── development.php │ │ │ ├── production.php │ │ │ └── testing.php │ │ ├── CURLRequest.php │ │ ├── Cache.php │ │ ├── Constants.php │ │ ├── ContentSecurityPolicy.php │ │ ├── Cookie.php │ │ ├── Database.php │ │ ├── DocTypes.php │ │ ├── Email.php │ │ ├── Encryption.php │ │ ├── Events.php │ │ ├── Exceptions.php │ │ ├── Feature.php │ │ ├── Filters.php │ │ ├── ForeignCharacters.php │ │ ├── Format.php │ │ ├── Generators.php │ │ ├── Honeypot.php │ │ ├── Images.php │ │ ├── Kint.php │ │ ├── Logger.php │ │ ├── Migrations.php │ │ ├── Mimes.php │ │ ├── Modules.php │ │ ├── Pager.php │ │ ├── Paths.php │ │ ├── Publisher.php │ │ ├── Routes.php │ │ ├── Security.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 │ │ └── en │ │ │ └── Validation.php │ ├── 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 ├── env ├── phpunit.xml.dist ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── spark ├── tests │ ├── README.md │ ├── _support │ │ ├── Database │ │ │ ├── Migrations │ │ │ │ └── 2020-02-22-222222_example_migration.php │ │ │ └── Seeds │ │ │ │ └── ExampleSeeder.php │ │ ├── Libraries │ │ │ └── ConfigReader.php │ │ └── Models │ │ │ └── ExampleModel.php │ ├── database │ │ └── ExampleDatabaseTest.php │ ├── session │ │ └── ExampleSessionTest.php │ └── unit │ │ └── HealthTest.php └── writable │ ├── .htaccess │ ├── cache │ └── index.html │ ├── debugbar │ └── .gitkeep │ ├── logs │ └── index.html │ ├── session │ └── index.html │ └── uploads │ └── index.html ├── composer.json ├── composer.lock └── foo ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Routes.php │ ├── Security.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 │ └── en │ │ └── Validation.php ├── 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 ├── env ├── phpunit.xml.dist ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── spark ├── tests ├── README.md ├── _support │ ├── Database │ │ ├── Migrations │ │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ │ └── ExampleSeeder.php │ ├── Libraries │ │ └── ConfigReader.php │ └── Models │ │ └── ExampleModel.php ├── database │ └── ExampleDatabaseTest.php ├── session │ └── ExampleSessionTest.php └── unit │ └── HealthTest.php └── writable ├── .htaccess ├── cache └── index.html ├── debugbar └── .gitkeep ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/README.md -------------------------------------------------------------------------------- /bar/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/.htaccess -------------------------------------------------------------------------------- /bar/app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Common.php -------------------------------------------------------------------------------- /bar/app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/App.php -------------------------------------------------------------------------------- /bar/app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Autoload.php -------------------------------------------------------------------------------- /bar/app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Boot/development.php -------------------------------------------------------------------------------- /bar/app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Boot/production.php -------------------------------------------------------------------------------- /bar/app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /bar/app/Config/CURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/CURLRequest.php -------------------------------------------------------------------------------- /bar/app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Cache.php -------------------------------------------------------------------------------- /bar/app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Constants.php -------------------------------------------------------------------------------- /bar/app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /bar/app/Config/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Cookie.php -------------------------------------------------------------------------------- /bar/app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Database.php -------------------------------------------------------------------------------- /bar/app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/DocTypes.php -------------------------------------------------------------------------------- /bar/app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Email.php -------------------------------------------------------------------------------- /bar/app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Encryption.php -------------------------------------------------------------------------------- /bar/app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Events.php -------------------------------------------------------------------------------- /bar/app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Exceptions.php -------------------------------------------------------------------------------- /bar/app/Config/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Feature.php -------------------------------------------------------------------------------- /bar/app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Filters.php -------------------------------------------------------------------------------- /bar/app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /bar/app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Format.php -------------------------------------------------------------------------------- /bar/app/Config/Generators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Generators.php -------------------------------------------------------------------------------- /bar/app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Honeypot.php -------------------------------------------------------------------------------- /bar/app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Images.php -------------------------------------------------------------------------------- /bar/app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Kint.php -------------------------------------------------------------------------------- /bar/app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Logger.php -------------------------------------------------------------------------------- /bar/app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Migrations.php -------------------------------------------------------------------------------- /bar/app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Mimes.php -------------------------------------------------------------------------------- /bar/app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Modules.php -------------------------------------------------------------------------------- /bar/app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Pager.php -------------------------------------------------------------------------------- /bar/app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Paths.php -------------------------------------------------------------------------------- /bar/app/Config/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Publisher.php -------------------------------------------------------------------------------- /bar/app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Routes.php -------------------------------------------------------------------------------- /bar/app/Config/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Security.php -------------------------------------------------------------------------------- /bar/app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Services.php -------------------------------------------------------------------------------- /bar/app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Toolbar.php -------------------------------------------------------------------------------- /bar/app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/UserAgents.php -------------------------------------------------------------------------------- /bar/app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/Validation.php -------------------------------------------------------------------------------- /bar/app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Config/View.php -------------------------------------------------------------------------------- /bar/app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /bar/app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Controllers/Home.php -------------------------------------------------------------------------------- /bar/app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Language/en/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Language/en/Validation.php -------------------------------------------------------------------------------- /bar/app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /bar/app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /bar/app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /bar/app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /bar/app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /bar/app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /bar/app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /bar/app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /bar/app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/Views/welcome_message.php -------------------------------------------------------------------------------- /bar/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/app/index.html -------------------------------------------------------------------------------- /bar/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/env -------------------------------------------------------------------------------- /bar/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/phpunit.xml.dist -------------------------------------------------------------------------------- /bar/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/public/.htaccess -------------------------------------------------------------------------------- /bar/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/public/favicon.ico -------------------------------------------------------------------------------- /bar/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/public/index.php -------------------------------------------------------------------------------- /bar/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /bar/spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/spark -------------------------------------------------------------------------------- /bar/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/README.md -------------------------------------------------------------------------------- /bar/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php -------------------------------------------------------------------------------- /bar/tests/_support/Database/Seeds/ExampleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/_support/Database/Seeds/ExampleSeeder.php -------------------------------------------------------------------------------- /bar/tests/_support/Libraries/ConfigReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/_support/Libraries/ConfigReader.php -------------------------------------------------------------------------------- /bar/tests/_support/Models/ExampleModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/_support/Models/ExampleModel.php -------------------------------------------------------------------------------- /bar/tests/database/ExampleDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/database/ExampleDatabaseTest.php -------------------------------------------------------------------------------- /bar/tests/session/ExampleSessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/session/ExampleSessionTest.php -------------------------------------------------------------------------------- /bar/tests/unit/HealthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/tests/unit/HealthTest.php -------------------------------------------------------------------------------- /bar/writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/writable/.htaccess -------------------------------------------------------------------------------- /bar/writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/writable/cache/index.html -------------------------------------------------------------------------------- /bar/writable/debugbar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bar/writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/writable/logs/index.html -------------------------------------------------------------------------------- /bar/writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/writable/session/index.html -------------------------------------------------------------------------------- /bar/writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/bar/writable/uploads/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/composer.lock -------------------------------------------------------------------------------- /foo/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/.htaccess -------------------------------------------------------------------------------- /foo/app/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Common.php -------------------------------------------------------------------------------- /foo/app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/App.php -------------------------------------------------------------------------------- /foo/app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Autoload.php -------------------------------------------------------------------------------- /foo/app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Boot/development.php -------------------------------------------------------------------------------- /foo/app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Boot/production.php -------------------------------------------------------------------------------- /foo/app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /foo/app/Config/CURLRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/CURLRequest.php -------------------------------------------------------------------------------- /foo/app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Cache.php -------------------------------------------------------------------------------- /foo/app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Constants.php -------------------------------------------------------------------------------- /foo/app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /foo/app/Config/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Cookie.php -------------------------------------------------------------------------------- /foo/app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Database.php -------------------------------------------------------------------------------- /foo/app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/DocTypes.php -------------------------------------------------------------------------------- /foo/app/Config/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Email.php -------------------------------------------------------------------------------- /foo/app/Config/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Encryption.php -------------------------------------------------------------------------------- /foo/app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Events.php -------------------------------------------------------------------------------- /foo/app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Exceptions.php -------------------------------------------------------------------------------- /foo/app/Config/Feature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Feature.php -------------------------------------------------------------------------------- /foo/app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Filters.php -------------------------------------------------------------------------------- /foo/app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /foo/app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Format.php -------------------------------------------------------------------------------- /foo/app/Config/Generators.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Generators.php -------------------------------------------------------------------------------- /foo/app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Honeypot.php -------------------------------------------------------------------------------- /foo/app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Images.php -------------------------------------------------------------------------------- /foo/app/Config/Kint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Kint.php -------------------------------------------------------------------------------- /foo/app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Logger.php -------------------------------------------------------------------------------- /foo/app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Migrations.php -------------------------------------------------------------------------------- /foo/app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Mimes.php -------------------------------------------------------------------------------- /foo/app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Modules.php -------------------------------------------------------------------------------- /foo/app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Pager.php -------------------------------------------------------------------------------- /foo/app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Paths.php -------------------------------------------------------------------------------- /foo/app/Config/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Publisher.php -------------------------------------------------------------------------------- /foo/app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Routes.php -------------------------------------------------------------------------------- /foo/app/Config/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Security.php -------------------------------------------------------------------------------- /foo/app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Services.php -------------------------------------------------------------------------------- /foo/app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Toolbar.php -------------------------------------------------------------------------------- /foo/app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/UserAgents.php -------------------------------------------------------------------------------- /foo/app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/Validation.php -------------------------------------------------------------------------------- /foo/app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Config/View.php -------------------------------------------------------------------------------- /foo/app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /foo/app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Controllers/Home.php -------------------------------------------------------------------------------- /foo/app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Language/en/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Language/en/Validation.php -------------------------------------------------------------------------------- /foo/app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /foo/app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /foo/app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /foo/app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /foo/app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /foo/app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /foo/app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /foo/app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /foo/app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/Views/welcome_message.php -------------------------------------------------------------------------------- /foo/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/app/index.html -------------------------------------------------------------------------------- /foo/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/env -------------------------------------------------------------------------------- /foo/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/phpunit.xml.dist -------------------------------------------------------------------------------- /foo/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/public/.htaccess -------------------------------------------------------------------------------- /foo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/public/favicon.ico -------------------------------------------------------------------------------- /foo/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/public/index.php -------------------------------------------------------------------------------- /foo/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /foo/spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/spark -------------------------------------------------------------------------------- /foo/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/README.md -------------------------------------------------------------------------------- /foo/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/_support/Database/Migrations/2020-02-22-222222_example_migration.php -------------------------------------------------------------------------------- /foo/tests/_support/Database/Seeds/ExampleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/_support/Database/Seeds/ExampleSeeder.php -------------------------------------------------------------------------------- /foo/tests/_support/Libraries/ConfigReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/_support/Libraries/ConfigReader.php -------------------------------------------------------------------------------- /foo/tests/_support/Models/ExampleModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/_support/Models/ExampleModel.php -------------------------------------------------------------------------------- /foo/tests/database/ExampleDatabaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/database/ExampleDatabaseTest.php -------------------------------------------------------------------------------- /foo/tests/session/ExampleSessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/session/ExampleSessionTest.php -------------------------------------------------------------------------------- /foo/tests/unit/HealthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/tests/unit/HealthTest.php -------------------------------------------------------------------------------- /foo/writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/writable/.htaccess -------------------------------------------------------------------------------- /foo/writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/writable/cache/index.html -------------------------------------------------------------------------------- /foo/writable/debugbar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foo/writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/writable/logs/index.html -------------------------------------------------------------------------------- /foo/writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/writable/session/index.html -------------------------------------------------------------------------------- /foo/writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenjis/codeigniter4-multiple-apps-sample/HEAD/foo/writable/uploads/index.html --------------------------------------------------------------------------------