├── .editorconfig ├── .gitignore ├── docs └── en │ ├── active-record │ ├── active-entity.md │ ├── active-query.md │ ├── active-repository.md │ ├── installation.md │ └── introduction.md │ ├── advanced │ ├── active-record.md │ ├── caching.md │ ├── chained-repository.md │ ├── column-wrappers.md │ ├── command.md │ ├── composite-pk.md │ ├── daemonizing.md │ ├── datetime.md │ ├── default-classes.md │ ├── entity-manager.md │ ├── entity.md │ ├── iterator.md │ ├── joined-table-inheritance.md │ ├── limitations.md │ ├── node-parser.md │ ├── pagination.md │ ├── persist-repository.md │ ├── schema.md │ ├── scope.md │ ├── single-table-inheritance.md │ ├── sync-schema.md │ ├── testing.md │ └── typecasting.md │ ├── annotated │ ├── embeddings.md │ ├── entity.md │ ├── prerequisites.md │ └── relations.md │ ├── basic │ ├── crud.md │ ├── direct-database-queries.md │ ├── no-annotations.md │ ├── relation.md │ ├── repository.md │ └── select.md │ ├── contributing.md │ ├── database │ ├── access.md │ ├── configuration.md │ ├── connect.md │ ├── declaration.md │ ├── errata.md │ ├── introspection.md │ ├── isolation.md │ ├── migrations.md │ ├── profiling.md │ ├── query-builders.md │ └── transactions.md │ ├── entity-behaviors │ ├── event-listener.md │ ├── events.md │ ├── extensions.md │ ├── hooks.md │ ├── install.md │ ├── optimistic-lock.md │ ├── soft-delete.md │ ├── timestamps.md │ └── uuid.md │ ├── intro │ ├── about.md │ ├── install.md │ ├── integrations.md │ ├── semver.md │ └── upgrade.md │ ├── issue-test-case.md │ ├── license.md │ ├── manifest.json │ ├── mapper │ ├── about.md │ ├── classless-mapper.md │ ├── extending.md │ ├── promise-mapper.md │ ├── proxy-mapper.md │ ├── reference.md │ └── std-mapper.md │ ├── query-builder │ ├── basic.md │ ├── complex.md │ ├── extended.md │ ├── relations.md │ └── security.md │ ├── readme.md │ ├── relation │ ├── belongs-to.md │ ├── collections.md │ ├── embedded.md │ ├── has-many.md │ ├── has-one.md │ ├── many-to-many.md │ ├── morphed.md │ └── refers-to.md │ ├── repository │ └── select.md │ └── schema │ ├── dynamic-schema.md │ ├── manual.md │ └── schema-builder.md └── languages.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /docs/en/active-record/active-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/active-record/active-entity.md -------------------------------------------------------------------------------- /docs/en/active-record/active-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/active-record/active-query.md -------------------------------------------------------------------------------- /docs/en/active-record/active-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/active-record/active-repository.md -------------------------------------------------------------------------------- /docs/en/active-record/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/active-record/installation.md -------------------------------------------------------------------------------- /docs/en/active-record/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/active-record/introduction.md -------------------------------------------------------------------------------- /docs/en/advanced/active-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/active-record.md -------------------------------------------------------------------------------- /docs/en/advanced/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/caching.md -------------------------------------------------------------------------------- /docs/en/advanced/chained-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/chained-repository.md -------------------------------------------------------------------------------- /docs/en/advanced/column-wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/column-wrappers.md -------------------------------------------------------------------------------- /docs/en/advanced/command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/command.md -------------------------------------------------------------------------------- /docs/en/advanced/composite-pk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/composite-pk.md -------------------------------------------------------------------------------- /docs/en/advanced/daemonizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/daemonizing.md -------------------------------------------------------------------------------- /docs/en/advanced/datetime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/datetime.md -------------------------------------------------------------------------------- /docs/en/advanced/default-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/default-classes.md -------------------------------------------------------------------------------- /docs/en/advanced/entity-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/entity-manager.md -------------------------------------------------------------------------------- /docs/en/advanced/entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/entity.md -------------------------------------------------------------------------------- /docs/en/advanced/iterator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/iterator.md -------------------------------------------------------------------------------- /docs/en/advanced/joined-table-inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/joined-table-inheritance.md -------------------------------------------------------------------------------- /docs/en/advanced/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/limitations.md -------------------------------------------------------------------------------- /docs/en/advanced/node-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/node-parser.md -------------------------------------------------------------------------------- /docs/en/advanced/pagination.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/pagination.md -------------------------------------------------------------------------------- /docs/en/advanced/persist-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/persist-repository.md -------------------------------------------------------------------------------- /docs/en/advanced/schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/schema.md -------------------------------------------------------------------------------- /docs/en/advanced/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/scope.md -------------------------------------------------------------------------------- /docs/en/advanced/single-table-inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/single-table-inheritance.md -------------------------------------------------------------------------------- /docs/en/advanced/sync-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/sync-schema.md -------------------------------------------------------------------------------- /docs/en/advanced/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/testing.md -------------------------------------------------------------------------------- /docs/en/advanced/typecasting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/advanced/typecasting.md -------------------------------------------------------------------------------- /docs/en/annotated/embeddings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/annotated/embeddings.md -------------------------------------------------------------------------------- /docs/en/annotated/entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/annotated/entity.md -------------------------------------------------------------------------------- /docs/en/annotated/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/annotated/prerequisites.md -------------------------------------------------------------------------------- /docs/en/annotated/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/annotated/relations.md -------------------------------------------------------------------------------- /docs/en/basic/crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/crud.md -------------------------------------------------------------------------------- /docs/en/basic/direct-database-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/direct-database-queries.md -------------------------------------------------------------------------------- /docs/en/basic/no-annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/no-annotations.md -------------------------------------------------------------------------------- /docs/en/basic/relation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/relation.md -------------------------------------------------------------------------------- /docs/en/basic/repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/repository.md -------------------------------------------------------------------------------- /docs/en/basic/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/basic/select.md -------------------------------------------------------------------------------- /docs/en/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/contributing.md -------------------------------------------------------------------------------- /docs/en/database/access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/access.md -------------------------------------------------------------------------------- /docs/en/database/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/configuration.md -------------------------------------------------------------------------------- /docs/en/database/connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/connect.md -------------------------------------------------------------------------------- /docs/en/database/declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/declaration.md -------------------------------------------------------------------------------- /docs/en/database/errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/errata.md -------------------------------------------------------------------------------- /docs/en/database/introspection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/introspection.md -------------------------------------------------------------------------------- /docs/en/database/isolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/isolation.md -------------------------------------------------------------------------------- /docs/en/database/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/migrations.md -------------------------------------------------------------------------------- /docs/en/database/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/profiling.md -------------------------------------------------------------------------------- /docs/en/database/query-builders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/query-builders.md -------------------------------------------------------------------------------- /docs/en/database/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/database/transactions.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/event-listener.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/event-listener.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/events.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/extensions.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/hooks.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/install.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/optimistic-lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/optimistic-lock.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/soft-delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/soft-delete.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/timestamps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/timestamps.md -------------------------------------------------------------------------------- /docs/en/entity-behaviors/uuid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/entity-behaviors/uuid.md -------------------------------------------------------------------------------- /docs/en/intro/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/intro/about.md -------------------------------------------------------------------------------- /docs/en/intro/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/intro/install.md -------------------------------------------------------------------------------- /docs/en/intro/integrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/intro/integrations.md -------------------------------------------------------------------------------- /docs/en/intro/semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/intro/semver.md -------------------------------------------------------------------------------- /docs/en/intro/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/intro/upgrade.md -------------------------------------------------------------------------------- /docs/en/issue-test-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/issue-test-case.md -------------------------------------------------------------------------------- /docs/en/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/license.md -------------------------------------------------------------------------------- /docs/en/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/manifest.json -------------------------------------------------------------------------------- /docs/en/mapper/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/about.md -------------------------------------------------------------------------------- /docs/en/mapper/classless-mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/classless-mapper.md -------------------------------------------------------------------------------- /docs/en/mapper/extending.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/extending.md -------------------------------------------------------------------------------- /docs/en/mapper/promise-mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/promise-mapper.md -------------------------------------------------------------------------------- /docs/en/mapper/proxy-mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/proxy-mapper.md -------------------------------------------------------------------------------- /docs/en/mapper/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/reference.md -------------------------------------------------------------------------------- /docs/en/mapper/std-mapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/mapper/std-mapper.md -------------------------------------------------------------------------------- /docs/en/query-builder/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/query-builder/basic.md -------------------------------------------------------------------------------- /docs/en/query-builder/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/query-builder/complex.md -------------------------------------------------------------------------------- /docs/en/query-builder/extended.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/query-builder/extended.md -------------------------------------------------------------------------------- /docs/en/query-builder/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/query-builder/relations.md -------------------------------------------------------------------------------- /docs/en/query-builder/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/query-builder/security.md -------------------------------------------------------------------------------- /docs/en/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/readme.md -------------------------------------------------------------------------------- /docs/en/relation/belongs-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/belongs-to.md -------------------------------------------------------------------------------- /docs/en/relation/collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/collections.md -------------------------------------------------------------------------------- /docs/en/relation/embedded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/embedded.md -------------------------------------------------------------------------------- /docs/en/relation/has-many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/has-many.md -------------------------------------------------------------------------------- /docs/en/relation/has-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/has-one.md -------------------------------------------------------------------------------- /docs/en/relation/many-to-many.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/many-to-many.md -------------------------------------------------------------------------------- /docs/en/relation/morphed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/morphed.md -------------------------------------------------------------------------------- /docs/en/relation/refers-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/relation/refers-to.md -------------------------------------------------------------------------------- /docs/en/repository/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/repository/select.md -------------------------------------------------------------------------------- /docs/en/schema/dynamic-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/schema/dynamic-schema.md -------------------------------------------------------------------------------- /docs/en/schema/manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/schema/manual.md -------------------------------------------------------------------------------- /docs/en/schema/schema-builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cycle/docs/HEAD/docs/en/schema/schema-builder.md -------------------------------------------------------------------------------- /languages.json: -------------------------------------------------------------------------------- 1 | { 2 | "en": "docs/en" 3 | } 4 | --------------------------------------------------------------------------------