priskz / sorad-entity
A generic service implemented on top of the SORAD API + PaylORM that provides consistent conventions for facilitating the mapping of entities.
Installs: 76
Dependents: 3
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/priskz/sorad-entity
Requires
- php: >=5.4.0
- priskz/payload: ~0.1.0
- priskz/paylorm: ~0.1.0
- priskz/sorad-api: ~0.1.0
- priskz/sorad-service-provider: ~0.1.0
This package is auto-updated.
Last update: 2025-09-19 04:38:48 UTC
README
Purpose
A generic service implemented on top of the SORAD API + Paylorm that provides consistent conventions for facilitating the mapping of entities.
Install via Composer
Add the following to your "require" schema:
"require": {
"priskz/sorad-entity": "~0.1.0"
}
Run composer install
Add 'Entity\Laravel\ServiceProvider'
to the 'providers'
in /app/laravel/config/app.php
to enable the newly added service.
Add the following to the 'aliases'
aka facades in /app/laravel/config/app.php
to register the newly added service facades:
'Entity' => 'Entity\Laravel\Facade',
'EntityAsset' => 'Entity\Service\Asset\Laravel\Facade',
'EntityDetail' => 'Entity\Service\Detail\Laravel\Facade',
'EntityIdentifier' => 'Entity\Service\Identifier\Laravel\Facade',