1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 02:22:57 +01:00
guzzle/composer.json
2013-10-29 21:38:35 -07:00

41 lines
956 B
JSON

{
"name": "guzzle/guzzle",
"type": "library",
"description": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients",
"keywords": ["framework", "http", "rest", "web service", "curl", "client", "HTTP client"],
"homepage": "http://guzzlephp.org/",
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
}
],
"require": {
"php": ">=5.4.0",
"symfony/event-dispatcher": ">=2.1"
},
"autoload": {
"psr-0": {
"Guzzle": "src/"
},
"files": ["src/Guzzle/functions.php"]
},
"require-dev": {
"symfony/class-loader": "*",
"psr/log": "~1",
"phpunit/phpunit": "3.7.*"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}