forked from webservices-nl/platform-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (55 loc) · 1.19 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "webservices-nl/platform-connector",
"description": "platform connector generator for Webservices.nl",
"keywords": [
"soap",
"soapclient",
"webservicesNl",
"webservices.nl"
],
"config": {
"gitlab-domains": [
"gitlab.fdmg.org"
],
"preferred-install": "dist"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "WebservicesNL",
"email": "[email protected]",
"homepage": "http://www.webservices.nl"
}
],
"prefer-stable": true,
"require": {
"php": "^5.6 || ^7 || ^8",
"ext-soap": "*",
"ext-xml": "*",
"ext-dom": "*",
"guzzlehttp/guzzle": "^6 || ^7.0.1",
"psr/log": "^1.0",
"webservices-nl/common": "dev-master",
"webservices-nl/utils": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5",
"mockery/mockery": "^0.9",
"monolog/monolog": "^2",
"league/factory-muffin": "^2",
"friendsofphp/php-cs-fixer": "^2 || ^3",
"sensiolabs/security-checker": "^5",
"squizlabs/php_codesniffer": "^2"
},
"autoload": {
"psr-4": {
"WebservicesNl\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebservicesNl\\Test\\": "test/"
}
}
}