1. Go to this page and download the library: Download rawphp/laravel-capabilities 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/ */
rawphp / laravel-capabilities example snippets
// AppServiceProvider::register()
use Rawphp\Capabilities\Persistence\ArrayTableGateway;
use Rawphp\Capabilities\Persistence\TableGateway;
$this->app->singleton(TableGateway::class, function () {
return new ArrayTableGateway; // or App\Persistence\CustomTableGateway
});