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.

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-base-repositories

PHP version Latest Version License

Build Status Style Check Code Quality Code Coverage

Total Downloads Monthly Downloads

doctrine-base-repositories

Doctrine2 utility repositories. Use as a base for custom repositories

Installation

Composer

Use

Create your custom repository implementing Repository interface

Implementations

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

PHP Build Version
Package Version
Requires php Version ^7.0
doctrine/common Version ^2.0
doctrine/inflector Version ^1.0
symfony/polyfill-php71 Version ^1.0
zendframework/zend-paginator Version ^2.6
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 juliangut/doctrine-base-repositories contains the following files

Loading the files please wait ....