arrowsphere / entities
A PHP library to manage entities
0.1.0
2021-10-06 08:05 UTC
Requires
- php: >=7.2.0
- ext-json: *
- doctrine/annotations: ^1.13
Requires (Dev)
- phpunit/phpunit: ^8.5 || ^9.3
This package is auto-updated.
Last update: 2024-11-08 20:56:13 UTC
README
This package provides an abstract class and annotations to manage entities in a standard why for ArrowSphere.
Installation
Install the latest version with
$ composer require arrowsphere/entities
Basic usage
<?php use ArrowSphere\Entities\AbstractEntity; class MyEntity extends AbstractEntity { }