mirror of
https://github.com/guzzle/guzzle.git
synced 2025-02-24 18:13:00 +01:00
Moving Inflection into Common. Moving Guzzle\Http\Parser to Guzzle\Parser. Adding composer.json files for each subtree split Fixing failing curl test
93 lines
2.6 KiB
JSON
93 lines
2.6 KiB
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"
|
|
},
|
|
{
|
|
"name": "Guzzle Community",
|
|
"homepage": "https://github.com/guzzle/guzzle/contributors"
|
|
}
|
|
],
|
|
|
|
"replace": {
|
|
"guzzle/common": "self.version",
|
|
"guzzle/http": "self.version",
|
|
"guzzle/parser": "self.version"
|
|
},
|
|
|
|
"require": {
|
|
"php": ">=5.3.2",
|
|
"ext-curl": "*",
|
|
"symfony/event-dispatcher": "2.*"
|
|
},
|
|
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Guzzle\\Tests": "tests/",
|
|
"Guzzle": "src/"
|
|
}
|
|
},
|
|
|
|
"require-dev": {
|
|
"doctrine/common": "*",
|
|
"symfony/class-loader": "*",
|
|
"monolog/monolog": "1.*",
|
|
"zendframework/zend-cache": "2.0.*",
|
|
"zendframework/zend-log": "2.0.*",
|
|
"zendframework/zend-loader": "2.0.*",
|
|
"zendframework/zend-stdlib": "2.0.*",
|
|
"zendframework/zend-eventmanager": "2.0.*",
|
|
"zendframework/zend-servicemanager": "2.0.*",
|
|
"zend/zend-log1": "1.11",
|
|
"zend/zend-cache1": "1.11"
|
|
},
|
|
|
|
"repositories": [
|
|
{
|
|
"type": "composer",
|
|
"url": "http://packages.zendframework.com/"
|
|
},
|
|
{
|
|
"type":"package",
|
|
"package": {
|
|
"name": "zend/zend-log1",
|
|
"version": "1.11",
|
|
"source": {
|
|
"url": "http://framework.zend.com/svn",
|
|
"type": "svn",
|
|
"reference": "framework/standard/trunk/library/Zend/Log/"
|
|
},
|
|
"target-dir": "Zend/Log",
|
|
"autoload": {
|
|
"psr-0": { "Zend_Log": "/" }
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type":"package",
|
|
"package": {
|
|
"name": "zend/zend-cache1",
|
|
"version": "1.11",
|
|
"source": {
|
|
"url": "http://framework.zend.com/svn",
|
|
"type": "svn",
|
|
"reference": "framework/standard/trunk/library/Zend/Cache/"
|
|
},
|
|
"target-dir": "Zend/Cache",
|
|
"autoload": {
|
|
"psr-0": { "Zend_Cache": "/" }
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|