-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathcomposer.json
More file actions
95 lines (95 loc) · 2.88 KB
/
composer.json
File metadata and controls
95 lines (95 loc) · 2.88 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
92
93
94
95
{
"name": "a2lix/translation-form-bundle",
"type": "symfony-bundle",
"description": "Translate your doctrine objects easily with some helpers",
"keywords": [
"symfony",
"doctrine2",
"i18n",
"internationalization",
"translation",
"translatable",
"form",
"knplabs",
"gedmo",
"prezent"
],
"homepage": "https://github.com/a2lix/TranslationFormBundle",
"license": "MIT",
"authors": [
{
"name": "David ALLIX",
"homepage": "http://a2lix.fr"
},
{
"name": "Contributors",
"homepage": "https://github.com/a2lix/TranslationFormBundle/contributors"
}
],
"require": {
"php": "^8.4",
"a2lix/auto-form-bundle": "^1.0",
"symfony/config": "^7.4|^8.0",
"symfony/dependency-injection": "^7.4|^8.0",
"symfony/doctrine-bridge": "^7.4|^8.0",
"symfony/event-dispatcher": "^7.4|^8.0",
"symfony/form": "^7.4|^8.0",
"symfony/http-kernel": "^7.4|^8.0",
"symfony/intl": "^7.4|^8.0",
"symfony/options-resolver": "^7.4|^8.0",
"symfony/translation": "^7.4|^8.0",
"symfony/ux-twig-component": "^2.31|^3.0"
},
"require-dev": {
"doctrine/orm": "^3.5.8",
"friendsofphp/php-cs-fixer": "^3.91.3",
"knplabs/doctrine-behaviors": "^3.0.0",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.35.1",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.33",
"phpstan/phpstan-doctrine": "^2.0.12",
"phpstan/phpstan-phpunit": "^2.0.10",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpstan/phpstan-symfony": "^2.0.9",
"phpunit/phpunit": "^13.0.5",
"rector/rector": "^2.2.14",
"stof/doctrine-extensions-bundle": "^1.14",
"symfony/cache": "^7.4|^8.0",
"symfony/validator": "^7.4|^8.0",
"symfony/var-dumper": "^7.4|^8.0"
},
"suggest": {
"knplabs/doctrine-behaviors": "For Knp strategy",
"stof/doctrine-extensions-bundle": "For Gedmo strategy",
"prezent/doctrine-translatable-bundle": "For Prezent strategy"
},
"scripts": {
"cs-fixer": [
"php-cs-fixer fix --verbose"
],
"phpstan": [
"phpstan analyse --memory-limit=2G"
],
"phpunit": [
"phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": { "A2lix\\TranslationFormBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "A2lix\\TranslationFormBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-main": "4.x-dev"
}
}
}