Added composer.json

This commit is contained in:
Francis Besset 2013-01-15 22:42:43 +01:00
parent 6a4fba600f
commit 41301775bf
1 changed files with 33 additions and 0 deletions

33
composer.json Normal file
View File

@ -0,0 +1,33 @@
{
"name": "besimple/soap-client",
"type": "library",
"description": "Build and consume SOAP Client based web services",
"keywords": [ "soap", "soap-client" ],
"homepage": "https://github.com/BeSimple/BeSimpleSoapClient",
"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",
"ass/xmlsecurity": "dev-master"
},
"autoload": {
"psr-0": {
"BeSimple\\SoapClient": "BeSimple/SoapClient/src/"
}
},
"target-dir": "BeSimple/SoapClient"
}