arrowsphere/entities

A PHP library to manage entities

0.1.0 2021-10-06 08:05 UTC

This package is auto-updated.

Last update: 2024-05-08 19:49:51 UTC


README

Latest Stable Version Minimum PHP Version Build Status

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
{
    
}