-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
50 lines (44 loc) · 1.21 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
{
"name": "wiremock-php/wiremock-php",
"description": "PHP API for WireMock JSON interface",
"homepage": "http://github.com/rowanhill/wiremock-php",
"license": "MIT",
"authors": [
{
"name": "Rowan Hill"
}
],
"archive": {
"exclude": ["/test", "composer.phar", "wiremock"]
},
"autoload": {
"psr-0": {"WireMock\\": "src"}
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"require": {
"ext-json": "*",
"ext-curl": "*",
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phake/phake": "^4.2",
"hamcrest/hamcrest-php": "^2.0",
"phpdocumentor/reflection-docblock": "^5.3",
"phpdocumentor/type-resolver": "^1.6"
},
"suggest": {
"phpunit/phpunit": "Thrown VerificationExceptions automatically fail tests"
},
"scripts": {
"serdegen": "WireMock\\SerdeGen\\WireMockSerdeGen::generateAndSaveWireMockSerdeLookup",
"test": "cd test && phpunit --configuration phpunit.xml --debug --verbose && cd .."
}
}