-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 loc) · 1.28 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
{
"name": "jbtronics/translation-editor-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "A symfony bundle to allow editing translations in the symfony profiler",
"keywords": ["translations", "profiler", "symfony", "symfony-bundle"],
"autoload": {
"psr-4": {
"Jbtronics\\TranslationEditorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jbtronics\\TranslationEditorBundle\\Tests\\TestApplication\\": "tests/TestApplication/src/",
"Jbtronics\\TranslationEditorBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jan Böhmer",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/translation-contracts": "^2.5|^3.0",
"symfony/translation": "^7.0|^6.4",
"symfony/deprecation-contracts": "^3.4",
"symfony/web-profiler-bundle": "^7.0|^6.4",
"symfony/twig-bundle": "^7.0|^6.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10",
"ekino/phpstan-banned-code": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}