rolf / http-client
There is no license information available for the latest version (dev-master) of this package.
dev-master
2022-01-23 08:49 UTC
Requires
- php: ^7.4|^8.0
- ext-json: *
Requires (Dev)
- guzzlehttp/guzzle: ^7.2
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-03-23 15:36:05 UTC
README
composer require rolf/http-client
Использование
- Для работы инициируем класс
$api = new Rolf\HttpClient\Client()
- Для работы с комментариями вызываем
$api->comments()
Метод | Результат запроса |
---|---|
$api->comments()->all() |
[['id' => 1, 'name' => 'Статья 1', 'text' => 'Текст статьи']] |
$api->comments()->create('Новая статья', 'Текст') |
['id' => 2, 'name' => 'Новая статья', 'text' => 'Текст'] |
$api->comments()->create(1, 'Статья 1', 'Текст') |
['id' => 1, 'name' => 'Статья 1', 'text' => 'Текст'] |