| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "name": "kriswallsmith/buzz",
- "description": "Lightweight HTTP client",
- "keywords": ["http client", "curl"],
- "homepage": "https://github.com/kriswallsmith/Buzz",
- "type": "library",
- "license": "MIT",
- "authors": [
- {
- "name": "Kris Wallsmith",
- "email": "kris.wallsmith@gmail.com",
- "homepage": "http://kriswallsmith.net/"
- }
- ],
- "require": {
- "php": "^5.4 || ^7.0",
- "guzzlehttp/psr7": "^1.4"
- },
- "require-dev": {
- "symfony/phpunit-bridge": "^3.4 || ^4.0",
- "php-http/client-integration-tests": "^0.6.2"
- },
- "suggest": {
- "ext-curl": "*"
- },
- "autoload": {
- "psr-4": {
- "Buzz\\": "lib/Buzz"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "Buzz\\Test\\": "test/Buzz/Test"
- }
- },
- "scripts": {
- "test": "vendor/bin/simple-phpunit",
- "test-ci": "vendor/bin/simple-phpunit --coverage-text --coverage-clover=build/coverage.xml"
- }
- }
|