php-extended / php-api-org-eu-exodus-privacy-object
A library that implements the php-extended/php-api-org-eu-exodus-privacy-interface library
Package info
gitlab.com/php-extended/php-api-org-eu-exodus-privacy-object
pkg:composer/php-extended/php-api-org-eu-exodus-privacy-object
9.0.1
2026-07-18 22:07 UTC
Requires
Requires (Dev)
This package is not auto-updated.
Last update: 2026-07-19 18:43:04 UTC
README
An implementation of the php-extended/php-api-org-eu-exodus-privacy-interface library.
Installation
The installation of this library is made via composer and the autoloading of all classes of this library is made through their autoloader.
- Download
composer.pharfrom their website. - Then run the following command to install this library as dependency :
php composer.phar php-extended/php-api-org-eu-exodus-privacy-object ^9
Basic Usage
This library may be used the following way :
use PhpExtended\ApiOrgEuExodusPrivacy\ApiOrgEuExodusPrivacyEndpoint;
/** @var \Psr\Http\Client\ClientInterface $client */
$api = new ApiOrgEuExodusPrivacyEndpoint($client);
foreach($api->listReports() as $report)
{
/** @var \PhpExtended\ApiOrgEuExodusPrivacy\ApiOrgEuExodusPrivacyApplicationReportItem $spec */
$spec = $api->getApplicationReport($report->getId());
/** @var \PhpExtended\ApiOrgEuExodusPrivacy\ApiOrgEuExodusPrivacyIcon $icon */
$icon = $api->getApplicationIcon($report->getId());
}
License
MIT (See license file).