forked from elbformat/symfony-behat-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.17 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": "elbformat/symfony-behat-bundle",
"description": "Predefined, extensible behat contexts for symfony applications.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": [
"symfony",
"behat"
],
"authors": [
{
"name": "Hannes Giesenow",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {
"Elbformat\\SymfonyBehatBundle\\": "src/",
"Elbformat\\SymfonyBehatBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-json": "*",
"behat/behat": "^3.8",
"friends-of-behat/symfony-extension": "^2.2",
"symfony/dom-crawler": "^5.4|^6.2",
"symfony/property-access": "^5.4|^6.2"
},
"require-dev": {
"doctrine/orm": "^2.12",
"friendsofphp/php-cs-fixer": "^3.3",
"phpunit/phpunit": "^9.5",
"slope-it/clock-mock": "^0.4.0",
"symfony/framework-bundle": "^5.4|^6.2",
"symfony/http-client": "^5.4|^6.2",
"symfony/mailer": "^5.4|^6.2",
"vimeo/psalm": "^4.13"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
},
"sort-packages": true
}
}