This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpClient/composer.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2019-01-27 20:00:39 +00:00
{
"name": "symfony/http-client",
"type": "library",
"description": "Symfony HttpClient component",
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"provide": {
"psr/http-client-implementation": "1.0",
"symfony/http-client-implementation": "1.1"
2019-01-27 20:00:39 +00:00
},
"require": {
"php": "^7.1.3",
"psr/log": "^1.0",
2019-06-03 18:56:51 +01:00
"symfony/http-client-contracts": "^1.1.3",
"symfony/polyfill-php73": "^1.11"
2019-01-27 20:00:39 +00:00
},
"require-dev": {
"nyholm/psr7": "^1.0",
"psr/http-client": "^1.0",
2019-01-30 09:26:19 +00:00
"symfony/http-kernel": "^4.3",
"symfony/process": "^4.2"
2019-01-27 20:00:39 +00:00
},
"autoload": {
"psr-4": { "Symfony\\Component\\HttpClient\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "4.3-dev"
}
}
}