-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.14 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.14 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
{
"name": "c975l/config-bundle",
"type": "symfony-bundle",
"description": "Used to get/set the config params for a Symfony app",
"keywords": ["symfony", "bundle", "config"],
"homepage": "https://github.com/975L/ConfigBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Marquet",
"email": "laurent.marquet@laposte.net",
"homepage": "https://github.com/LaurentMarquet",
"role": "Developer"
},
{
"name": "975L Community",
"homepage": "https://github.com/975L"
}
],
"require": {
"php": ">=8.0",
"c975l/site-bundle": "*",
"symfony/form": "*",
"symfony/yaml": "*"
},
"require-dev": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"c975L\\ConfigBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"support": {
"email": "contact@975l.com",
"source": "https://github.com/975L/ConfigBundle",
"issues": "https://github.com/975L/ConfigBundle/issues"
}
}