1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 10:33:18 +01:00
guzzle/composer.json

41 lines
956 B
JSON
Raw Normal View History

2011-11-01 20:01:49 -05:00
{
"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/",
2011-11-01 20:01:49 -05:00
"license": "MIT",
"authors": [
2012-02-25 16:47:37 -04:30
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
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": {
2013-07-30 21:08:18 -07:00
"php": ">=5.4.0",
2012-12-05 13:08:49 -06:00
"symfony/event-dispatcher": ">=2.1"
2012-04-16 14:53:42 -07:00
},
2011-11-01 20:01:49 -05:00
"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"
}
}
2012-04-16 14:53:42 -07:00
}