Download the PHP package skrepr/id-type without Composer
On this page you can find all versions of the php package skrepr/id-type. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download skrepr/id-type
More information about skrepr/id-type
Files in skrepr/id-type
Package id-type
Short Description Symfony bundle for generating and validating ID types
License proprietary
Informations about the package id-type
Skrepr ID Types
Symfony bundle for generating and validating ID types
Prerequisites
This version of the project requires:
- PHP 8.3+
- Symfony 6.4+
Installation
You can install the library through composer:
The bundle should be enabled by symfony/flex, but if not:
Usage
To generate an UuidType:
Where id_name
is something like "user_id".
With this maker command, two files are generated (src/ValueObject/UserId.php
and src/Persistence/Doctrine/UserIdType.php
)
and if the --register
option is given, also the new type is added to config/packages/doctrine.yaml
.
Registering is not needed if you are using autoconfigure because of the service tag "skrepr.id-type" will automatically register the type to doctrine.
To use this new id in your entity (example:
See the example directory for the generated files by make:id-type.
To generate a new ID you can use the static generate
-function:
You can also feed a UUID or string to the constructor:
AutoConfigure
By default, the created ID's can be used with AutoConfigure from Symfony. To upgrade existing ID's to this system you have to do the following (in this example we use "UserId").
-
Remove the 'user_id'-line from config/packages/doctrine.yaml
-
Add the service tag 'skrepr.id-type' to App\Persistence\Doctrine\UserIdType
- (optional) Remove the function App\Persistence\Doctrine\UserIdType::getName
- (optional) Add a constant to App\ValueObject\TestId (required if step 3 is done)
Instead of step 2, you can also add the tag to all your custom types at once, because the compiler pass of skrepr/id-type will check for a subclass of AbstractUuidType:
All versions of id-type with dependencies
doctrine/doctrine-bundle Version ^2.5
doctrine/orm Version ^2.10 || ^3.0
symfony/uid Version ^6.4 || ^7.0
symfony/framework-bundle Version ^6.4 || ^7.0