anourvalar / http-client
HTTP client
1.11.5
2026-08-07 08:31 UTC
Requires
- php: ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.26
- phpstan/phpstan: ^2.0
- phpunit/phpunit: ^11.0
- squizlabs/php_codesniffer: ^3.7
Suggests
None
Provides
None
Conflicts
None
Replaces
None
- dev-master
- 1.11.5
- 1.11.4
- 1.11.3
- 1.11.2
- 1.11.1
- 1.11.0
- 1.10.15
- 1.10.14
- 1.10.13
- 1.10.12
- 1.10.11
- 1.10.10
- 1.10.9
- 1.10.8
- 1.10.7
- 1.10.6
- 1.10.5
- 1.10.4
- 1.10.3
- 1.10.2
- 1.10.1
- 1.10.0
- 1.9.8
- 1.9.7
- 1.9.6
- 1.9.5
- 1.9.4
- 1.9.3
- 1.9.2
- 1.9.1
- 1.9.0
- 1.8.0
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.1
- 1.1.0
- 1.0.0
- dev-claude/laravel-boost-skill-docs-akq1Q
This package is auto-updated.
Last update: 2026-09-07 08:52:20 UTC
README
Installation
composer require anourvalar/http-client
Usage
API Client (JSON)
$http = new \AnourValar\HttpClient\Http; $http->asJsonClient()->authToken('...')->body(['foo' => 'bar'])->post('https://google')->dump();
Web Browser (Robot)
$http = new \AnourValar\HttpClient\Http; $http->asBrowser()->referer('https://google.com')->get('https://google.com/?start=10')->dump();