Download the PHP package schvoy/base-entity-bundle without Composer

On this page you can find all versions of the php package schvoy/base-entity-bundle. 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 base-entity-bundle

Base entity bundle

A bundle which provides base doctrine entities and behaviors for Symfony projects.

Installation

Usage

Use base entities as Mapped Superclass

All of them provide commonly used entity functionalities:

Only traits? Yes

If you don't want to use the Mapped Superclasses? Than you can use only the traits. In this case you can extend your entity classes with the traits what you want to use.

Doctrine behavior

Originally this package used the KnpLabs/DoctrineBehaviors, but there is/was a maintainer issue. Therefore this bundle contains a new implementation of the most generally used behaviors, based on the original package.

The implementation is not 100% equivalent to the original package.

Doctrine listeners for the behavior events are loaded automatically, but for the Blameable behavior you have to define which one is your User class (check the configuration part).

There are built-in implementations of the behavior interfaces attached to the base entities, but you can define your own if you want.

Timestampable

Timestampable handle the createdAt and updatedAt fields during persist and update.

Your entity have to implement the Schvoy\BaseEntityBundle\Entity\Interfaces\Behavior\TimestampableInterface.

SoftDeleteable

The behavior keeps the data in the database without real data removal, it is just set the deletedAt value on the entity.

This bundle provides extra helping methods for this behavior on the entity:

Your entity have to implement the Schvoy\BaseEntityBundle\Entity\Interfaces\Behavior\SoftdeletableInterface.

Blameable

Tracks who did the changes on the entity during persist, update or remove (working only with soft delete).

When the entity implements the Schvoy\BaseEntityBundle\Entity\Interfaces\Behavior\BlamableInterface then the createdBy and updatedBy field are tracked during persist and update by default.

To track also the deletedBy during remove, your entity have to implements the Schvoy\BaseEntityBundle\Entity\Interfaces\Behavior\SoftdeletableInterface.

The deletedBy field will be added to the entity even if the SoftDeleteable behavior is not used, but it will be always null.

Configuration reference

Required config fo Blameable behavior

More information: https://symfony.com/doc/current/doctrine/resolve_target_entity.html


All versions of base-entity-bundle with dependencies

PHP Build Version
Package Version
Requires php Version >=8.3
symfony/framework-bundle Version ^7.1
symfony/uid Version ^7.1
symfony/security-bundle Version ^7.1
doctrine/orm Version ^3.2
doctrine/doctrine-bundle Version ^2.12
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 schvoy/base-entity-bundle contains the following files

Loading the files please wait ....