├── .gitignore ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Database.php │ ├── DocTypes.php │ ├── Events.php │ ├── Exceptions.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Honeypot.php │ ├── Images.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Routes.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── BaseController.php │ └── Home.php ├── Database │ ├── Migrations │ │ └── .gitkeep │ └── Seeds │ │ └── .gitkeep ├── Filters │ └── .gitkeep ├── Helpers │ ├── .gitkeep │ └── string_helper.php ├── Language │ └── .gitkeep ├── Libraries │ └── .gitkeep ├── Models │ ├── .gitkeep │ ├── BaseModel.php │ ├── Concerns │ │ ├── GuardsAttributes.php │ │ ├── HasAttributes.php │ │ ├── HasRelations.php │ │ └── HidesAttributes.php │ ├── Relation │ │ ├── BelongsTo.php │ │ ├── BelongsToMany.php │ │ ├── Concerns │ │ │ ├── AsPivot.php │ │ │ ├── InteractsWithPivotTable.php │ │ │ └── SupportsDefaultModels.php │ │ ├── HasMany.php │ │ ├── HasManyThrough.php │ │ ├── HasOne.php │ │ ├── HasOneOrMany.php │ │ ├── Pivot.php │ │ └── Relation.php │ └── RelationNotFoundException.php ├── Support │ └── Traits │ │ └── ForwardsCalls.php ├── ThirdParty │ └── .gitkeep ├── Views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ └── welcome_message.php └── index.html ├── composer.json ├── composer.lock ├── contributing.md ├── env ├── license.txt ├── phpunit.xml.dist ├── public ├── .htaccess ├── favicon.ico ├── index.php └── robots.txt ├── spark ├── tests ├── README.md └── _support │ ├── Autoloader │ └── UnnamespacedClass.php │ ├── CIDatabaseTestCase.php │ ├── CIUnitTestCase.php │ ├── Cache │ └── Handlers │ │ └── MockHandler.php │ ├── Commands │ ├── AbstractInfo.php │ ├── AppInfo.php │ └── CommandsTestStreamFilter.php │ ├── Config │ ├── BadRegistrar.php │ ├── MockAppConfig.php │ ├── MockAutoload.php │ ├── MockCLIConfig.php │ ├── MockLogger.php │ ├── MockServices.php │ ├── Registrar.php │ └── Routes.php │ ├── Controllers │ └── Popcorn.php │ ├── Database │ ├── Migrations │ │ └── 20160428212500_Create_test_tables.php │ ├── MockBuilder.php │ ├── MockConnection.php │ ├── MockQuery.php │ ├── MockResult.php │ ├── MockTestClass.php │ ├── Seeds │ │ └── CITestSeeder.php │ └── SupportMigrations │ │ └── 001_Some_migration.php │ ├── Events │ └── MockEvents.php │ ├── Files │ ├── able │ │ ├── apple.php │ │ ├── fig_3.php │ │ └── prune_ripe.php │ └── baker │ │ └── banana.php │ ├── HTTP │ ├── Files │ │ ├── CookiesHolder.txt │ │ └── tmp │ │ │ ├── fileA.txt │ │ │ └── fileB.txt │ ├── MockCURLRequest.php │ ├── MockIncomingRequest.php │ └── MockResponse.php │ ├── Images │ ├── EXIFsamples │ │ ├── down-mirrored.jpg │ │ ├── down.jpg │ │ ├── left-mirrored.jpg │ │ ├── left.jpg │ │ ├── right-mirrored.jpg │ │ ├── right.jpg │ │ ├── up-mirrored.jpg │ │ └── up.jpg │ ├── Steveston_dusk.JPG │ ├── ci-logo.gif │ ├── ci-logo.jpeg │ └── ci-logo.png │ ├── Language │ ├── MockLanguage.php │ ├── SecondMockLanguage.php │ ├── ab-CD │ │ └── Allin.php │ ├── ab │ │ └── Allin.php │ ├── en-ZZ │ │ └── More.php │ ├── en │ │ ├── Allin.php │ │ ├── Core.php │ │ └── More.php │ └── ru │ │ └── Language.php │ ├── Log │ ├── Handlers │ │ ├── MockChromeHandler.php │ │ ├── MockFileHandler.php │ │ └── TestHandler.php │ └── TestLogger.php │ ├── MockCodeIgniter.php │ ├── MockCommon.php │ ├── Models │ ├── EntityModel.php │ ├── EventModel.php │ ├── JobModel.php │ ├── SecondaryModel.php │ ├── SimpleEntity.php │ ├── UserModel.php │ ├── ValidErrorsModel.php │ └── ValidModel.php │ ├── Security │ └── MockSecurity.php │ ├── Services.php │ ├── Session │ └── MockSession.php │ ├── SomeEntity.php │ ├── Validation │ ├── TestRules.php │ └── uploads │ │ └── phpUxc0ty │ ├── View │ ├── MockTable.php │ ├── SampleClass.php │ └── Views │ │ ├── simple.php │ │ └── simpler.php │ ├── _bootstrap.php │ └── coverage.txt └── writable ├── .htaccess ├── cache └── index.html ├── debugbar └── .gitkeep ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/README.md -------------------------------------------------------------------------------- /app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/.htaccess -------------------------------------------------------------------------------- /app/Config/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/App.php -------------------------------------------------------------------------------- /app/Config/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Autoload.php -------------------------------------------------------------------------------- /app/Config/Boot/development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Boot/development.php -------------------------------------------------------------------------------- /app/Config/Boot/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Boot/production.php -------------------------------------------------------------------------------- /app/Config/Boot/testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Boot/testing.php -------------------------------------------------------------------------------- /app/Config/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Cache.php -------------------------------------------------------------------------------- /app/Config/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Constants.php -------------------------------------------------------------------------------- /app/Config/ContentSecurityPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/ContentSecurityPolicy.php -------------------------------------------------------------------------------- /app/Config/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Database.php -------------------------------------------------------------------------------- /app/Config/DocTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/DocTypes.php -------------------------------------------------------------------------------- /app/Config/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Events.php -------------------------------------------------------------------------------- /app/Config/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Exceptions.php -------------------------------------------------------------------------------- /app/Config/Filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Filters.php -------------------------------------------------------------------------------- /app/Config/ForeignCharacters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/ForeignCharacters.php -------------------------------------------------------------------------------- /app/Config/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Format.php -------------------------------------------------------------------------------- /app/Config/Honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Honeypot.php -------------------------------------------------------------------------------- /app/Config/Images.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Images.php -------------------------------------------------------------------------------- /app/Config/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Logger.php -------------------------------------------------------------------------------- /app/Config/Migrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Migrations.php -------------------------------------------------------------------------------- /app/Config/Mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Mimes.php -------------------------------------------------------------------------------- /app/Config/Modules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Modules.php -------------------------------------------------------------------------------- /app/Config/Pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Pager.php -------------------------------------------------------------------------------- /app/Config/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Paths.php -------------------------------------------------------------------------------- /app/Config/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Routes.php -------------------------------------------------------------------------------- /app/Config/Services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Services.php -------------------------------------------------------------------------------- /app/Config/Toolbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Toolbar.php -------------------------------------------------------------------------------- /app/Config/UserAgents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/UserAgents.php -------------------------------------------------------------------------------- /app/Config/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/Validation.php -------------------------------------------------------------------------------- /app/Config/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Config/View.php -------------------------------------------------------------------------------- /app/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Controllers/Home.php -------------------------------------------------------------------------------- /app/Database/Migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Database/Seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Filters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Helpers/string_helper.php -------------------------------------------------------------------------------- /app/Language/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Libraries/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/BaseModel.php -------------------------------------------------------------------------------- /app/Models/Concerns/GuardsAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Concerns/GuardsAttributes.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Concerns/HasAttributes.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasRelations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Concerns/HasRelations.php -------------------------------------------------------------------------------- /app/Models/Concerns/HidesAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Concerns/HidesAttributes.php -------------------------------------------------------------------------------- /app/Models/Relation/BelongsTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/BelongsTo.php -------------------------------------------------------------------------------- /app/Models/Relation/BelongsToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/BelongsToMany.php -------------------------------------------------------------------------------- /app/Models/Relation/Concerns/AsPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/Concerns/AsPivot.php -------------------------------------------------------------------------------- /app/Models/Relation/Concerns/InteractsWithPivotTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/Concerns/InteractsWithPivotTable.php -------------------------------------------------------------------------------- /app/Models/Relation/Concerns/SupportsDefaultModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/Concerns/SupportsDefaultModels.php -------------------------------------------------------------------------------- /app/Models/Relation/HasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/HasMany.php -------------------------------------------------------------------------------- /app/Models/Relation/HasManyThrough.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/HasManyThrough.php -------------------------------------------------------------------------------- /app/Models/Relation/HasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/HasOne.php -------------------------------------------------------------------------------- /app/Models/Relation/HasOneOrMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/HasOneOrMany.php -------------------------------------------------------------------------------- /app/Models/Relation/Pivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/Pivot.php -------------------------------------------------------------------------------- /app/Models/Relation/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/Relation/Relation.php -------------------------------------------------------------------------------- /app/Models/RelationNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Models/RelationNotFoundException.php -------------------------------------------------------------------------------- /app/Support/Traits/ForwardsCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Support/Traits/ForwardsCalls.php -------------------------------------------------------------------------------- /app/ThirdParty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/cli/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/cli/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/cli/production.php -------------------------------------------------------------------------------- /app/Views/errors/html/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/html/debug.css -------------------------------------------------------------------------------- /app/Views/errors/html/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/html/debug.js -------------------------------------------------------------------------------- /app/Views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/html/error_404.php -------------------------------------------------------------------------------- /app/Views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/html/error_exception.php -------------------------------------------------------------------------------- /app/Views/errors/html/production.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/errors/html/production.php -------------------------------------------------------------------------------- /app/Views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/Views/welcome_message.php -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/app/index.html -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/composer.lock -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/contributing.md -------------------------------------------------------------------------------- /env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/env -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/license.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /spark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/spark -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/_support/Autoloader/UnnamespacedClass.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_support/View/Views/simpler.php: -------------------------------------------------------------------------------- 1 |

{testString}

-------------------------------------------------------------------------------- /tests/_support/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/tests/_support/_bootstrap.php -------------------------------------------------------------------------------- /tests/_support/coverage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/tests/_support/coverage.txt -------------------------------------------------------------------------------- /writable/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/writable/.htaccess -------------------------------------------------------------------------------- /writable/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/writable/cache/index.html -------------------------------------------------------------------------------- /writable/debugbar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /writable/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/writable/logs/index.html -------------------------------------------------------------------------------- /writable/session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/writable/session/index.html -------------------------------------------------------------------------------- /writable/uploads/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hlohrenz/CI4-Relationship-Query-Builder/HEAD/writable/uploads/index.html --------------------------------------------------------------------------------