-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
44 lines (42 loc) · 1.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "goetas/webservices",
"description": "Pure PHP SOAP server and client",
"keywords": ["xsd", "xml", "soap", "webservice"],
"homepage": "http://opensource.mercuriosistemi.com/projects/show/goetas-webservice",
"license": "MIT",
"authors": [
{
"name": "Asmir Mustafic",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"goetas/xmldom": "~1.0",
"goetas/goetas-xsd-reader": "~0.1",
"goetas/wsdl-reader": "~1.0",
"goetas/xml-xsd-encoder": "~2.0",
"guzzle/guzzle":">=2.0,<4.0-dev",
"symfony/http-foundation":"~2.1"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"phing/phing": "~2.5",
"phpmd/phpmd": "~1.4",
"squizlabs/php_codesniffer": "~1.4",
"sebastian/phpcpd": "~1.4",
"zerkalica/php-code-browser": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"goetas\\webservices\\tests": "tests/",
"goetas\\webservices": "src/"
}
},
"extra":{
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}