-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.04 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "metasyntactical/php-soap-client-options",
"description": "Allows for handling PHP Soap Client options in a way that validity and type safety are assured.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Weichert",
"email": "david.weichert@juit.de"
}
],
"require": {
"php": "7.2.*|7.3.*|7.4.*",
"beberlei/assert": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"MetaSyntactical\\SoapClientOptions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MetaSyntactical\\SoapClientOptions\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"psalm": "tools/psalm",
"php-cs-fixer": "tools/php-cs-fixer",
"phpstan": "tools/phpstan",
"phpunit": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"psalm": "Run psalm (with defaults)",
"php-cs-fixer": "Run php-cs-fixer (with defaults)",
"phpstan": "Run phpstan (with defaults)",
"phpunit": "Run phpunit (with defaults)"
}
}