Download the PHP package juliangut/doctrine-base-repositories without Composer
On this page you can find all versions of the php package juliangut/doctrine-base-repositories. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download juliangut/doctrine-base-repositories
More information about juliangut/doctrine-base-repositories
Files in juliangut/doctrine-base-repositories
Package doctrine-base-repositories
Short Description Doctrine2 utility repositories
License MIT
Homepage https://github.com/juliangut/doctrine-base-repositories
Informations about the package doctrine-base-repositories
doctrine-base-repositories
Doctrine2 utility repositories. Use as a base for custom repositories
Installation
Composer
Use
Create your custom repository implementing Repository interface
Implementations
- ORM (Relational databases) with doctrine-orm-repositories
- MongoDB with doctrine-mongodb-odm-repositories
- CouchDB with doctrine-couchdb-odm-repositories (not maintained)
New methods
These are the new methods that juliangut/doctrine-base-repositories
brings to the table thanks to RepositoryTrait
Find or fail
Same functionality as findBy, findOneBy and their "magic" combinations but throwing an exception if nothing is found
Creating
getNew
Creates a new empty object directly from repository.
findOneByOrGetNew
Returns an object based on criteria or a new empty object if could not be found
Adding
add
Will persist the entity into the manager.
Removing
remove
In the same fashion as add
this will remove the entity.
removeAll
FindAll and then removes them all.
removeBy and removeOneBy
As their counter parts findBy and findOneBy but removing the objects instead of returning them.
Counting
countAll and countBy
Perform object count
countBy method needs implementation on custom repository
Events managing
It is common to have event subscribers on manager's event manager. This is usually due to the use of Doctrine extensions that add extra behaviour in certain points of the lifecycle. gedmo/doctrine-extensions is an example of such behaviours.
Events managing is provided by EventsTrait
Disabling event subscribers
You might want to temporarily disable an event subscriber.
Disabling an event listeners
You might want to disable all listeners on a certain event.
Disabling single event listeners
You might want to disable certain listeners and not all listeners registered for an event.
Filters managing
Filters managing is provided by FiltersTrait
Disabling filters
You might want to temporarily disable all filters.
Disabling a single filter
You might want to disable a single filter.
requires the implementation of getFilterCollection method on custom repository
Paginating
Returns the same results that findBy
would return but within a \Zend\Paginator\Paginator
object with pagination information, an exception throwing version is also available. Provided by PaginatorTrait
findPaginatedBy method needs implementation on custom repository
Contributing
Found a bug or have a feature request? Please open a new issue. Have a look at existing issues before.
See file CONTRIBUTING.md
License
See file LICENSE included with the source code for a copy of the license terms.
All versions of doctrine-base-repositories with dependencies
doctrine/common Version ^2.0
doctrine/inflector Version ^1.0
symfony/polyfill-php71 Version ^1.0
zendframework/zend-paginator Version ^2.6