- Notifications
You must be signed in to change notification settings - Fork0
JSON Placeholder for PHP, A Free fake API for testing and prototyping.
License
NotificationsYou must be signed in to change notification settings
alphaolomi/json-placeholder
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A PHP SDK for theJSON Placeholder API.
You can install the package via composer:
composer require alphaolomi/json-placeholder
$api =newJson\Api();$users =$api->users()->list();foreach($usersas$user) {echo$user->name;}
Shorthand
$users = (newJson\Api())->users()->list();print_r($users);// array:10 [// 0 => array:8 [// "id" => 1// "name" => "Leanne Graham"// "username" => "Bret"// "email" => "Sincere@april.biz"// "address" => array:5 [▶]// "phone" => "1-770-736-8031 x56442"// "website" => "hildegard.org"// "company" => array:3 [▶]// ]// 1 => array:8 [▶]// ]
You may prefer to retrieve all the results from the paginated requests by using thepaginator
method on the SDK.
$api =newJson\Api();$results =$api->users()->paginate();foreach($resultsas$result) {// Handle resultecho$result->name;}
- Users
- List all users
- Get a single user
- Create a user
- Update a user
- Delete a user
- Paginate users
Using PestPHP Testing framework, run the following command to execute the tests.
composertest
Please seeCHANGELOG for more information on what has changed recently.
Please seeCONTRIBUTING for details.
Please reviewour security policy on how to report security vulnerabilities.
The MIT License (MIT). Please seeLicense File for more information.
About
JSON Placeholder for PHP, A Free fake API for testing and prototyping.