1. Go to this page and download the library: Download feodorpranju/api-orm library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
feodorpranju / api-orm example snippets
use Feodorpranju\ApiOrm\Models\AbstractModel;
use \Illuminate\Support\Collection;
use \Feodorpranju\ApiOrm\Models\Fields\Settings as FieldSettings;
use \Feodorpranju\ApiOrm\Enumerations\FieldType;
class Task extends AbstractModel
{
/**
* @inheritdoc
*/
public static function fields() : Collection
{
return collect([
new FieldSettings('id', FieldType::Int, false, true),
new FieldSettings('title', FieldType::String),
new FieldSettings('name', FieldType::String),
new FieldSettings('date', FieldType::Datetime),
]);
}
}