Initial commit
parents
Showing
with
4828 additions
and
0 deletions
.env
0 → 100644
.no-header.php-cs-fixer.dist.php
0 → 100644
CHANGELOG.md
0 → 100644
This diff could not be displayed because it is too large.
CONTRIBUTING.md
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
SECURITY.md
0 → 100644
app/.htaccess
0 → 100644
app/Common.php
0 → 100644
app/Config/App.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Config/Autoload.php
0 → 100644
app/Config/Boot/development.php
0 → 100644
app/Config/Boot/production.php
0 → 100644
app/Config/Boot/testing.php
0 → 100644
app/Config/CURLRequest.php
0 → 100644
app/Config/Cache.php
0 → 100644
app/Config/Constants.php
0 → 100644
app/Config/ContentSecurityPolicy.php
0 → 100644
app/Config/Cookie.php
0 → 100644
app/Config/Database.php
0 → 100644
app/Config/DocTypes.php
0 → 100644
app/Config/Email.php
0 → 100644
app/Config/Encryption.php
0 → 100644
app/Config/Events.php
0 → 100644
app/Config/Exceptions.php
0 → 100644
app/Config/Feature.php
0 → 100644
app/Config/Filters.php
0 → 100644
app/Config/ForeignCharacters.php
0 → 100644
app/Config/Format.php
0 → 100644
app/Config/Generators.php
0 → 100644
app/Config/Honeypot.php
0 → 100644
app/Config/Images.php
0 → 100644
app/Config/Kint.php
0 → 100644
app/Config/Logger.php
0 → 100644
app/Config/Migrations.php
0 → 100644
app/Config/Mimes.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Config/Modules.php
0 → 100644
app/Config/Pager.php
0 → 100644
app/Config/Paths.php
0 → 100644
app/Config/Publisher.php
0 → 100644
app/Config/Routes.php
0 → 100644
app/Config/Security.php
0 → 100644
app/Config/Services.php
0 → 100644
app/Config/Toolbar.php
0 → 100644
app/Config/UserAgents.php
0 → 100644
app/Config/Validation.php
0 → 100644
app/Config/View.php
0 → 100644
app/Controllers/BaseController.php
0 → 100644
app/Controllers/Home.php
0 → 100644
app/Database/Migrations/.gitkeep
0 → 100644
File mode changed
app/Database/Seeds/.gitkeep
0 → 100644
File mode changed
app/Filters/.gitkeep
0 → 100644
File mode changed
app/Helpers/.gitkeep
0 → 100644
File mode changed
app/Language/.gitkeep
0 → 100644
File mode changed
app/Language/en/Validation.php
0 → 100644
app/Libraries/.gitkeep
0 → 100644
File mode changed
app/Models/.gitkeep
0 → 100644
File mode changed
app/ThirdParty/.gitkeep
0 → 100644
File mode changed
app/Views/errors/cli/error_404.php
0 → 100644
app/Views/errors/cli/error_exception.php
0 → 100644
app/Views/errors/cli/production.php
0 → 100644
app/Views/errors/html/debug.css
0 → 100644
app/Views/errors/html/debug.js
0 → 100644
app/Views/errors/html/error_404.php
0 → 100644
app/Views/errors/html/error_exception.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/Views/errors/html/production.php
0 → 100644
app/Views/welcome_message.php
0 → 100644
This diff is collapsed.
Click to expand it.
app/index.html
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "codeigniter4/codeigniter4", | |||
| "type": "project", | |||
| "description": "The CodeIgniter framework v4", | |||
| "homepage": "https://codeigniter.com", | |||
| "license": "MIT", | |||
| "require": { | |||
| "php": "^7.3 || ^8.0", | |||
| "ext-curl": "*", | |||
| "ext-intl": "*", | |||
| "ext-json": "*", | |||
| "ext-mbstring": "*", | |||
| "kint-php/kint": "^4.0", | |||
| "laminas/laminas-escaper": "^2.9", | |||
| "psr/log": "^1.1" | |||
| }, | |||
| "require-dev": { | |||
| "codeigniter/coding-standard": "^1.1", | |||
| "fakerphp/faker": "^1.9", | |||
| "friendsofphp/php-cs-fixer": "^3.1", | |||
| "mikey179/vfsstream": "^1.6", | |||
| "nexusphp/cs-config": "^3.3", | |||
| "nexusphp/tachycardia": "^1.0", | |||
| "phpstan/phpstan": "^1.0", | |||
| "phpunit/phpunit": "^9.1", | |||
| "predis/predis": "^1.1", | |||
| "rector/rector": "0.12.10" | |||
| }, | |||
| "suggest": { | |||
| "ext-fileinfo": "Improves mime type detection for files" | |||
| }, | |||
| "config": { | |||
| "optimize-autoloader": true, | |||
| "preferred-install": "dist", | |||
| "sort-packages": true | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-develop": "4.x-dev" | |||
| } | |||
| }, | |||
| "autoload": { | |||
| "psr-4": { | |||
| "CodeIgniter\\": "system/" | |||
| }, | |||
| "exclude-from-classmap": [ | |||
| "**/Database/Migrations/**" | |||
| ] | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "CodeIgniter\\": "tests/system/", | |||
| "Utils\\": "utils/" | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "post-update-cmd": [ | |||
| "CodeIgniter\\ComposerScripts::postUpdate", | |||
| "bash -c \"if [ -f admin/setup.sh ]; then bash admin/setup.sh; fi\"" | |||
| ], | |||
| "analyze": "phpstan analyse", | |||
| "test": "phpunit", | |||
| "cs": [ | |||
| "php-cs-fixer fix --verbose --dry-run --diff --config=.no-header.php-cs-fixer.dist.php", | |||
| "php-cs-fixer fix --verbose --dry-run --diff" | |||
| ], | |||
| "cs-fix": [ | |||
| "php-cs-fixer fix --verbose --diff --config=.no-header.php-cs-fixer.dist.php", | |||
| "php-cs-fixer fix --verbose --diff" | |||
| ] | |||
| }, | |||
| "scripts-descriptions": { | |||
| "analyze": "Run static analysis", | |||
| "test": "Run unit tests", | |||
| "cs": "Check the coding style", | |||
| "cs-fix": "Fix the coding style" | |||
| }, | |||
| "support": { | |||
| "forum": "http://forum.codeigniter.com/", | |||
| "source": "https://github.com/codeigniter4/CodeIgniter4", | |||
| "slack": "https://codeigniterchat.slack.com" | |||
| } | |||
| } |
depfile.yaml
0 → 100644
phpstan-baseline.neon.dist
0 → 100644
This diff is collapsed.
Click to expand it.
public/.htaccess
0 → 100644
public/favicon.ico
0 → 100644
No preview for this file type
public/index.php
0 → 100644
public/robots.txt
0 → 100644
spark
0 → 100644
system/.htaccess
0 → 100644
system/API/ResponseTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Autoloader/Autoloader.php
0 → 100644
system/Autoloader/FileLocator.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/BaseModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CLI/BaseCommand.php
0 → 100644
system/CLI/CLI.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CLI/CommandRunner.php
0 → 100644
system/CLI/Commands.php
0 → 100644
system/CLI/Console.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CLI/Exceptions/CLIException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CLI/GeneratorTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/CacheFactory.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/CacheInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Exceptions/CacheException.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/BaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/DummyHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/FileHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/MemcachedHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/PredisHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/RedisHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cache/Handlers/WincacheHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CodeIgniter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Cache/ClearCache.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Cache/InfoCache.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/CreateDatabase.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/Migrate.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/MigrateRefresh.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/MigrateRollback.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/MigrateStatus.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Database/Seed.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Encryption/GenerateKey.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Commands/Generators/MigrateCreate.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Commands/Help.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Commands/Housekeeping/ClearLogs.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/ListCommands.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Server/Serve.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Server/rewrite.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Utilities/Environment.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Utilities/Namespaces.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Utilities/Publish.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Commands/Utilities/Routes.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Common.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ComposerScripts.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/AutoloadConfig.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/BaseConfig.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/BaseService.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Config.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/DotEnv.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Factories.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Factory.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/ForeignCharacters.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Publisher.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Routes.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/Services.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Config/View.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Controller.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cookie/CloneableCookieInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cookie/Cookie.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cookie/CookieInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cookie/CookieStore.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Cookie/Exceptions/CookieException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/BaseBuilder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/BaseConnection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/BasePreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/BaseResult.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/BaseUtils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Config.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/ConnectionInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Database.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Exceptions/DataException.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Migration.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MigrationRunner.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/ModelFactory.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Builder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Connection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/PreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Result.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Utils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Builder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Connection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/PreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Result.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Utils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/PreparedQueryInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Query.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/QueryInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/ResultInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Builder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Connection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/PreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Result.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Utils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Builder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Connection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/PreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Result.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Table.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Utils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/Seeder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Exceptions.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Iterator.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Kint/RichRenderer.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Timer.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Config.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Database.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Events.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Files.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/History.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Logs.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Routes.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Timers.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Collectors/Views.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_config.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_database.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_events.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_files.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_history.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_logs.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/_routes.tpl
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/toolbar.css
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/toolbar.js
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/toolbar.tpl.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar/Views/toolbarloader.js
0 → 100644
This diff is collapsed.
Click to expand it.
system/Email/Email.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Encryption/EncrypterInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Encryption/Encryption.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Encryption/Handlers/BaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Encryption/Handlers/SodiumHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/ArrayCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/BaseCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/BooleanCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/CSVCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/CastInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/DatetimeCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/FloatCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/IntegerCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/JsonCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/ObjectCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/StringCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/TimestampCast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Cast/URICast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Entity.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Entity/Exceptions/CastException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Events/Events.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/AlertError.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/CastException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/ConfigException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/CriticalError.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/DebugTraceableTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/DownloadException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/EmergencyError.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/ExceptionInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/FrameworkException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/ModelException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/PageNotFoundException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/TestException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Files/Exceptions/FileException.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Files/File.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Files/FileCollection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/CSRF.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/DebugToolbar.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Filters/FilterInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/Filters.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/Honeypot.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/InvalidChars.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Filters/SecureHeaders.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Format/Exceptions/FormatException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Format/Format.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Format/FormatterInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Format/JSONFormatter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Format/XMLFormatter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/CLIRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/CURLRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/ContentSecurityPolicy.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/DownloadResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Exceptions/HTTPException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Files/FileCollection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Files/UploadedFile.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Files/UploadedFileInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Header.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/IncomingRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Message.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/MessageInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/MessageTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Negotiate.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/RedirectResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Request.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/RequestInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/RequestTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/Response.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/ResponseInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/ResponseTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/URI.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/UserAgent.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/array_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/cookie_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/date_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/filesystem_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/form_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/html_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/inflector_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/number_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/security_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/test_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/text_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/url_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Helpers/xml_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Honeypot/Honeypot.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/I18n/Exceptions/I18nException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/I18n/Time.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/I18n/TimeDifference.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Images/Exceptions/ImageException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Images/Handlers/BaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Images/Handlers/GDHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Images/Image.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Images/ImageHandlerInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/Language.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/CLI.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Cache.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Cast.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Cookie.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Core.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Database.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Email.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Encryption.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Fabricator.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Files.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Filters.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Format.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/HTTP.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Images.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Log.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Migrations.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Number.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Pager.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Publisher.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/RESTful.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Router.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Security.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Session.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Test.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Time.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/Validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Language/en/View.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Exceptions/LogException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Handlers/BaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Handlers/ChromeLoggerHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Handlers/ErrorlogHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Handlers/FileHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Handlers/HandlerInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Log/Logger.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Model.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Modules/Modules.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/Exceptions/PagerException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/Pager.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/PagerInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/PagerRenderer.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/Views/default_full.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/Views/default_head.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Pager/Views/default_simple.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Publisher/Publisher.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/RESTful/BaseResource.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/RESTful/ResourceController.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/RESTful/ResourcePresenter.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Router/Exceptions/RouterException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/RouteCollection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/RouteCollectionInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/Router.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/RouterInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Security/Security.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Security/SecurityInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Session/Handlers/ArrayHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Handlers/BaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Handlers/DatabaseHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Handlers/FileHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Handlers/MemcachedHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Handlers/RedisHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/Session.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Session/SessionInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/CIDatabaseTestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/CIUnitTestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Constraints/SeeInDatabase.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/ControllerResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/ControllerTestTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/ControllerTester.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/DOMParser.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/DatabaseTestTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Fabricator.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/FeatureResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/FeatureTestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/FeatureTestTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/FilterTestTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Filters/CITestStreamFilter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Interfaces/FabricatorModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockAppConfig.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockAutoload.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockBuilder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCLIConfig.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCURLRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCache.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCodeIgniter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCommon.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockConnection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockEmail.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockEvents.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockFileLogger.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockIncomingRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockLanguage.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockLogger.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockResourceController.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockResourcePresenter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockResult.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockSecurity.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockSecurityConfig.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockServices.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockSession.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockTable.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/ReflectionHelper.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/TestLogger.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/TestResponse.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Test/bootstrap.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Escaper/Escaper.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Escaper/LICENSE.md
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/CallFinder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Kint.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Parser/JsonPlugin.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Parser/Parser.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Parser/Plugin.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Parser/XmlPlugin.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Renderer/Renderer.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Utils.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/BlobValue.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/ClosureValue.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/MethodValue.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/StreamValue.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/TraceValue.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Zval/Value.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/init.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/init_helpers.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/PSR/Log/AbstractLogger.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/PSR/Log/LICENSE
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/PSR/Log/LogLevel.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/PSR/Log/LoggerTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/ThirdParty/PSR/Log/NullLogger.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Throttle/Throttler.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Throttle/ThrottlerInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Typography/Typography.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/CreditCardRules.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Validation/FileRules.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/FormatRules.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/Rules.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/Validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/ValidationInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/Views/list.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Validation/Views/single.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Cell.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Exceptions/ViewException.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Filters.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Parser.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Plugins.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/RendererInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/Table.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/View.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/bootstrap.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
tests/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
tests/README.md
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Autoloader/FatalLocator.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Autoloader/functions.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Cache/RestrictiveHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/AbstractInfo.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/AppInfo.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/Foobar.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/InvalidCommand.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/LanguageCommand.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/ParamsReveal.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Commands/Unsuffixable.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/BadRegistrar.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/Filters.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/Registrar.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/Routes.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/Services.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Config/TestRegistrar.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Controllers/Hello.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Controllers/Popcorn.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Entity/Cast/CastBase64.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Entity/User.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Files/able/apple.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Files/able/fig_3.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Files/able/prune_ripe.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Files/baker/banana.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Filters/Customfilter.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/HTTP/Files/CookiesHolder.txt
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/HTTP/Files/tmp/fileA.txt
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/HTTP/Files/tmp/fileB.txt
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/HTTP/Files/tmp/fileC.csv
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/HTTP/Files/tmp/fileD.zip
0 → 100644
No preview for this file type
tests/_support/HTTP/Files/tmp/fileE.zip.rar
0 → 100644
No preview for this file type
tests/_support/Helpers/baguette_helper.php
0 → 100644
This diff is collapsed.
Click to expand it.
21.2 KB
20.8 KB
21.2 KB
21.4 KB
21 KB
21.3 KB
21.4 KB
21.1 KB
21.4 KB
21.2 KB
20.8 KB
21.2 KB
21.4 KB
21 KB
21.3 KB
21.4 KB
21.1 KB
21.4 KB
tests/_support/Images/Steveston_dusk.JPG
0 → 100644
119 KB
tests/_support/Images/ci-logo.gif
0 → 100644
1.8 KB
tests/_support/Images/ci-logo.jpeg
0 → 100644
7.36 KB
tests/_support/Images/ci-logo.png
0 → 100644
4.43 KB
tests/_support/Images/ci-logo.webp
0 → 100644
No preview for this file type
This diff is collapsed.
Click to expand it.
tests/_support/Language/ab-CD/Allin.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/ab/Allin.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en-ZZ/More.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Allin.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Core.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Foo.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Language.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/More.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Nested.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Language/ru/Language.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Log/Handlers/TestHandler.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Models/EntityModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/EventModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/FabricatorModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/JobModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/SecondaryModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/SimpleEntity.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/StringifyPkeyModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/UserModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/UserObjModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/ValidErrorsModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/ValidModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Publishers/TestPublisher.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/RESTful/Worker.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/RESTful/Worker2.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Services.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/SomeEntity.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Validation/TestRules.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Validation/uploads/phpUxc0ty
0 → 100644
No preview for this file type
tests/_support/View/SampleClass.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/View/Views/simple.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/View/Views/simpler.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/View/Views/simples.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Widgets/NopeWidget.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Widgets/OtherWidget.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Widgets/SomeWidget.php
0 → 100644
This diff is collapsed.
Click to expand it.
writable/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
writable/cache/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
writable/debugbar/.gitkeep
0 → 100644
This diff is collapsed.
Click to expand it.
writable/debugbar/debugbar_1644229186.json
0 → 100644
This diff is collapsed.
Click to expand it.
writable/debugbar/debugbar_1644229403.json
0 → 100644
This diff is collapsed.
Click to expand it.
writable/debugbar/debugbar_1644229548.json
0 → 100644
This diff is collapsed.
Click to expand it.
writable/logs/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
writable/logs/log-2022-02-07.log
0 → 100644
This diff is collapsed.
Click to expand it.
writable/session/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
writable/uploads/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment