1. Go to this page and download the library: Download pixeloven/framework 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/ */
pixeloven / framework example snippets
declare(strict_types=1);
namespace App\Http\Models;
use PixelOven\Http\Model;
/**
* @SWG\Definition(
* type="object",
* ds Model
{
/**
* @SWG\Property(
* description="Street address",
* )
* @var string
*/
public $street;
/**
* @SWG\Property(
* description="Postal code",
* )
* @var string
*/
public $postal;
/**
* @SWG\Property(
* description="Region, Province or State",
* )
* @var string
*/
public $region;
/**
* @SWG\Property(
* description="Country",
* )
* @var string
*/
public $country;
}