pock/composer.json

29 lines
684 B
JSON
Raw Normal View History

2021-05-13 21:08:55 +03:00
{
"name": "neur0toxine/pock",
"description": "PSR-18 compatible HTTP mock library",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Neur0toxine",
"email": "pashok9825@gmail.com"
}
],
"autoload": {
"psr-4": {
"Pock\\": "src/"
}
},
"require": {
"php": ">=7.1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0",
"php-http/httplug": "^1.0 || ^2.0"
},
"provide": {
"psr/http-client-implementation": "1.0",
"php-http/client-implementation": "1.0",
"php-http/async-client-implementation": "1.0"
}
}