forked from BeSimple/BeSimpleSoap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 2 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "besimple/soap",
"type": "library",
"description": "Build and consume SOAP and WSDL based web services",
"keywords": ["soap"],
"homepage": "http://besim.pl",
"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": ">=7.0",
"ext-soap": "*",
"ext-curl": "*",
"ass/xmlsecurity": "~1.0",
"symfony/dependency-injection": "^3.4 || ^4.1.12 || ^5.0",
"symfony/framework-bundle": "^3.4 || ^4.1.12 || ^5.0",
"symfony/twig-bundle": "^3.4 || ^4.0 || ^5.0",
"symfony/error-handler": "^4.4 || ^5.0",
"laminas/laminas-mime": "^2.1"
},
"replace": {
"besimple/soap-bundle": "self.version",
"besimple/soap-client": "self.version",
"besimple/soap-common": "self.version",
"besimple/soap-server": "self.version",
"besimple/soap-wsdl": "self.version"
},
"require-dev": {
"ext-mcrypt": "*",
"mikey179/vfsstream": "~1.0",
"symfony/form": "^3.4 || ^4.0 || ^5.0",
"symfony/process": "^3.4 || ^4.0 || ^5.0",
"symfony/console": "^3.4 || ^4.0 || ^5.0",
"symfony/messenger": "^3.4 || ^4.0 || ^5.0",
"symfony/serializer": "^3.4 || ^4.0 || ^5.0",
"symfony/translation": "^3.4 || ^4.0 || ^5.0",
"symfony/validator": "^3.4 || ^4.0 || ^5.0",
"symfony/security-csrf": "^3.4 || ^4.0 || ^5.0",
"symfony/property-info": "^3.4 || ^4.0 || ^5.0",
"phpunit/phpunit": "~4.8.36 || ~5.2",
"symfony/filesystem": "^3.4 || ^4.0 || ^5.0"
},
"autoload": {
"psr-0": { "BeSimple\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.4-dev"
}
}
}