-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.62 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.62 KB
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
82
83
84
85
86
87
88
89
90
91
{
"name": "toovalu-github/translation-form-bundle",
"type": "symfony-bundle",
"description": "Translate your doctrine objects easily with some helpers",
"keywords": [
"symfony",
"doctrine2",
"i18n",
"internationalization",
"translation",
"translatable",
"form",
"knplabs",
"prezent"
],
"homepage": "https://github.com/toovalu-github/TranslationFormBundle",
"license": "MIT",
"authors": [
{
"name": "Toovalu",
"homepage": "http://www.toovalu.com"
},
{
"name": "David ALLIX",
"homepage": "http://a2lix.fr"
},
{
"name": "Contributors",
"homepage": "https://github.com/a2lix/TranslationFormBundle/contributors"
}
],
"require": {
"php": "^8.5",
"a2lix/auto-form-bundle": "0.4.8",
"doctrine/dbal": "^4.0",
"doctrine/orm": "^3.0",
"doctrine/persistence": "^4.0",
"phpdocumentor/reflection-docblock": "^5.6|^6.0",
"symfony/config": "^7.4",
"symfony/dependency-injection": "^7.4",
"symfony/doctrine-bridge": "^7.4",
"symfony/event-dispatcher": "^7.4",
"symfony/form": "^7.4",
"symfony/http-foundation": "^7.4",
"symfony/http-kernel": "^7.4",
"symfony/options-resolver": "^7.4",
"symfony/property-info": "^7.4"
},
"require-dev": {
"amphp/dns": "^2.1.2",
"friendsofphp/php-cs-fixer": "^3.45",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.18",
"matthiasnoback/symfony-dependency-injection-test": "^6.0",
"phpstan/phpstan": "^2.0",
"rector/rector": "^2.0",
"symfony/cache": "^7.4",
"symfony/phpunit-bridge": "^7.4",
"symfony/validator": "^7.4",
"toovalu-github/doctrine-behaviors": "^3.0",
"vimeo/psalm": "^6.0"
},
"suggest": {
"knplabs/doctrine-behaviors": "For Knp strategy",
"prezent/doctrine-translatable-bundle": "For Prezent strategy"
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix --verbose"
],
"psalm": [
"psalm"
],
"phpunit": [
"SYMFONY_DEPRECATIONS_HELPER=max[self]=0 phpunit"
]
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": { "A2lix\\TranslationFormBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "A2lix\\TranslationFormBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}