Added composer.json

This commit is contained in:
Francis Besset 2013-01-15 22:49:57 +01:00
parent 7005a75231
commit baa586e268
1 changed files with 38 additions and 0 deletions

38
composer.json Normal file
View File

@ -0,0 +1,38 @@
{
"name": "besimple/soap-bundle",
"type": "symfony-bundle",
"description": "Build and consume SOAP and WSDL based web services with Symfony2",
"keywords": [ "soap", "soap-bundle" ],
"homepage": "https://github.com/BeSimple/BeSimpleSoapBundle",
"license": "MIT",
"authors": [
{
"name": "Francis Besset",
"email": "francis.besset@gmail.com"
},
{
"name": "Christian Kerl",
"email": "christian-kerl@web.de"
},
{
"name": "Andreas Schamberger",
"email": "mail@andreass.net"
}
],
"require": {
"php": ">=5.3.0",
"besimple/soap-common": "dev-master",
"burti/zend-soap": "dev-master",
"burti/zend-mime": "dev-master"
},
"suggest": {
"besimple/soap-client": "dev-master",
"besimple/soap-server": "dev-master"
},
"autoload": {
"psr-0": {
"BeSimple\\SoapBundle": ""
}
},
"target-dir": "BeSimple/SoapBundle"
}