Skip to content

ArrowSphere/entities

Repository files navigation

ArrowSphere entities package

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