1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-01-17 21:38:16 +01:00
guzzle/composer.json

104 lines
2.9 KiB
JSON
Raw Normal View History

2011-11-01 20:01:49 -05:00
{
"name": "guzzlehttp/guzzle",
2015-02-24 22:50:52 -08:00
"description": "Guzzle is a PHP HTTP client library",
2018-11-18 23:50:19 +01:00
"keywords": [
"framework",
"http",
"rest",
"web service",
"curl",
"client",
"HTTP client",
"PSR-7",
"PSR-18"
2018-11-18 23:50:19 +01:00
],
2011-11-01 20:01:49 -05:00
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "hello@gjcampbell.co.uk",
"homepage": "https://github.com/GrahamCampbell"
},
2012-02-25 16:47:37 -04:30
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
2019-12-21 22:37:08 +01:00
},
{
"name": "Jeremy Lindblom",
"email": "jeremeamia@gmail.com",
"homepage": "https://github.com/jeremeamia"
},
{
"name": "George Mponos",
"email": "gmponos@gmail.com",
"homepage": "https://github.com/gmponos"
},
{
"name": "Tobias Nyholm",
"email": "tobias.nyholm@gmail.com",
"homepage": "https://github.com/Nyholm"
},
2019-12-21 22:37:08 +01:00
{
"name": "Márk Sági-Kazár",
"email": "mark.sagikazar@gmail.com",
"homepage": "https://github.com/sagikazarmark"
},
{
"name": "Tobias Schultze",
"email": "webmaster@tubo-world.de",
"homepage": "https://github.com/Tobion"
2011-11-01 20:01:49 -05:00
}
2012-02-25 16:47:37 -04:30
],
2011-11-01 20:01:49 -05:00
"require": {
2020-10-01 13:31:51 +02:00
"php": "^7.2.5 || ^8.0",
2018-11-25 22:09:37 +02:00
"ext-json": "*",
"guzzlehttp/promises": "^1.5.3 || ^2.0",
"guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
"psr/http-client": "^1.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0"
2012-04-16 14:53:42 -07:00
},
2020-01-25 12:19:56 +01:00
"provide": {
"psr/http-client-implementation": "1.0"
},
2014-10-12 22:22:37 +01:00
"require-dev": {
"ext-curl": "*",
2022-08-28 16:28:05 +01:00
"bamarni/composer-bin-plugin": "^1.8.1",
2023-05-21 14:05:55 +01:00
"php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
"php-http/message-factory": "^1.1",
2022-08-28 16:28:05 +01:00
"phpunit/phpunit": "^8.5.29 || ^9.5.23",
2021-10-13 18:47:22 -05:00
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
2018-11-18 23:50:19 +01:00
"suggest": {
2020-01-19 08:31:46 +00:00
"ext-curl": "Required for CURL handler support",
"ext-intl": "Required for Internationalized Domain Name (IDN) support",
2019-12-20 13:14:15 +01:00
"psr/log": "Required for using the Log middleware"
2018-11-18 23:50:19 +01:00
},
2018-11-25 22:11:59 +02:00
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"preferred-install": "dist",
2018-11-25 22:11:59 +02:00
"sort-packages": true
},
2018-11-18 23:50:19 +01:00
"extra": {
2022-08-28 16:28:05 +01:00
"bamarni-bin": {
"bin-links": true,
"forward-command": false
2018-11-18 23:50:19 +01:00
}
},
2011-11-01 20:01:49 -05:00
"autoload": {
"psr-4": {
"GuzzleHttp\\": "src/"
2018-11-18 23:50:19 +01:00
},
"files": [
"src/functions_include.php"
]
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\": "tests/"
}
}
2012-04-16 14:53:42 -07:00
}