-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
65 lines (65 loc) · 1.9 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
{
"name": "knplabs/dictionary-bundle",
"description": "Are you often tired to repeat static choices like gender or civility in your apps ?",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"dictionary"
],
"authors": [
{
"name": "Knplabs",
"homepage": "http://knplabs.com"
},
{
"name": "Shivoham",
"homepage": "https://github.com/Shivoham"
}
],
"require": {
"php": ">=8.1",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/form": "^5.4 || ^6.4 || ^7.0",
"symfony/http-foundation": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.4 || ^7.0",
"symfony/validator": "^5.4 || ^6.4 || ^7.0",
"twig/twig": "^2.15.3 || ^3.4.3"
},
"require-dev": {
"fakerphp/faker": "1.23.1",
"friends-of-phpspec/phpspec-code-coverage": "6.3.0",
"friendsofphp/php-cs-fixer": "3.58.1",
"pedrotroller/php-cs-custom-fixer": "2.33.0",
"phpspec/phpspec": "7.5.0",
"phpspec/prophecy": "1.19.0",
"phpstan/phpstan": "1.11.3",
"rector/rector": "1.1.0",
"symfony/twig-bridge": "^5.4 || ^6.4 || ^7.0",
"symfony/var-dumper": "^5.4 || ^6.4 || ^7.0",
"webmozart/assert": "1.11.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Knp\\DictionaryBundle\\": "src/Knp/DictionaryBundle"
}
},
"autoload-dev": {
"psr-4": {
"spec\\Knp\\": "spec/Knp",
"spec\\PHPSpec\\": "spec/PHPSpec"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.5.x-dev"
}
}
}