PHP code example of spinen / n-central-php-rest-client
1. Go to this page and download the library: Download spinen/n-central-php-rest-client 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/ */
spinen / n-central-php-rest-client example snippets
namespace App;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Spinen\Ncentral\Concerns\HasNcentral;
class User extends Authenticatable
{
use HasNcentral, Notifiable;
// ...
}