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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package doctrine-addons

vrok/doctrine-addons

This is a library with additional classes for usage in combination with the Doctrine ORM.

CI Status Coverage Status

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.


All versions of doctrine-addons with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
doctrine/dbal Version ^4.2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package vrok/doctrine-addons contains the following files

Loading the files please wait ....