// ...,
"description": "This is my PHP library",
"keywords": [
"myCustomTag",
// ...,
],
"license": [
"LGPL-2.1-only",
"GPL-3.0-or-later"
],
// ...,
"scripts": {
// ...,
"hello": "echo hello"
}
} ```
## 0.9.0
**`(feat):`** Add the ability to access alpha or undocumented response properties from every class. Users can access the additional properties like so:
```php $response = $client->users->get(...); $additionalProperties = $response->getAdditionalProperties(); ```
## 0.8.0
**`(feat):`** Add automatic pagination support for endpoints that return a paginated response.
Here's an example of how users can use paginated endpoints:
```php $items = $client->list($request); foreach($items as $item){
echo $item;
} $pages = $items->getPages(); foreach($pages as $page){
foreach($page as $item){
echo $item;
}
} ```