-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
60 lines (60 loc) · 1.8 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
{
"name": "jbtronics/settings-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "A symfony bundle to easily create typesafe, user-configurable settings for symfony applications",
"keywords": ["settings", "config", "symfony", "symfony-bundle", "user-configurable"],
"autoload": {
"psr-4": {
"Jbtronics\\SettingsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jbtronics\\SettingsBundle\\Tests\\TestApplication\\": "tests/TestApplication/src/",
"Jbtronics\\SettingsBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Jan Böhmer",
"email": "mail@jan-boehmer.de"
}
],
"suggest": {
"symfony/twig-bridge": "Allows to access settings in twig templates",
"doctrine/doctrine-bundle": "To use the doctrine ORM storage"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/translation-contracts": "^2.5|^3.0",
"symfony/validator": "^6.4|^7.0",
"symfony/form": "^6.4|^7.0",
"symfony/var-exporter": "^6.4|^7.0",
"ergebnis/classy": "^1.6",
"symfony/translation": "^7.0|^6.4",
"symfony/deprecation-contracts": "^3.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^6.4|^7.0",
"phpunit/phpunit": "^9.5",
"symfony/security-csrf": "^7.0|^6.4",
"phpstan/phpstan": "^1.10",
"ekino/phpstan-banned-code": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/extension-installer": "^1.3",
"symfony/twig-bridge": "^6.4|^7.0",
"phpstan/phpstan-symfony": "^1.3",
"doctrine/doctrine-bundle": "^2.11",
"doctrine/orm": "^3.0",
"doctrine/doctrine-fixtures-bundle": "^3.5"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}