-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
47 lines (47 loc) · 1.29 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
{
"name": "loophp/mock-soapclient",
"description": "A fake and predictable SOAP client, useful for your unit tests.",
"license": "MIT",
"keywords": [
"soap",
"testing"
],
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"require": {
"php": ">= 7.4",
"ext-soap": "*"
},
"require-dev": {
"ext-pcov": "*",
"drupol/php-conventions": "^6",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.26",
"infection/phpspec-adapter": "^0.2",
"phpspec/phpspec": "^7"
},
"autoload": {
"psr-4": {
"loophp\\MockSoapClient\\": "./src/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run",
"infection": "vendor/bin/infection run -j 2"
}
}