forked from pact-foundation/pact-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.52 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
57
58
59
60
61
{
"name": "mattersight/phppact",
"keywords": [
"mattersight",
"pact",
"pact-php"
],
"homepage": "https://github.com/Mattersight/php-pact",
"description": "Enables consumer driven contract testing, following the PACT foundation principles.",
"license": "MIT",
"authors": [
{
"name": "Mattermack",
"email": "[email protected]"
},
{
"name": "Nicholas Brink",
"email": "[email protected]"
}
],
"config": {
"platform": {
"php": "7.0"
}
},
"require": {
"php": "^7.0",
"ext-openssl": "*",
"symfony/process": "^3.0",
"symfony/filesystem": "^3.0",
"guzzlehttp/guzzle": "^6.3",
"symfony/console": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"friendsofphp/php-cs-fixer": "^2.10",
"mockery/mockery": "^1.0",
"slim/slim": "^3.9"
},
"autoload": {
"psr-4": {
"PhpPact\\": "src/PhpPact"
}
},
"autoload-dev": {
"psr-4": {
"PhpPactTest\\": "tests/PhpPact",
"Consumer\\": [
"example/src/Consumer",
"example/tests/Consumer"
]
}
},
"scripts": {
"start-provider": "php -S localhost:58000 -t example/src/Provider/public/",
"test": [
"php-cs-fixer fix --config .php_cs",
"phpunit --debug"
]
}
}