-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
48 lines (48 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
48
{
"name": "pccomponentes/open-api-messaging-context",
"description": "Behat context for validating messages with OpenApi schema",
"authors": [
{
"name": "Aarón Bernabeu Rodríguez",
"email": "[email protected]"
}
],
"license": "MIT",
"type": "library",
"autoload": {
"psr-4": {
"PcComponentes\\OpenApiMessagingContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PcComponentes\\OpenApiMessagingContext\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"beberlei/assert": "^3.3",
"behat/behat": "^3.13",
"friends-of-behat/mink": "^1.10",
"friends-of-behat/mink-browserkit-driver": "^1.6",
"friends-of-behat/mink-extension": "^2.7",
"friends-of-behat/symfony-extension": "^2.4",
"justinrainbow/json-schema": "^5.2",
"pccomponentes/ddd": "^3.0 || ^4.0",
"symfony/cache": "^5.0 || ^6.0 || ^7.0",
"symfony/messenger": "^5.0 || ^6.0 || ^7.0",
"symfony/yaml": "^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/var-dumper": "^5.0 || ^6.0 || ^7.0",
"pccomponentes/coding-standard": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
}
}