├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── docs ├── .htaccess ├── classes │ ├── Lqdt.Coj.Model.Behavior.JsonBehavior.html │ ├── Lqdt.Coj.Model.Entity.JsonTrait.html │ ├── Lqdt.Coj.ORM.JsonQuery.html │ ├── Lqdt.Coj.Plugin.html │ ├── Lqdt.OrmJson.DatField.Compat3x.html │ ├── Lqdt.OrmJson.DatField.Exception.MissingPathInDataDatFieldException.html │ ├── Lqdt.OrmJson.DatField.Exception.UnparsableDatFieldException.html │ ├── Lqdt.OrmJson.Database.DatFieldDriverInterface.html │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlJoinTrait.html │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlOrderTrait.html │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlSelectTrait.html │ ├── Lqdt.OrmJson.Database.Dialect.DatFieldMysqlWhereTrait.html │ ├── Lqdt.OrmJson.Database.Driver.DatFieldMysql.html │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchema.html │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaInterface.html │ ├── Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaTrait.html │ ├── Lqdt.OrmJson.Model.Behavior.JsonBehavior.html │ ├── Lqdt.OrmJson.Model.Entity.DatFieldTrait.html │ ├── Lqdt.OrmJson.Model.Entity.JsonTrait.html │ ├── Lqdt.OrmJson.ORM.Association.DatFieldBelongsTo.html │ ├── Lqdt.OrmJson.ORM.Association.DatFieldBelongsToMany.html │ ├── Lqdt.OrmJson.ORM.Association.DatFieldHasMany.html │ ├── Lqdt.OrmJson.ORM.Association.DatFieldHasOne.html │ ├── Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectLoader.html │ ├── Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectWithPivotLoader.html │ ├── Lqdt.OrmJson.ORM.JsonQuery.html │ ├── Lqdt.OrmJson.PHPStan.CurlyDatFieldNotation.html │ └── Lqdt.OrmJson.Plugin.html ├── css │ ├── bootstrap-combined.no-icons.min.css │ ├── font-awesome.min.css │ ├── jquery.iviewer.css │ ├── phpdocumentor-clean-icons │ │ ├── Read Me.txt │ │ ├── fonts │ │ │ ├── phpdocumentor-clean-icons.dev.svg │ │ │ ├── phpdocumentor-clean-icons.eot │ │ │ ├── phpdocumentor-clean-icons.svg │ │ │ ├── phpdocumentor-clean-icons.ttf │ │ │ └── phpdocumentor-clean-icons.woff │ │ ├── lte-ie7.js │ │ └── style.css │ ├── prism.css │ └── template.css ├── files │ ├── DatField.Compat3x.html │ ├── DatField.DatFieldParserTrait.html │ ├── DatField.Exception.MissingPathInDataDatFieldException.html │ ├── DatField.Exception.UnparsableDatFieldException.html │ ├── DatField │ │ ├── Compat3x.php.txt │ │ ├── DatFieldParserTrait.php.txt │ │ └── Exception │ │ │ ├── MissingPathInDataDatFieldException.php.txt │ │ │ └── UnparsableDatFieldException.php.txt │ ├── Database.DatFieldDriverInterface.html │ ├── Database.Dialect.DatFieldMysqlJoinTrait.html │ ├── Database.Dialect.DatFieldMysqlOrderTrait.html │ ├── Database.Dialect.DatFieldMysqlSelectTrait.html │ ├── Database.Dialect.DatFieldMysqlWhereTrait.html │ ├── Database.Driver.DatFieldMysql.html │ ├── Database.Driver.DatFieldSqlDialectTrait.html │ ├── Database.Expression.DatFieldExpression.html │ ├── Database.JsonTypeMap.html │ ├── Database.Schema.DatFieldTableSchema.html │ ├── Database.Schema.DatFieldTableSchemaInterface.html │ ├── Database.Schema.DatFieldTableSchemaTrait.html │ ├── Database │ │ ├── DatFieldDriverInterface.php.txt │ │ ├── Dialect │ │ │ ├── DatFieldMysqlJoinTrait.php.txt │ │ │ ├── DatFieldMysqlOrderTrait.php.txt │ │ │ ├── DatFieldMysqlSelectTrait.php.txt │ │ │ └── DatFieldMysqlWhereTrait.php.txt │ │ ├── Driver │ │ │ ├── DatFieldMysql.php.txt │ │ │ └── DatFieldSqlDialectTrait.php.txt │ │ ├── Expression │ │ │ └── DatFieldExpression.php.txt │ │ ├── JsonTypeMap.php.txt │ │ └── Schema │ │ │ ├── DatFieldTableSchema.php.txt │ │ │ ├── DatFieldTableSchemaInterface.php.txt │ │ │ └── DatFieldTableSchemaTrait.php.txt │ ├── Model.Behavior.DatFieldBehavior.html │ ├── Model.Behavior.JsonBehavior.html │ ├── Model.Entity.DatFieldTrait.html │ ├── Model.Entity.JsonTrait.html │ ├── Model │ │ ├── Behavior │ │ │ ├── DatFieldBehavior.php.txt │ │ │ └── JsonBehavior.php.txt │ │ └── Entity │ │ │ ├── DatFieldTrait.php.txt │ │ │ └── JsonTrait.php.txt │ ├── ORM.Association.DatFieldBelongsTo.html │ ├── ORM.Association.DatFieldBelongsToMany.html │ ├── ORM.Association.DatFieldHasMany.html │ ├── ORM.Association.DatFieldHasOne.html │ ├── ORM.Association.Loader.DatFieldSelectLoader.html │ ├── ORM.Association.Loader.DatFieldSelectWithPivotLoader.html │ ├── ORM.DatFieldAwareTrait.html │ ├── ORM.JsonQuery.html │ ├── ORM │ │ ├── Association │ │ │ ├── DatFieldBelongsTo.php.txt │ │ │ ├── DatFieldBelongsToMany.php.txt │ │ │ ├── DatFieldHasMany.php.txt │ │ │ ├── DatFieldHasOne.php.txt │ │ │ └── Loader │ │ │ │ ├── DatFieldSelectLoader.php.txt │ │ │ │ └── DatFieldSelectWithPivotLoader.php.txt │ │ ├── DatFieldAwareTrait.php.txt │ │ └── JsonQuery.php.txt │ ├── PHPStan.CurlyDatFieldNotation.html │ ├── PHPStan.DatFieldProperty.html │ ├── PHPStan │ │ ├── CurlyDatFieldNotation.php.txt │ │ └── DatFieldProperty.php.txt │ ├── Plugin.html │ ├── Plugin.php.txt │ ├── Utility.DatField.html │ └── Utility │ │ └── DatField.php.txt ├── font │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── graphs │ └── class.html ├── images │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon.png │ ├── custom-icons.svg │ ├── favicon.ico │ ├── hierarchy-item.png │ ├── icon-class-13x13.png │ ├── icon-class.svg │ ├── icon-interface-13x13.png │ ├── icon-interface.svg │ ├── icon-trait-13x13.png │ ├── icon-trait.svg │ └── iviewer │ │ ├── grab.cur │ │ ├── hand.cur │ │ ├── iviewer.rotate_left.png │ │ ├── iviewer.rotate_right.png │ │ ├── iviewer.zoom_fit.png │ │ ├── iviewer.zoom_in.png │ │ ├── iviewer.zoom_out.png │ │ └── iviewer.zoom_zero.png ├── index.html ├── js │ ├── bootstrap.min.js │ ├── html5.js │ ├── jquery-1.11.0.min.js │ ├── jquery.dotdotdot-1.5.9.js │ ├── jquery.dotdotdot-1.5.9.min.js │ ├── jquery.iviewer.js │ ├── jquery.iviewer.min.js │ ├── jquery.mousewheel.js │ ├── jquery.smooth-scroll.js │ ├── prism.min.js │ └── ui │ │ └── 1.10.4 │ │ └── jquery-ui.min.js ├── namespaces │ ├── Lqdt.Coj.Model.Behavior.html │ ├── Lqdt.Coj.Model.Entity.html │ ├── Lqdt.Coj.Model.html │ ├── Lqdt.Coj.ORM.html │ ├── Lqdt.Coj.html │ ├── Lqdt.OrmJson.DatField.Exception.html │ ├── Lqdt.OrmJson.DatField.html │ ├── Lqdt.OrmJson.Database.Dialect.html │ ├── Lqdt.OrmJson.Database.Driver.html │ ├── Lqdt.OrmJson.Database.Schema.html │ ├── Lqdt.OrmJson.Database.html │ ├── Lqdt.OrmJson.Model.Behavior.html │ ├── Lqdt.OrmJson.Model.Entity.html │ ├── Lqdt.OrmJson.Model.html │ ├── Lqdt.OrmJson.ORM.Association.Loader.html │ ├── Lqdt.OrmJson.ORM.Association.html │ ├── Lqdt.OrmJson.ORM.html │ ├── Lqdt.OrmJson.PHPStan.html │ ├── Lqdt.OrmJson.html │ ├── Lqdt.html │ └── default.html ├── phpdoc-cache-06 │ └── phpdoc-cache-file_2d6443d56e20bfa1edb0c581067dee0e.dat ├── phpdoc-cache-1e │ └── phpdoc-cache-file_6081ea489963a260141016d07dac721f.dat ├── phpdoc-cache-2e │ └── phpdoc-cache-settings.dat ├── phpdoc-cache-37 │ └── phpdoc-cache-file_21bd20a182301fd24eb66dcd173ef906.dat ├── phpdoc-cache-3a │ └── phpdoc-cache-file_00c0e72557a35c8fa1c205e6d170833e.dat ├── phpdoc-cache-3f │ └── phpdoc-cache-file_46eed913e2bf77c8e04a611ad4799635.dat ├── phpdoc-cache-47 │ └── phpdoc-cache-file_b15a7989a134b7cfaee83e83a80791a4.dat ├── phpdoc-cache-4d │ └── phpdoc-cache-file_f72e9e5996bcb1406ebc264d9afd4de2.dat ├── phpdoc-cache-54 │ └── phpdoc-cache-file_f991a07b6172e9843e855dcc0f238625.dat ├── phpdoc-cache-59 │ └── phpdoc-cache-file_ff747fc988f6f6b4d34746990f3ec7f7.dat ├── phpdoc-cache-5d │ └── phpdoc-cache-file_037df2decc9fa16fd6c809d58596a12a.dat ├── phpdoc-cache-63 │ └── phpdoc-cache-file_2e22c00487baa1bfbeb88650f6dd70b1.dat ├── phpdoc-cache-7a │ └── phpdoc-cache-file_57591cb5dab34f85fc4ada753f5fd7f2.dat ├── phpdoc-cache-8d │ └── phpdoc-cache-file_42d612f600d1a4ea4e4a6e5e26b3c753.dat ├── phpdoc-cache-98 │ └── phpdoc-cache-file_85c12ddd0d166198a29ca7cb59e3846c.dat ├── phpdoc-cache-a1 │ └── phpdoc-cache-file_99ed7baf06abe9501dc5953649ff3370.dat ├── phpdoc-cache-a3 │ └── phpdoc-cache-file_d213d482564b6755dded1b9c4a996b13.dat ├── phpdoc-cache-a9 │ └── phpdoc-cache-file_e27f4a749b2ca71529ce9e6f4582868c.dat ├── phpdoc-cache-b2 │ └── phpdoc-cache-file_7005b80973e0623d5dd8859e5e3b6cf4.dat ├── phpdoc-cache-bf │ └── phpdoc-cache-file_eabba0f10285cf3550eca80f8bb95615.dat ├── phpdoc-cache-c7 │ └── phpdoc-cache-file_6089e35b66825b439f18ff2c8f680cd8.dat ├── phpdoc-cache-c8 │ └── phpdoc-cache-file_b48696c39c4c91a2fd3e93213ca642e0.dat ├── phpdoc-cache-e0 │ ├── phpdoc-cache-file_49f062a40ccec9f8b0daa6987d73fa31.dat │ └── phpdoc-cache-file_5e736f0fbd210fdd5102d7f2cafdfc7a.dat ├── phpdoc-cache-f2 │ └── phpdoc-cache-file_99114ccc5dac599619d838cf8b492e2f.dat └── reports │ ├── deprecated.html │ ├── errors.html │ └── markers.html ├── phpcs.xml ├── phpstan.neon.dist ├── phpunit.compat.xml.dist ├── phpunit.coverage.xml.dist ├── phpunit.xml.dist ├── src ├── DatField │ ├── Compat3x.php │ ├── DatFieldParserTrait.php │ └── Exception │ │ ├── MissingPathInDataDatFieldException.php │ │ └── UnparsableDatFieldException.php ├── Database │ ├── DatFieldDriverInterface.php │ ├── Driver │ │ ├── DatFieldMysql.php │ │ └── DatFieldSqlDialectTrait.php │ ├── Expression │ │ └── DatFieldExpression.php │ ├── JsonTypeMap.php │ └── Schema │ │ ├── DatFieldTableSchema.php │ │ ├── DatFieldTableSchemaInterface.php │ │ └── DatFieldTableSchemaTrait.php ├── Model │ ├── Behavior │ │ └── DatFieldBehavior.php │ └── Entity │ │ └── DatFieldTrait.php ├── ORM │ ├── Association │ │ ├── DatFieldBelongsTo.php │ │ ├── DatFieldBelongsToMany.php │ │ ├── DatFieldHasMany.php │ │ ├── DatFieldHasOne.php │ │ └── Loader │ │ │ ├── DatFieldSelectLoader.php │ │ │ └── DatFieldSelectWithPivotLoader.php │ └── DatFieldAwareTrait.php ├── PHPStan │ ├── CurlyDatFieldNotation.php │ └── DatFieldProperty.php └── Plugin.php └── tests ├── Fixture ├── DataGenerator.php └── geolocation_data.sql ├── Model ├── DatFieldAware.php ├── DatFieldParser.php ├── Entity │ ├── Agent.php │ ├── Client.php │ ├── Contact.php │ ├── DatFieldEntity.php │ └── Relation.php └── Table │ ├── AgentsTable.php │ ├── AssignmentsTable.php │ ├── ClientsTable.php │ ├── ContactsTable.php │ ├── DatfieldBehaviorTable.php │ ├── DatfieldsTable.php │ ├── DriversTable.php │ ├── LocationsTable.php │ ├── ObjectsTable.php │ ├── RelationsTable.php │ └── VehiclesTable.php ├── StubTruncateDirtyTables.php ├── TestCase ├── Database │ ├── DatField │ │ └── DatFieldParserTraitTest.php │ └── Driver │ │ ├── BasicFilterTest.php │ │ ├── BasicInsertAndUpdateTest.php │ │ ├── BasicSelectTest.php │ │ ├── QuoteIdentifiersTest.php │ │ ├── TableAggregationsTest.php │ │ ├── TableFilterTest.php │ │ ├── TableFunctionsTest.php │ │ ├── TableOrderTableTest.php │ │ ├── TableSelectTest.php │ │ ├── TestCase.php │ │ └── TranslateDatFieldTest.php ├── Model │ ├── Behavior │ │ └── DatFieldBehaviorTest.php │ └── Entity │ │ └── DatFieldTraitTest.php ├── ORM │ ├── Association │ │ ├── BelongsToManyTest.php │ │ ├── BelongsToTest.php │ │ ├── HasManyTest.php │ │ └── HasOneTest.php │ └── DatFieldAwareTraitTest.php ├── PHPStan │ └── CurlyDatFieldNotationTest.php └── RealCase │ └── GeolocationTest.php ├── bootstrap.compat.php ├── bootstrap.php └── config ├── Migrations └── 1_DatabaseSetup.php └── common.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/composer.json -------------------------------------------------------------------------------- /docs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/.htaccess -------------------------------------------------------------------------------- /docs/classes/Lqdt.Coj.Model.Behavior.JsonBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.Coj.Model.Behavior.JsonBehavior.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.Coj.Model.Entity.JsonTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.Coj.Model.Entity.JsonTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.Coj.ORM.JsonQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.Coj.ORM.JsonQuery.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.Coj.Plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.Coj.Plugin.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.DatField.Compat3x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.DatField.Compat3x.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.DatField.Exception.MissingPathInDataDatFieldException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.DatField.Exception.MissingPathInDataDatFieldException.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.DatField.Exception.UnparsableDatFieldException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.DatField.Exception.UnparsableDatFieldException.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.DatFieldDriverInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.DatFieldDriverInterface.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlJoinTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlJoinTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlOrderTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlOrderTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlSelectTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlSelectTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlWhereTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Dialect.DatFieldMysqlWhereTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Driver.DatFieldMysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Driver.DatFieldMysql.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchema.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaInterface.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Database.Schema.DatFieldTableSchemaTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Model.Behavior.JsonBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Model.Behavior.JsonBehavior.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Model.Entity.DatFieldTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Model.Entity.DatFieldTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Model.Entity.JsonTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Model.Entity.JsonTrait.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldBelongsTo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldBelongsTo.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldBelongsToMany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldBelongsToMany.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldHasMany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldHasMany.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldHasOne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.DatFieldHasOne.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectLoader.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectWithPivotLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.Association.Loader.DatFieldSelectWithPivotLoader.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.ORM.JsonQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.ORM.JsonQuery.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.PHPStan.CurlyDatFieldNotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.PHPStan.CurlyDatFieldNotation.html -------------------------------------------------------------------------------- /docs/classes/Lqdt.OrmJson.Plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/classes/Lqdt.OrmJson.Plugin.html -------------------------------------------------------------------------------- /docs/css/bootstrap-combined.no-icons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/bootstrap-combined.no-icons.min.css -------------------------------------------------------------------------------- /docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/css/jquery.iviewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/jquery.iviewer.css -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/Read Me.txt -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.dev.svg -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.eot -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.svg -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.ttf -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/fonts/phpdocumentor-clean-icons.woff -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/lte-ie7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/lte-ie7.js -------------------------------------------------------------------------------- /docs/css/phpdocumentor-clean-icons/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/phpdocumentor-clean-icons/style.css -------------------------------------------------------------------------------- /docs/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/prism.css -------------------------------------------------------------------------------- /docs/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/css/template.css -------------------------------------------------------------------------------- /docs/files/DatField.Compat3x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField.Compat3x.html -------------------------------------------------------------------------------- /docs/files/DatField.DatFieldParserTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField.DatFieldParserTrait.html -------------------------------------------------------------------------------- /docs/files/DatField.Exception.MissingPathInDataDatFieldException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField.Exception.MissingPathInDataDatFieldException.html -------------------------------------------------------------------------------- /docs/files/DatField.Exception.UnparsableDatFieldException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField.Exception.UnparsableDatFieldException.html -------------------------------------------------------------------------------- /docs/files/DatField/Compat3x.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField/Compat3x.php.txt -------------------------------------------------------------------------------- /docs/files/DatField/DatFieldParserTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField/DatFieldParserTrait.php.txt -------------------------------------------------------------------------------- /docs/files/DatField/Exception/MissingPathInDataDatFieldException.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField/Exception/MissingPathInDataDatFieldException.php.txt -------------------------------------------------------------------------------- /docs/files/DatField/Exception/UnparsableDatFieldException.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/DatField/Exception/UnparsableDatFieldException.php.txt -------------------------------------------------------------------------------- /docs/files/Database.DatFieldDriverInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.DatFieldDriverInterface.html -------------------------------------------------------------------------------- /docs/files/Database.Dialect.DatFieldMysqlJoinTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Dialect.DatFieldMysqlJoinTrait.html -------------------------------------------------------------------------------- /docs/files/Database.Dialect.DatFieldMysqlOrderTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Dialect.DatFieldMysqlOrderTrait.html -------------------------------------------------------------------------------- /docs/files/Database.Dialect.DatFieldMysqlSelectTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Dialect.DatFieldMysqlSelectTrait.html -------------------------------------------------------------------------------- /docs/files/Database.Dialect.DatFieldMysqlWhereTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Dialect.DatFieldMysqlWhereTrait.html -------------------------------------------------------------------------------- /docs/files/Database.Driver.DatFieldMysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Driver.DatFieldMysql.html -------------------------------------------------------------------------------- /docs/files/Database.Driver.DatFieldSqlDialectTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Driver.DatFieldSqlDialectTrait.html -------------------------------------------------------------------------------- /docs/files/Database.Expression.DatFieldExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Expression.DatFieldExpression.html -------------------------------------------------------------------------------- /docs/files/Database.JsonTypeMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.JsonTypeMap.html -------------------------------------------------------------------------------- /docs/files/Database.Schema.DatFieldTableSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Schema.DatFieldTableSchema.html -------------------------------------------------------------------------------- /docs/files/Database.Schema.DatFieldTableSchemaInterface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Schema.DatFieldTableSchemaInterface.html -------------------------------------------------------------------------------- /docs/files/Database.Schema.DatFieldTableSchemaTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database.Schema.DatFieldTableSchemaTrait.html -------------------------------------------------------------------------------- /docs/files/Database/DatFieldDriverInterface.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/DatFieldDriverInterface.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Dialect/DatFieldMysqlJoinTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Dialect/DatFieldMysqlJoinTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Dialect/DatFieldMysqlOrderTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Dialect/DatFieldMysqlOrderTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Dialect/DatFieldMysqlSelectTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Dialect/DatFieldMysqlSelectTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Dialect/DatFieldMysqlWhereTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Dialect/DatFieldMysqlWhereTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Driver/DatFieldMysql.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Driver/DatFieldMysql.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Driver/DatFieldSqlDialectTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Driver/DatFieldSqlDialectTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Expression/DatFieldExpression.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Expression/DatFieldExpression.php.txt -------------------------------------------------------------------------------- /docs/files/Database/JsonTypeMap.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/JsonTypeMap.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Schema/DatFieldTableSchema.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Schema/DatFieldTableSchema.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Schema/DatFieldTableSchemaInterface.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Schema/DatFieldTableSchemaInterface.php.txt -------------------------------------------------------------------------------- /docs/files/Database/Schema/DatFieldTableSchemaTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Database/Schema/DatFieldTableSchemaTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Model.Behavior.DatFieldBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model.Behavior.DatFieldBehavior.html -------------------------------------------------------------------------------- /docs/files/Model.Behavior.JsonBehavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model.Behavior.JsonBehavior.html -------------------------------------------------------------------------------- /docs/files/Model.Entity.DatFieldTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model.Entity.DatFieldTrait.html -------------------------------------------------------------------------------- /docs/files/Model.Entity.JsonTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model.Entity.JsonTrait.html -------------------------------------------------------------------------------- /docs/files/Model/Behavior/DatFieldBehavior.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model/Behavior/DatFieldBehavior.php.txt -------------------------------------------------------------------------------- /docs/files/Model/Behavior/JsonBehavior.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model/Behavior/JsonBehavior.php.txt -------------------------------------------------------------------------------- /docs/files/Model/Entity/DatFieldTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model/Entity/DatFieldTrait.php.txt -------------------------------------------------------------------------------- /docs/files/Model/Entity/JsonTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Model/Entity/JsonTrait.php.txt -------------------------------------------------------------------------------- /docs/files/ORM.Association.DatFieldBelongsTo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.DatFieldBelongsTo.html -------------------------------------------------------------------------------- /docs/files/ORM.Association.DatFieldBelongsToMany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.DatFieldBelongsToMany.html -------------------------------------------------------------------------------- /docs/files/ORM.Association.DatFieldHasMany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.DatFieldHasMany.html -------------------------------------------------------------------------------- /docs/files/ORM.Association.DatFieldHasOne.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.DatFieldHasOne.html -------------------------------------------------------------------------------- /docs/files/ORM.Association.Loader.DatFieldSelectLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.Loader.DatFieldSelectLoader.html -------------------------------------------------------------------------------- /docs/files/ORM.Association.Loader.DatFieldSelectWithPivotLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.Association.Loader.DatFieldSelectWithPivotLoader.html -------------------------------------------------------------------------------- /docs/files/ORM.DatFieldAwareTrait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.DatFieldAwareTrait.html -------------------------------------------------------------------------------- /docs/files/ORM.JsonQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM.JsonQuery.html -------------------------------------------------------------------------------- /docs/files/ORM/Association/DatFieldBelongsTo.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/DatFieldBelongsTo.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/Association/DatFieldBelongsToMany.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/DatFieldBelongsToMany.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/Association/DatFieldHasMany.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/DatFieldHasMany.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/Association/DatFieldHasOne.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/DatFieldHasOne.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/Association/Loader/DatFieldSelectLoader.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/Loader/DatFieldSelectLoader.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/Association/Loader/DatFieldSelectWithPivotLoader.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/Association/Loader/DatFieldSelectWithPivotLoader.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/DatFieldAwareTrait.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/DatFieldAwareTrait.php.txt -------------------------------------------------------------------------------- /docs/files/ORM/JsonQuery.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/ORM/JsonQuery.php.txt -------------------------------------------------------------------------------- /docs/files/PHPStan.CurlyDatFieldNotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/PHPStan.CurlyDatFieldNotation.html -------------------------------------------------------------------------------- /docs/files/PHPStan.DatFieldProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/PHPStan.DatFieldProperty.html -------------------------------------------------------------------------------- /docs/files/PHPStan/CurlyDatFieldNotation.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/PHPStan/CurlyDatFieldNotation.php.txt -------------------------------------------------------------------------------- /docs/files/PHPStan/DatFieldProperty.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/PHPStan/DatFieldProperty.php.txt -------------------------------------------------------------------------------- /docs/files/Plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Plugin.html -------------------------------------------------------------------------------- /docs/files/Plugin.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Plugin.php.txt -------------------------------------------------------------------------------- /docs/files/Utility.DatField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Utility.DatField.html -------------------------------------------------------------------------------- /docs/files/Utility/DatField.php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/files/Utility/DatField.php.txt -------------------------------------------------------------------------------- /docs/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/font/FontAwesome.otf -------------------------------------------------------------------------------- /docs/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/graphs/class.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/graphs/class.html -------------------------------------------------------------------------------- /docs/images/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /docs/images/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /docs/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/images/custom-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/custom-icons.svg -------------------------------------------------------------------------------- /docs/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/favicon.ico -------------------------------------------------------------------------------- /docs/images/hierarchy-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/hierarchy-item.png -------------------------------------------------------------------------------- /docs/images/icon-class-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-class-13x13.png -------------------------------------------------------------------------------- /docs/images/icon-class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-class.svg -------------------------------------------------------------------------------- /docs/images/icon-interface-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-interface-13x13.png -------------------------------------------------------------------------------- /docs/images/icon-interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-interface.svg -------------------------------------------------------------------------------- /docs/images/icon-trait-13x13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-trait-13x13.png -------------------------------------------------------------------------------- /docs/images/icon-trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/icon-trait.svg -------------------------------------------------------------------------------- /docs/images/iviewer/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/grab.cur -------------------------------------------------------------------------------- /docs/images/iviewer/hand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/hand.cur -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.rotate_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.rotate_left.png -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.rotate_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.rotate_right.png -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.zoom_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.zoom_fit.png -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.zoom_in.png -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.zoom_out.png -------------------------------------------------------------------------------- /docs/images/iviewer/iviewer.zoom_zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/images/iviewer/iviewer.zoom_zero.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/html5.js -------------------------------------------------------------------------------- /docs/js/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /docs/js/jquery.dotdotdot-1.5.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.dotdotdot-1.5.9.js -------------------------------------------------------------------------------- /docs/js/jquery.dotdotdot-1.5.9.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.dotdotdot-1.5.9.min.js -------------------------------------------------------------------------------- /docs/js/jquery.iviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.iviewer.js -------------------------------------------------------------------------------- /docs/js/jquery.iviewer.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.iviewer.min.js -------------------------------------------------------------------------------- /docs/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /docs/js/jquery.smooth-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/jquery.smooth-scroll.js -------------------------------------------------------------------------------- /docs/js/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/prism.min.js -------------------------------------------------------------------------------- /docs/js/ui/1.10.4/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/js/ui/1.10.4/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.Coj.Model.Behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.Coj.Model.Behavior.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.Coj.Model.Entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.Coj.Model.Entity.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.Coj.Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.Coj.Model.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.Coj.ORM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.Coj.ORM.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.Coj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.Coj.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.DatField.Exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.DatField.Exception.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.DatField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.DatField.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Database.Dialect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Database.Dialect.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Database.Driver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Database.Driver.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Database.Schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Database.Schema.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Database.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Model.Behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Model.Behavior.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Model.Entity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Model.Entity.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.Model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.Model.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.ORM.Association.Loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.ORM.Association.Loader.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.ORM.Association.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.ORM.Association.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.ORM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.ORM.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.PHPStan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.PHPStan.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.OrmJson.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.OrmJson.html -------------------------------------------------------------------------------- /docs/namespaces/Lqdt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/Lqdt.html -------------------------------------------------------------------------------- /docs/namespaces/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/namespaces/default.html -------------------------------------------------------------------------------- /docs/phpdoc-cache-06/phpdoc-cache-file_2d6443d56e20bfa1edb0c581067dee0e.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-06/phpdoc-cache-file_2d6443d56e20bfa1edb0c581067dee0e.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-1e/phpdoc-cache-file_6081ea489963a260141016d07dac721f.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-1e/phpdoc-cache-file_6081ea489963a260141016d07dac721f.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-2e/phpdoc-cache-settings.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-2e/phpdoc-cache-settings.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-37/phpdoc-cache-file_21bd20a182301fd24eb66dcd173ef906.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-37/phpdoc-cache-file_21bd20a182301fd24eb66dcd173ef906.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-3a/phpdoc-cache-file_00c0e72557a35c8fa1c205e6d170833e.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-3a/phpdoc-cache-file_00c0e72557a35c8fa1c205e6d170833e.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-3f/phpdoc-cache-file_46eed913e2bf77c8e04a611ad4799635.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-3f/phpdoc-cache-file_46eed913e2bf77c8e04a611ad4799635.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-47/phpdoc-cache-file_b15a7989a134b7cfaee83e83a80791a4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-47/phpdoc-cache-file_b15a7989a134b7cfaee83e83a80791a4.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-4d/phpdoc-cache-file_f72e9e5996bcb1406ebc264d9afd4de2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-4d/phpdoc-cache-file_f72e9e5996bcb1406ebc264d9afd4de2.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-54/phpdoc-cache-file_f991a07b6172e9843e855dcc0f238625.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-54/phpdoc-cache-file_f991a07b6172e9843e855dcc0f238625.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-59/phpdoc-cache-file_ff747fc988f6f6b4d34746990f3ec7f7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-59/phpdoc-cache-file_ff747fc988f6f6b4d34746990f3ec7f7.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-5d/phpdoc-cache-file_037df2decc9fa16fd6c809d58596a12a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-5d/phpdoc-cache-file_037df2decc9fa16fd6c809d58596a12a.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-63/phpdoc-cache-file_2e22c00487baa1bfbeb88650f6dd70b1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-63/phpdoc-cache-file_2e22c00487baa1bfbeb88650f6dd70b1.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-7a/phpdoc-cache-file_57591cb5dab34f85fc4ada753f5fd7f2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-7a/phpdoc-cache-file_57591cb5dab34f85fc4ada753f5fd7f2.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-8d/phpdoc-cache-file_42d612f600d1a4ea4e4a6e5e26b3c753.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-8d/phpdoc-cache-file_42d612f600d1a4ea4e4a6e5e26b3c753.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-98/phpdoc-cache-file_85c12ddd0d166198a29ca7cb59e3846c.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-98/phpdoc-cache-file_85c12ddd0d166198a29ca7cb59e3846c.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-a1/phpdoc-cache-file_99ed7baf06abe9501dc5953649ff3370.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-a1/phpdoc-cache-file_99ed7baf06abe9501dc5953649ff3370.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-a3/phpdoc-cache-file_d213d482564b6755dded1b9c4a996b13.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-a3/phpdoc-cache-file_d213d482564b6755dded1b9c4a996b13.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-a9/phpdoc-cache-file_e27f4a749b2ca71529ce9e6f4582868c.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-a9/phpdoc-cache-file_e27f4a749b2ca71529ce9e6f4582868c.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-b2/phpdoc-cache-file_7005b80973e0623d5dd8859e5e3b6cf4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-b2/phpdoc-cache-file_7005b80973e0623d5dd8859e5e3b6cf4.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-bf/phpdoc-cache-file_eabba0f10285cf3550eca80f8bb95615.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-bf/phpdoc-cache-file_eabba0f10285cf3550eca80f8bb95615.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-c7/phpdoc-cache-file_6089e35b66825b439f18ff2c8f680cd8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-c7/phpdoc-cache-file_6089e35b66825b439f18ff2c8f680cd8.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-c8/phpdoc-cache-file_b48696c39c4c91a2fd3e93213ca642e0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-c8/phpdoc-cache-file_b48696c39c4c91a2fd3e93213ca642e0.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-e0/phpdoc-cache-file_49f062a40ccec9f8b0daa6987d73fa31.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-e0/phpdoc-cache-file_49f062a40ccec9f8b0daa6987d73fa31.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-e0/phpdoc-cache-file_5e736f0fbd210fdd5102d7f2cafdfc7a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-e0/phpdoc-cache-file_5e736f0fbd210fdd5102d7f2cafdfc7a.dat -------------------------------------------------------------------------------- /docs/phpdoc-cache-f2/phpdoc-cache-file_99114ccc5dac599619d838cf8b492e2f.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/phpdoc-cache-f2/phpdoc-cache-file_99114ccc5dac599619d838cf8b492e2f.dat -------------------------------------------------------------------------------- /docs/reports/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/reports/deprecated.html -------------------------------------------------------------------------------- /docs/reports/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/reports/errors.html -------------------------------------------------------------------------------- /docs/reports/markers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/docs/reports/markers.html -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.compat.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/phpunit.compat.xml.dist -------------------------------------------------------------------------------- /phpunit.coverage.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/phpunit.coverage.xml.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/DatField/Compat3x.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/DatField/Compat3x.php -------------------------------------------------------------------------------- /src/DatField/DatFieldParserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/DatField/DatFieldParserTrait.php -------------------------------------------------------------------------------- /src/DatField/Exception/MissingPathInDataDatFieldException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/DatField/Exception/MissingPathInDataDatFieldException.php -------------------------------------------------------------------------------- /src/DatField/Exception/UnparsableDatFieldException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/DatField/Exception/UnparsableDatFieldException.php -------------------------------------------------------------------------------- /src/Database/DatFieldDriverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/DatFieldDriverInterface.php -------------------------------------------------------------------------------- /src/Database/Driver/DatFieldMysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Driver/DatFieldMysql.php -------------------------------------------------------------------------------- /src/Database/Driver/DatFieldSqlDialectTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Driver/DatFieldSqlDialectTrait.php -------------------------------------------------------------------------------- /src/Database/Expression/DatFieldExpression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Expression/DatFieldExpression.php -------------------------------------------------------------------------------- /src/Database/JsonTypeMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/JsonTypeMap.php -------------------------------------------------------------------------------- /src/Database/Schema/DatFieldTableSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Schema/DatFieldTableSchema.php -------------------------------------------------------------------------------- /src/Database/Schema/DatFieldTableSchemaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Schema/DatFieldTableSchemaInterface.php -------------------------------------------------------------------------------- /src/Database/Schema/DatFieldTableSchemaTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Database/Schema/DatFieldTableSchemaTrait.php -------------------------------------------------------------------------------- /src/Model/Behavior/DatFieldBehavior.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Model/Behavior/DatFieldBehavior.php -------------------------------------------------------------------------------- /src/Model/Entity/DatFieldTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Model/Entity/DatFieldTrait.php -------------------------------------------------------------------------------- /src/ORM/Association/DatFieldBelongsTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/DatFieldBelongsTo.php -------------------------------------------------------------------------------- /src/ORM/Association/DatFieldBelongsToMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/DatFieldBelongsToMany.php -------------------------------------------------------------------------------- /src/ORM/Association/DatFieldHasMany.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/DatFieldHasMany.php -------------------------------------------------------------------------------- /src/ORM/Association/DatFieldHasOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/DatFieldHasOne.php -------------------------------------------------------------------------------- /src/ORM/Association/Loader/DatFieldSelectLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/Loader/DatFieldSelectLoader.php -------------------------------------------------------------------------------- /src/ORM/Association/Loader/DatFieldSelectWithPivotLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/Association/Loader/DatFieldSelectWithPivotLoader.php -------------------------------------------------------------------------------- /src/ORM/DatFieldAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/ORM/DatFieldAwareTrait.php -------------------------------------------------------------------------------- /src/PHPStan/CurlyDatFieldNotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/PHPStan/CurlyDatFieldNotation.php -------------------------------------------------------------------------------- /src/PHPStan/DatFieldProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/PHPStan/DatFieldProperty.php -------------------------------------------------------------------------------- /src/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/src/Plugin.php -------------------------------------------------------------------------------- /tests/Fixture/DataGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Fixture/DataGenerator.php -------------------------------------------------------------------------------- /tests/Fixture/geolocation_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Fixture/geolocation_data.sql -------------------------------------------------------------------------------- /tests/Model/DatFieldAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/DatFieldAware.php -------------------------------------------------------------------------------- /tests/Model/DatFieldParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/DatFieldParser.php -------------------------------------------------------------------------------- /tests/Model/Entity/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Entity/Agent.php -------------------------------------------------------------------------------- /tests/Model/Entity/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Entity/Client.php -------------------------------------------------------------------------------- /tests/Model/Entity/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Entity/Contact.php -------------------------------------------------------------------------------- /tests/Model/Entity/DatFieldEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Entity/DatFieldEntity.php -------------------------------------------------------------------------------- /tests/Model/Entity/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Entity/Relation.php -------------------------------------------------------------------------------- /tests/Model/Table/AgentsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/AgentsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/AssignmentsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/AssignmentsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/ClientsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/ClientsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/ContactsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/ContactsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/DatfieldBehaviorTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/DatfieldBehaviorTable.php -------------------------------------------------------------------------------- /tests/Model/Table/DatfieldsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/DatfieldsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/DriversTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/DriversTable.php -------------------------------------------------------------------------------- /tests/Model/Table/LocationsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/LocationsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/ObjectsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/ObjectsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/RelationsTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/RelationsTable.php -------------------------------------------------------------------------------- /tests/Model/Table/VehiclesTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/Model/Table/VehiclesTable.php -------------------------------------------------------------------------------- /tests/StubTruncateDirtyTables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/StubTruncateDirtyTables.php -------------------------------------------------------------------------------- /tests/TestCase/Database/DatField/DatFieldParserTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/DatField/DatFieldParserTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/BasicFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/BasicFilterTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/BasicInsertAndUpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/BasicInsertAndUpdateTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/BasicSelectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/BasicSelectTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/QuoteIdentifiersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/QuoteIdentifiersTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TableAggregationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TableAggregationsTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TableFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TableFilterTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TableFunctionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TableFunctionsTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TableOrderTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TableOrderTableTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TableSelectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TableSelectTest.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TestCase.php -------------------------------------------------------------------------------- /tests/TestCase/Database/Driver/TranslateDatFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Database/Driver/TranslateDatFieldTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Behavior/DatFieldBehaviorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Model/Behavior/DatFieldBehaviorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Model/Entity/DatFieldTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/Model/Entity/DatFieldTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/Association/BelongsToManyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/ORM/Association/BelongsToManyTest.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/Association/BelongsToTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/ORM/Association/BelongsToTest.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/Association/HasManyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/ORM/Association/HasManyTest.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/Association/HasOneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/ORM/Association/HasOneTest.php -------------------------------------------------------------------------------- /tests/TestCase/ORM/DatFieldAwareTraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/ORM/DatFieldAwareTraitTest.php -------------------------------------------------------------------------------- /tests/TestCase/PHPStan/CurlyDatFieldNotationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/PHPStan/CurlyDatFieldNotationTest.php -------------------------------------------------------------------------------- /tests/TestCase/RealCase/GeolocationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/TestCase/RealCase/GeolocationTest.php -------------------------------------------------------------------------------- /tests/bootstrap.compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/bootstrap.compat.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/config/Migrations/1_DatabaseSetup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/config/Migrations/1_DatabaseSetup.php -------------------------------------------------------------------------------- /tests/config/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liqueurdetoile/cakephp-orm-json/HEAD/tests/config/common.php --------------------------------------------------------------------------------