-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.92 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
{
"name": "presta/behat-evaluator",
"description": "The PrestaBehatEvaluator library leverages adapters to evaluate and transform input values into more complex objects.",
"keywords": ["symfony", "behat", "evaluate", "parser", "provider"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Benoit Jouhaud",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-intl": "*",
"doctrine/collections": "^1.0|^2.0",
"doctrine/inflector": "^2.0",
"symfony/expression-language": "^6.0|^7.0",
"zenstruck/foundry": "^2.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"behat/behat": "^3.14",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^3.2.1",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5|^11.3",
"symfony/console": "^6.0|^7.0",
"symfony/dotenv": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/phpunit-bridge": "^6.0|^7.0",
"symfony/runtime": "^6.0|^7.0",
"symfony/var-dumper": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"symplify/easy-coding-standard": "^12.3"
},
"autoload": {
"psr-4": {
"Presta\\BehatEvaluator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Presta\\BehatEvaluator\\Tests\\Application\\": "tests/Application/src/",
"Presta\\BehatEvaluator\\Tests\\Behat\\": "tests/Behat/",
"Presta\\BehatEvaluator\\Tests\\Integration\\": "tests/Integration/",
"Presta\\BehatEvaluator\\Tests\\Resources\\": "tests/Resources/",
"Presta\\BehatEvaluator\\Tests\\Unit\\": "tests/Unit/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
},
"minimum-stability": "stable"
}