├── dev
├── app
│ ├── Models
│ │ └── .gitkeep
│ ├── Filters
│ │ └── .gitkeep
│ ├── Helpers
│ │ └── .gitkeep
│ ├── Language
│ │ ├── .gitkeep
│ │ └── en
│ │ │ └── Validation.php
│ ├── Libraries
│ │ └── .gitkeep
│ ├── ThirdParty
│ │ └── .gitkeep
│ ├── Database
│ │ ├── Seeds
│ │ │ └── .gitkeep
│ │ └── Migrations
│ │ │ └── .gitkeep
│ ├── .htaccess
│ ├── Views
│ │ └── errors
│ │ │ ├── cli
│ │ │ ├── error_404.php
│ │ │ ├── production.php
│ │ │ └── error_exception.php
│ │ │ └── html
│ │ │ ├── production.php
│ │ │ ├── error_404.php
│ │ │ ├── debug.js
│ │ │ └── debug.css
│ ├── index.html
│ ├── Config
│ │ ├── ForeignCharacters.php
│ │ ├── CURLRequest.php
│ │ ├── Images.php
│ │ ├── Boot
│ │ │ ├── production.php
│ │ │ ├── testing.php
│ │ │ └── development.php
│ │ ├── Honeypot.php
│ │ ├── Publisher.php
│ │ ├── Feature.php
│ │ ├── Services.php
│ │ ├── Validation.php
│ │ ├── Pager.php
│ │ ├── View.php
│ │ ├── Filters.php
│ │ ├── Events.php
│ │ ├── Kint.php
│ │ ├── Modules.php
│ │ ├── Migrations.php
│ │ ├── Routes.php
│ │ ├── Generators.php
│ │ ├── Exceptions.php
│ │ ├── Encryption.php
│ │ ├── Database.php
│ │ ├── Format.php
│ │ ├── DocTypes.php
│ │ ├── Paths.php
│ │ ├── Autoload.php
│ │ ├── Toolbar.php
│ │ ├── Email.php
│ │ ├── Security.php
│ │ ├── Constants.php
│ │ ├── Cookie.php
│ │ ├── ContentSecurityPolicy.php
│ │ ├── Logger.php
│ │ └── Cache.php
│ ├── Controllers
│ │ ├── Home.php
│ │ ├── SessionTest.php
│ │ ├── BaseController.php
│ │ ├── FileUploadTest.php
│ │ ├── TestRest.php
│ │ └── BasicTest.php
│ └── Common.php
├── public
│ ├── robots.txt
│ ├── favicon.ico
│ ├── .htaccess
│ └── index.php
├── tests
│ ├── codeigniter4Roadrunner
│ │ ├── httpTest
│ │ │ ├── testFiles
│ │ │ │ ├── upload1.text
│ │ │ │ └── upload2.text
│ │ │ ├── SessionTest.php
│ │ │ ├── FileUploadTest.php
│ │ │ ├── RestTest.php
│ │ │ └── BasicTest.php
│ │ ├── UploadedFileBridgeTest.php
│ │ └── RequestBridgeTest.php
│ ├── bootstrap.php
│ ├── _support
│ │ ├── Libraries
│ │ │ └── ConfigReader.php
│ │ ├── Models
│ │ │ └── ExampleModel.php
│ │ └── Database
│ │ │ ├── Migrations
│ │ │ └── 2020-02-22-222222_example_migration.php
│ │ │ └── Seeds
│ │ │ └── ExampleSeeder.php
│ └── README.md
├── writable
│ ├── .htaccess
│ ├── cache
│ │ └── index.html
│ ├── logs
│ │ └── index.html
│ ├── session
│ │ └── index.html
│ └── uploads
│ │ └── index.html
├── LICENSE
├── composer.json
├── README_ZH-TW.md
├── phpunit.xml.dist
├── .gitignore
├── README.md
├── spark
├── builds
└── env
├── .gitignore
├── src
├── Commands
│ ├── file
│ │ ├── .rr.yaml
│ │ └── psr-worker.php
│ └── InitLibrary.php
├── HandleDBConnection.php
├── UriBridge.php
├── RequestHandler.php
├── UploadedFileBridge.php
├── ResponseBridge.php
└── UploadedFile.php
├── .php-cs-fixer.dist.php
├── composer.json
├── .github
└── workflows
│ └── test-phpunit.yml
├── rector.php
└── README_zh-TW.md
/dev/app/Models/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Filters/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Helpers/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Language/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Libraries/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/ThirdParty/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Database/Seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/app/Database/Migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/dev/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/dev/tests/codeigniter4Roadrunner/httpTest/testFiles/upload1.text:
--------------------------------------------------------------------------------
1 | upload1
--------------------------------------------------------------------------------
/dev/tests/codeigniter4Roadrunner/httpTest/testFiles/upload2.text:
--------------------------------------------------------------------------------
1 | upload2
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .vscode
2 | vendor/
3 | .idea/
4 | composer.lock
5 | .php-cs-fixer.cache
6 |
--------------------------------------------------------------------------------
/dev/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SDPM-lab/Codeigniter4-Roadrunner/HEAD/dev/public/favicon.ico
--------------------------------------------------------------------------------
/dev/app/.htaccess:
--------------------------------------------------------------------------------
1 |
Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dev/writable/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dev/writable/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dev/writable/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dev/writable/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Directory access is forbidden.
9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /dev/app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |We seem to have hit a snag. Please try again later...
20 | 21 |76 | 77 | = nl2br(esc($message)) ?> 78 | 79 | Sorry! Cannot seem to find the page you were looking for. 80 | 81 |
82 |