Download the PHP package vrok/doctrine-addons without Composer
On this page you can find all versions of the php package vrok/doctrine-addons. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vrok/doctrine-addons
More information about vrok/doctrine-addons
Files in vrok/doctrine-addons
Package doctrine-addons
Short Description Doctrine ORM type & helper classes
License MIT
Homepage https://vrok.de
Informations about the package doctrine-addons
vrok/doctrine-addons
This is a library with additional classes for usage in combination with the Doctrine ORM.
Enable Postgres specific DQL functions
CAST
implements the corresponding function from Postgres to convert types:
CONTAINS
allows to use the postgres-only "@>" operator
to search for values within jsonb fields or arrays.
JSON_CONTAINS_TEXT
allows to use the postgres-only "?" operator
to search for strings within jsonb fields.
This for example allows to filter Symfony users correctly by role,
e.g. if you use role names that are part of others (ROLE_SUPER & ROLE_SUPER_ADMIN) where
using LIKE
would fail.
JSON_FIELD_AS_TEXT
allows to use the postgres-only "->>" operator
to get JSON data within a jsonb fields as string.
This for example allows to search for records that embed JSON,
e.g. if you store metadata or addresses:
Add to config/packages/doctrine.yaml:
Enable types in Symfony
config/packages/doctrine.yaml
Enable the MariadbTestDriver in Symfony
config/packages/test/doctrine.yaml
Enable the PostgreSQLTestDriver in Symfony
config/packages/test/doctrine.yaml
Lockable entities
Implementing a simple LockableInterface
allows unified handling of different
entities that can be locked/unlocked by admins etc. The provided interface
makes very little assumptions about your code, except that each entity can
be locked/unlocked at any time (regardless of other states the entity might have).
The LockableTrait
provides an opinionated implementation of that interface,
by specifying a boolean property locked
that defaults to false and that has
a Symfony group attribute of default:read
.
Slugs with correct umlauts in Symfony
Add this to your services.yaml to have ae, ue, oe in your slugs instead of
a, u, o for ä, ü, ö.
This also handles some other chars, e.g. accents.
Import / export entities from / to arrays
Short Example, for more details see ExportEntity / ExportTest / ImportTest for all features. Allows to export referenced entities (or only their identifiers) and collections.