forked from pact-foundation/pact-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pact-foundation/pact-php",
"keywords": [
"pact",
"pact-php"
],
"homepage": "https://github.com/pact-foundation/pact-php",
"description": "Enables consumer driven contract testing, following the PACT foundation principles.",
"license": "MIT",
"authors": [
{
"name": "Mattermack",
"email": "c.f.mack@gmail.com"
},
{
"name": "Nicholas Brink",
"email": "nick.brink@mattersight.com"
}
],
"require": {
"php": "^7.3 |^8.0",
"ext-openssl": "*",
"ext-json": "*",
"composer/semver": "^1.4.0|^3.2.0",
"amphp/amp": "^2.5.1",
"amphp/byte-stream": "^1.8",
"amphp/dns": "^1.2.3",
"amphp/hpack": "^3.1.0",
"amphp/http-server": "^2.1",
"amphp/log": "^1.1",
"amphp/process": "^1.1.1",
"amphp/serialization": "^1.0",
"amphp/socket": "^1.1.3",
"amphp/sync": "^1.4.0",
"amphp/cache": "v1.4.0",
"amphp/windows-registry": "v0.3.3",
"guzzlehttp/guzzle": "^7.2.0",
"phpunit/phpunit": ">=8.2.3"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"mockery/mockery": "^1.4.2",
"slim/slim": "^4.6",
"slim/psr7": "^1.2.0",
"friendsofphp/php-cs-fixer": "^3.0",
"php-amqplib/php-amqplib": "^3.0",
"phpstan/phpstan": "^0.12.90"
},
"autoload": {
"psr-4": {
"PhpPact\\": "src/PhpPact"
}
},
"autoload-dev": {
"psr-4": {
"PhpPactTest\\": "tests/PhpPact",
"Consumer\\": [
"example/src/Consumer",
"example/tests/Consumer"
],
"MessageConsumer\\": [
"example/src/MessageConsumer",
"example/tests/MessageConsumer"
],
"MessageProvider\\": [
"example/src/MessageProvider",
"example/tests/MessageProvider"
]
}
},
"scripts": {
"post-update-cmd": [
"\\PhpPact\\Standalone\\Installer\\InstallManager::uninstall"
],
"start-provider": "php -S localhost:58000 -t example/src/Provider/public/",
"static-code-analysis": "phpstan analyse src/ --level=5",
"lint": "php-cs-fixer fix --config .php-cs-fixer.php --dry-run",
"fix": "php-cs-fixer fix --config .php-cs-fixer.php",
"test": "phpunit --debug -c example/phpunit.all.xml"
}
}