forked from tienvx/codeception-pact-php-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 974 Bytes
/
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
{
"name":"tienvx/codeception-pact-php-extension",
"description":"Codeception Extensions For PACT PHP",
"keywords":["codeception", "extensions", "pact", "contract testing", "pact-php"],
"homepage":"https://github.com/tienvx/codeception-pact-php-extension",
"type":"library",
"license":"MIT",
"authors":[
{
"name": "Tien Xuan Vo",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Community contributions",
"homepage": "https://github.com/tienvx/codeception-pact-php-extension/contributors"
}
],
"require": {
"php": "^7.2.5",
"pact-foundation/pact-php": "^6.0",
"codeception/codeception": "^4.1"
},
"autoload": {
"psr-4": {
"CodeceptionPactPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodeceptionPactPhp\\Tests\\": "tests/"
}
}
}