Borrado
Showing
with
0 additions
and
5122 deletions
CHANGELOG.md
deleted
100644 → 0
This diff could not be displayed because it is too large.
CONTRIBUTING.md
deleted
100644 → 0
LICENSE
deleted
100644 → 0
README.md
deleted
100644 → 0
SECURITY.md
deleted
100644 → 0
app/.htaccess
deleted
100644 → 0
app/Common.php
deleted
100644 → 0
app/Config/App.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
app/Config/Autoload.php
deleted
100644 → 0
app/Config/Boot/development.php
deleted
100644 → 0
app/Config/Boot/production.php
deleted
100644 → 0
app/Config/Boot/testing.php
deleted
100644 → 0
app/Config/CURLRequest.php
deleted
100644 → 0
app/Config/Cache.php
deleted
100644 → 0
app/Config/Constants.php
deleted
100644 → 0
app/Config/ContentSecurityPolicy.php
deleted
100644 → 0
app/Config/Cookie.php
deleted
100644 → 0
app/Config/Database.php
deleted
100644 → 0
app/Config/DocTypes.php
deleted
100644 → 0
app/Config/Email.php
deleted
100644 → 0
app/Config/Encryption.php
deleted
100644 → 0
app/Config/Events.php
deleted
100644 → 0
app/Config/Exceptions.php
deleted
100644 → 0
app/Config/Feature.php
deleted
100644 → 0
app/Config/Filters.php
deleted
100644 → 0
app/Config/ForeignCharacters.php
deleted
100644 → 0
app/Config/Format.php
deleted
100644 → 0
app/Config/Generators.php
deleted
100644 → 0
app/Config/Honeypot.php
deleted
100644 → 0
app/Config/Images.php
deleted
100644 → 0
app/Config/Kint.php
deleted
100644 → 0
app/Config/Logger.php
deleted
100644 → 0
app/Config/Migrations.php
deleted
100644 → 0
app/Config/Mimes.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
app/Config/Modules.php
deleted
100644 → 0
app/Config/Pager.php
deleted
100644 → 0
app/Config/Paths.php
deleted
100644 → 0
app/Config/Publisher.php
deleted
100644 → 0
app/Config/Routes.php
deleted
100644 → 0
app/Config/Security.php
deleted
100644 → 0
app/Config/Services.php
deleted
100644 → 0
app/Config/Toolbar.php
deleted
100644 → 0
app/Config/UserAgents.php
deleted
100644 → 0
app/Config/Validation.php
deleted
100644 → 0
app/Config/View.php
deleted
100644 → 0
app/Controllers/BaseController.php
deleted
100644 → 0
app/Controllers/Home.php
deleted
100644 → 0
app/Database/Migrations/.gitkeep
deleted
100644 → 0
File mode changed
app/Database/Seeds/.gitkeep
deleted
100644 → 0
File mode changed
app/Filters/.gitkeep
deleted
100644 → 0
File mode changed
app/Helpers/.gitkeep
deleted
100644 → 0
File mode changed
app/Language/.gitkeep
deleted
100644 → 0
File mode changed
app/Language/en/Validation.php
deleted
100644 → 0
app/Libraries/.gitkeep
deleted
100644 → 0
File mode changed
app/Models/.gitkeep
deleted
100644 → 0
File mode changed
app/ThirdParty/.gitkeep
deleted
100644 → 0
File mode changed
app/Views/errors/cli/error_404.php
deleted
100644 → 0
app/Views/errors/cli/production.php
deleted
100644 → 0
app/Views/errors/html/debug.css
deleted
100644 → 0
app/Views/errors/html/debug.js
deleted
100644 → 0
app/Views/errors/html/error_404.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
app/Views/errors/html/production.php
deleted
100644 → 0
app/Views/welcome_message.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
app/index.html
deleted
100644 → 0
assets/helpers/asset_helper.php
deleted
100644 → 0
assets/sticky-footer.css
deleted
100644 → 0
composer.json
deleted
100644 → 0
{ | ||
"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
deleted
100644 → 0
design/Index.html
deleted
100644 → 0
File mode changed
design/form.html
deleted
100644 → 0
File mode changed
phpstan-baseline.neon.dist
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
public/.htaccess
deleted
100644 → 0
public/favicon.ico
deleted
100644 → 0
No preview for this file type
public/index.php
deleted
100644 → 0
public/robots.txt
deleted
100644 → 0
spark
deleted
100644 → 0
system/.htaccess
deleted
100644 → 0
system/API/ResponseTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Autoloader/Autoloader.php
deleted
100644 → 0
system/Autoloader/FileLocator.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/BaseModel.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/CLI/BaseCommand.php
deleted
100644 → 0
system/CLI/CLI.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/CLI/CommandRunner.php
deleted
100644 → 0
system/CLI/Commands.php
deleted
100644 → 0
system/CLI/Console.php
deleted
100644 → 0
system/CLI/GeneratorTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Cache/CacheFactory.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Cache/CacheInterface.php
deleted
100644 → 0
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/CodeIgniter.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Commands/Cache/ClearCache.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Commands/Cache/InfoCache.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Commands/Database/Migrate.php
deleted
100644 → 0
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/Database/Seed.php
deleted
100644 → 0
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/Commands/Help.php
deleted
100644 → 0
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/ListCommands.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Commands/Server/Serve.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Commands/Server/rewrite.php
deleted
100644 → 0
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/Utilities/Routes.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Common.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/ComposerScripts.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/AutoloadConfig.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/BaseConfig.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/BaseService.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Config.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/DotEnv.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Factories.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Factory.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/ForeignCharacters.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Publisher.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Routes.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/Services.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Config/View.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Controller.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Cookie/Cookie.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Cookie/CookieInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Cookie/CookieStore.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/BaseBuilder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/BaseConnection.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/BaseResult.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/BaseUtils.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/Config.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/Database.php
deleted
100644 → 0
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/Database/Forge.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/Migration.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/MigrationRunner.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/ModelFactory.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Builder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Forge.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Result.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/MySQLi/Utils.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Builder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Forge.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Result.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/Postgre/Utils.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/Query.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/QueryInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/ResultInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Builder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Forge.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Result.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/SQLSRV/Utils.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Builder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Forge.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Result.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Table.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/SQLite3/Utils.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Database/Seeder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Debug/Exceptions.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Debug/Iterator.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Debug/Kint/RichRenderer.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Debug/Timer.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Debug/Toolbar.php
deleted
100644 → 0
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/Debug/Toolbar/Views/_logs.tpl
deleted
100644 → 0
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/Email/Email.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Encryption/Encryption.php
deleted
100644 → 0
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/Entity.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/ArrayCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/BaseCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/BooleanCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/CSVCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/CastInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/DatetimeCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/FloatCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/IntegerCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/JsonCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/ObjectCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/StringCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/TimestampCast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Cast/URICast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Entity/Entity.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Events/Events.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Exceptions/AlertError.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Exceptions/CastException.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Exceptions/CriticalError.php
deleted
100644 → 0
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/Exceptions/EmergencyError.php
deleted
100644 → 0
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/Exceptions/ModelException.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Exceptions/TestException.php
deleted
100644 → 0
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/Files/File.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Files/FileCollection.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/CSRF.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/DebugToolbar.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Filters/FilterInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/Filters.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/Honeypot.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/InvalidChars.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Filters/SecureHeaders.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Format/Format.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Format/FormatterInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Format/JSONFormatter.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Format/XMLFormatter.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/CLIRequest.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/CURLRequest.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/HTTP/DownloadResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/HTTP/Files/FileCollection.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/Files/UploadedFile.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/HTTP/Header.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/IncomingRequest.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/Message.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/MessageInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/MessageTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/Negotiate.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/RedirectResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/Request.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/RequestInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/RequestTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/Response.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/ResponseInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/ResponseTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/URI.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/HTTP/UserAgent.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/array_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/cookie_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/date_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/filesystem_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/form_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/html_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/inflector_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/number_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/security_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/test_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/text_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/url_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Helpers/xml_helper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Honeypot/Honeypot.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/I18n/Time.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/I18n/TimeDifference.php
deleted
100644 → 0
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/Images/Handlers/GDHandler.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Images/Image.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Language/Language.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/CLI.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Cache.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Cast.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Cookie.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Core.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Database.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Email.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Encryption.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Fabricator.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Files.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Filters.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Format.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/HTTP.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Images.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Log.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Migrations.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Number.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Pager.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Publisher.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/RESTful.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Router.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Security.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Session.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Test.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Time.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/Validation.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Language/en/View.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Log/Handlers/BaseHandler.php
deleted
100644 → 0
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/Log/Handlers/FileHandler.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Log/Logger.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Model.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Modules/Modules.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Pager/Pager.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Pager/PagerInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Pager/PagerRenderer.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Pager/Views/default_full.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Pager/Views/default_head.php
deleted
100644 → 0
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/Publisher/Publisher.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/RESTful/BaseResource.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/RESTful/ResourcePresenter.php
deleted
100644 → 0
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/Router/RouteCollection.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Router/Router.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Router/RouterInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Security/Security.php
deleted
100644 → 0
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/Session/Session.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Session/SessionInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/CIDatabaseTestCase.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/CIUnitTestCase.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Test/ControllerResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/ControllerTestTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/ControllerTester.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/DOMParser.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/DatabaseTestTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Fabricator.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/FeatureResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/FeatureTestCase.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/FeatureTestTrait.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/FilterTestTrait.php
deleted
100644 → 0
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/Test/Mock/MockAppConfig.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockAutoload.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockBuilder.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCLIConfig.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCURLRequest.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCache.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCodeIgniter.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockCommon.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockConnection.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockEmail.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockEvents.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockFileLogger.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockLanguage.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockLogger.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockQuery.php
deleted
100644 → 0
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/Test/Mock/MockResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockResult.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockSecurity.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockServices.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockSession.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/Mock/MockTable.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/ReflectionHelper.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/TestLogger.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/TestResponse.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Test/bootstrap.php
deleted
100644 → 0
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/Escaper/LICENSE.md
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/Kint.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/ThirdParty/Kint/LICENSE
deleted
100644 → 0
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.
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.
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
deleted
100644 → 0
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/init.php
deleted
100644 → 0
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/PSR/Log/LICENSE
deleted
100644 → 0
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/Throttle/Throttler.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Typography/Typography.php
deleted
100644 → 0
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/Validation/FileRules.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Validation/FormatRules.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Validation/Rules.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Validation/Validation.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Validation/Views/list.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/Validation/Views/single.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/Cell.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/View/Filters.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/Parser.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/Plugins.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/RendererInterface.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/Table.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/View/View.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/bootstrap.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
system/index.html
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/.htaccess
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/README.md
deleted
100644 → 0
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.
tests/_support/Commands/AppInfo.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Commands/Foobar.php
deleted
100644 → 0
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.
tests/_support/Config/Filters.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Config/Registrar.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Config/Routes.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Config/Services.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Controllers/Hello.php
deleted
100644 → 0
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.
tests/_support/Entity/User.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Files/able/apple.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Files/able/fig_3.php
deleted
100644 → 0
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.
No preview for this file type
No preview for this file type
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
119 KB
tests/_support/Images/ci-logo.gif
deleted
100644 → 0

1.8 KB
tests/_support/Images/ci-logo.jpeg
deleted
100644 → 0

7.36 KB
tests/_support/Images/ci-logo.png
deleted
100644 → 0

4.43 KB
tests/_support/Images/ci-logo.webp
deleted
100644 → 0
No preview for this file type
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Language/ab/Allin.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Allin.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Core.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/Foo.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Language/en/More.php
deleted
100644 → 0
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.
tests/_support/Models/EventModel.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/Models/JobModel.php
deleted
100644 → 0
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/UserModel.php
deleted
100644 → 0
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/ValidModel.php
deleted
100644 → 0
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/RESTful/Worker.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/RESTful/Worker2.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/Services.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
tests/_support/SomeEntity.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
No preview for this file type
tests/_support/View/SampleClass.php
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
tests/_support/View/Views/simple.php
deleted
100644 → 0
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.
writable/.htaccess
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
writable/cache/index.html
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
writable/debugbar/.gitkeep
deleted
100644 → 0
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.
writable/logs/index.html
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
writable/logs/log-2022-02-07.log
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
writable/session/index.html
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
writable/uploads/index.html
deleted
100644 → 0
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment