Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

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

Repository files navigation

Latest Version on PackagistTestsTotal Downloads

A PHP SDK for theJSON Placeholder API.

Installation

You can install the package via composer:

composer require alphaolomi/json-placeholder

Usage

$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 [▶]// ]

Paginated Results

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;}

Available Resources

  • Users
    • List all users
    • Get a single user
    • Create a user
    • Update a user
    • Delete a user
    • Paginate users

Testing

Using PestPHP Testing framework, run the following command to execute the tests.

composertest

Changelog

Please seeCHANGELOG for more information on what has changed recently.

Contributing

Please seeCONTRIBUTING for details.

Security Vulnerabilities

Please reviewour security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please seeLicense File for more information.


[8]ページ先頭

©2009-2025 Movatter.jp