tito10047 / uuid
Add support for use UUID in symfony projects and for generation entities
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.1
- ext-gd: *
- symfony/framework-bundle: ^6.4|^7.2
- symfony/uid: ^6.4|^7.2
Requires (Dev)
- symfony/maker-bundle: ^1.0
This package is auto-updated.
Last update: 2025-02-16 10:07:17 UTC
README
Add support for generating UUIDs in Symfony entities with maker bundle.
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
$ composer require tito10047/uuid
Usage
bin/console make:entity Question
will generage entity like this
<?php namespace App\Entity; use App\Repository\QuestionRepository; use Doctrine\ORM\Mapping as ORM; use Symfony\Bridge\Doctrine\Types\UuidType; use Symfony\Component\Uid\Uuid; #[ORM\Entity(repositoryClass: QuestionRepository::class)] class Question { #[ORM\Id] #[ORM\Column(type: UuidType::NAME, unique: true)] #[ORM\GeneratedValue(strategy: 'CUSTOM')] #[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')] private ?Uuid $id = null; public function getId(): ?Uuid { return $this->id; } } class QuestionRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Question::class); } public function save(Question $entity, bool $flush = false): void { $this->getEntityManager()->persist($entity); if ($flush) { $this->getEntityManager()->flush(); } } public function remove(Question $entity, bool $flush = false): void { $this->getEntityManager()->remove($entity); if ($flush) { $this->getEntityManager()->flush(); } } public function createEmpty(bool $flush): Question { $entity = new Question(); $this->save($entity, $flush); return $entity; } public function getQBWith(): QueryBuilder { $qb = $this->createQueryBuilder('q'); return $qb; } public function getQBBlank(): QueryBuilder { return $this->createQueryBuilder('q')->setMaxResults(0); } }