-
- Downloads
New upstream version 2.2.0
No related branches found
No related tags found
Showing
- CHANGELOG.md 6 additions, 0 deletionsCHANGELOG.md
- README.md 0 additions, 10 deletionsREADME.md
- composer.json 17 additions, 13 deletionscomposer.json
- src/Exception/HttpException.php 1 addition, 4 deletionssrc/Exception/HttpException.php
- src/Exception/NetworkException.php 2 additions, 4 deletionssrc/Exception/NetworkException.php
- src/Exception/RequestException.php 2 additions, 4 deletionssrc/Exception/RequestException.php
- src/HttpAsyncClient.php 1 addition, 1 deletionsrc/HttpAsyncClient.php
- src/Promise/HttpFulfilledPromise.php 0 additions, 3 deletionssrc/Promise/HttpFulfilledPromise.php
- src/Promise/HttpRejectedPromise.php 0 additions, 3 deletionssrc/Promise/HttpRejectedPromise.php
{ | ||
"name": "php-http/httplug", | ||
"description": "HTTPlug, the HTTP client abstraction for PHP", | ||
"license": "MIT", | ||
"keywords": ["http", "client"], | ||
"keywords": [ | ||
"http", | ||
"client" | ||
], | ||
"homepage": "http://httplug.io", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Eric GELOEN", | ||
... | ... | @@ -11,18 +14,24 @@ |
}, | ||
{ | ||
"name": "Márk Sági-Kazár", | ||
"email": "mark.sagikazar@gmail.com" | ||
"email": "mark.sagikazar@gmail.com", | ||
"homepage": "https://sagikazarmark.hu" | ||
} | ||
], | ||
"require": { | ||
"php": "^7.0", | ||
"psr/http-message": "^1.0", | ||
"php": "^7.1 || ^8.0", | ||
"php-http/promise": "^1.1", | ||
"psr/http-client": "^1.0", | ||
"php-http/promise": "^1.0" | ||
"psr/http-message": "^1.0" | ||
}, | ||
"require-dev": { | ||
"phpspec/phpspec": "^4.3.4|^5.0|^6.0", | ||
"friends-of-phpspec/phpspec-code-coverage" : "^4.1" | ||
"friends-of-phpspec/phpspec-code-coverage": "^4.1", | ||
"phpspec/phpspec": "^5.1 || ^6.0" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.x-dev" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
... | ... | @@ -32,10 +41,5 @@ |
"scripts": { | ||
"test": "vendor/bin/phpspec run", | ||
"test-ci": "vendor/bin/phpspec run -c phpspec.ci.yml" | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "2.x-dev" | ||
} | ||
} | ||
} |
Please register or sign in to comment