1. Go to this page and download the library: Download jsonpolicy/jsonpolicy-php 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/ */
use JsonPolicy\Manager as JsonPolicyManager;
$manager = JsonPolicyManager::bootstrap([
'repository' => [
file_get_contents(__DIR__ . '/policy.json')
]
]);
// Create the car dealership instance and pass the available list of cars that can
// be sold
$dealership = new Dealership($stock);
// Check which car is allowed to be sold based on policy attached to current
// identity
foreach ($dealership as $car) {
if ($manager->isAllowedTo($car, 'sell') === true) {
echo "You can sell the {$car->model} ($car->year)\n";
} else {
echo "You cannot sell the {$car->model} ($car->year)\n";
}
}
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.