docteurklein / repository-service-bundle
A symfony bundle to help you register automatically doctrine ORM repositories as services
Installs: 13 155
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6
- symfony/dependency-injection: ^2.0|^3.0
- symfony/http-kernel: ^2.0|^3.0
Requires (Dev)
- ext-pdo_sqlite: *
- doctrine/doctrine-bundle: ^1.6
- doctrine/orm: ^2.5
This package is auto-updated.
Last update: 2024-10-29 03:53:34 UTC
README
What ?
A symfony bundle that eases creation of doctrine ORM repositories as services.
It will create a service for each registered entity in the default entity manager.
If you provide a repository
tag for a service, it will automatically create an alias and configure doctrine to make it the custom repository class of the associated entity (specified by the for
attribute).
How ?
install
composer require docteurklein/repository-service-bundle
register the bundle
public function registerBundles() { $bundles = [ new \DocteurKlein\RepositoryServiceBundle, // … ]; return $bundles; }
Examples
Note: The following examples use JmsDiExtraBundle to simplify code.
Given an entity:
namespace Model; /** @ORM\Entity */ class Product { /** @ORM\Id */ private $id; }
And the following service:
namespace Repository; /** * @Service("products") * @Tag("repository", attributes={"for"="Model\Product"}) */ final class Products extends EntityRepository { }
Then the DIC contains a factory service named repo.model_product
for the repository (using ManagerRegistry::getRepository()
).
It also contains an alias named products
pointing to the repo.model_product
service.
The custom repository class is automatically configured to point to Repository\\Products
.