Initial commit
parents
Showing
with
4105 additions
and
0 deletions
.env
0 → 100644
LICENSE
0 → 100644
README.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/Session.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/Controllers/Pages.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/pages/home.php
0 → 100644
app/Views/pages/login.php
0 → 100644
app/Views/templates/footer.php
0 → 100644
app/Views/templates/header.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/framework", | ||
| "type": "project", | ||
| "description": "The CodeIgniter framework v4", | ||
| "homepage": "https://codeigniter.com", | ||
| "license": "MIT", | ||
| "require": { | ||
| "php": "^7.4 || ^8.0", | ||
| "ext-intl": "*", | ||
| "ext-json": "*", | ||
| "ext-mbstring": "*", | ||
| "laminas/laminas-escaper": "^2.9", | ||
| "psr/log": "^1.1" | ||
| }, | ||
| "require-dev": { | ||
| "kint-php/kint": "^5.0.1", | ||
| "codeigniter/coding-standard": "^1.5", | ||
| "fakerphp/faker": "^1.9", | ||
| "friendsofphp/php-cs-fixer": "3.13.0", | ||
| "mikey179/vfsstream": "^1.6", | ||
| "nexusphp/cs-config": "^3.6", | ||
| "phpunit/phpunit": "^9.1", | ||
| "predis/predis": "^1.1 || ^2.0" | ||
| }, | ||
| "suggest": { | ||
| "ext-curl": "If you use CURLRequest class", | ||
| "ext-imagick": "If you use Image class ImageMagickHandler", | ||
| "ext-gd": "If you use Image class GDHandler", | ||
| "ext-exif": "If you run Image class tests", | ||
| "ext-simplexml": "If you format XML", | ||
| "ext-mysqli": "If you use MySQL", | ||
| "ext-oci8": "If you use Oracle Database", | ||
| "ext-pgsql": "If you use PostgreSQL", | ||
| "ext-sqlsrv": "If you use SQL Server", | ||
| "ext-sqlite3": "If you use SQLite3", | ||
| "ext-memcache": "If you use Cache class MemcachedHandler with Memcache", | ||
| "ext-memcached": "If you use Cache class MemcachedHandler with Memcached", | ||
| "ext-redis": "If you use Cache class RedisHandler", | ||
| "ext-dom": "If you use TestResponse", | ||
| "ext-libxml": "If you use TestResponse", | ||
| "ext-xdebug": "If you use CIUnitTestCase::assertHeaderEmitted()", | ||
| "ext-fileinfo": "Improves mime type detection for files", | ||
| "ext-readline": "Improves CLI::input() usability" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "CodeIgniter\\": "system/" | ||
| }, | ||
| "exclude-from-classmap": [ | ||
| "**/Database/Migrations/**" | ||
| ] | ||
| }, | ||
| "scripts": { | ||
| "post-update-cmd": [ | ||
| "CodeIgniter\\ComposerScripts::postUpdate" | ||
| ], | ||
| "test": "phpunit" | ||
| }, | ||
| "support": { | ||
| "forum": "https://forum.codeigniter.com/", | ||
| "source": "https://github.com/codeigniter4/CodeIgniter4", | ||
| "slack": "https://codeigniterchat.slack.com" | ||
| } | ||
| } |
desktop.ini
0 → 100644
doc/Wa2Eat_interfaz.pdf
0 → 100644
No preview for this file type
doc/entidadRelacion.png
0 → 100644
85.9 KB
env
0 → 100644
phpunit.xml.dist
0 → 100644
preload.php
0 → 100644
public/.htaccess
0 → 100644
public/bootstrap/css/bootstrap-grid.css
0 → 100644
This diff is collapsed.
Click to expand it.
public/bootstrap/css/bootstrap-grid.css.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap-grid.min.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap-grid.rtl.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap-reboot.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
public/bootstrap/css/bootstrap-utilities.css
0 → 100644
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.css
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.css.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.min.css
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.min.css.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.rtl.css
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.rtl.css.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/css/bootstrap.rtl.min.css
0 → 100644
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.bundle.js
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.bundle.js.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.bundle.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.esm.js
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.esm.js.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.esm.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/bootstrap/js/bootstrap.esm.min.js.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.js
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.js.map
0 → 100644
This diff could not be displayed because it is too large.
public/bootstrap/js/bootstrap.min.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/bootstrap/js/bootstrap.min.js.map
0 → 100644
This diff could not be displayed because it is too large.
public/css/login.css
0 → 100644
This diff is collapsed.
Click to expand it.
public/favicon.ico
0 → 100644
No preview for this file type
public/iconos/apple.ico
0 → 100644
No preview for this file type
public/iconos/facebook.ico
0 → 100644
No preview for this file type
public/iconos/google.ico
0 → 100644
No preview for this file type
public/imagenes/logo.png
0 → 100644
81.2 KB
public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
public/js/login.js
0 → 100644
This diff is collapsed.
Click to expand it.
public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
spark
0 → 100644
This diff is collapsed.
Click to expand it.
system/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
system/API/ResponseTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Autoloader/Autoloader.php
0 → 100644
This diff is collapsed.
Click to expand it.
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
This diff is collapsed.
Click to expand it.
system/CLI/CLI.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/CLI/Commands.php
0 → 100644
This diff is collapsed.
Click to expand it.
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/Database/ShowTableInfo.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.
system/Commands/Generators/CellGenerator.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.
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/FilterCheck.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.
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/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/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/OCI8/Builder.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/OCI8/Connection.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/OCI8/Forge.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/OCI8/PreparedQuery.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/OCI8/Result.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Database/OCI8/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/RawSql.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/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/IntBoolCast.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/HTTPExceptionInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Exceptions/HasExitCodeInterface.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/OutgoingRequest.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/HTTP/OutgoingRequestInterface.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/kint_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/I18n/TimeLegacy.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/I18n/TimeTrait.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/Errors.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.
system/Publisher/ContentReplacer.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.
system/Router/AutoRouter.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/AutoRouterImproved.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Router/AutoRouterInterface.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.
This diff is collapsed.
Click to expand it.
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/ConfigFromArrayTrait.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/PhpStreamWrapper.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/StreamFilterTrait.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/FacadeInterface.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/EnumPlugin.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/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.
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.
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
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.
system/ThirdParty/Kint/Zval/EnumValue.php
0 → 100644
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.
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/Traits/ConditionalTrait.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/Traits/PropertiesTrait.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.
This diff is collapsed.
Click to expand it.
system/Validation/StrictRules/FileRules.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
system/Validation/StrictRules/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/Cells/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/View/ViewDecoratorInterface.php
0 → 100644
This diff is collapsed.
Click to expand it.
system/View/ViewDecoratorTrait.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/README.md
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/Libraries/ConfigReader.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/_support/Models/ExampleModel.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/database/ExampleDatabaseTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/session/ExampleSessionTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/HealthTest.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.
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.
writable/logs/index.html
0 → 100644
This diff is collapsed.
Click to expand it.
writable/logs/log-2023-03-06.log
0 → 100644
This diff is collapsed.
Click to expand it.
writable/logs/log-2023-03-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