This repository was archived by the owner on Mar 9, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.23 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "c975l/services-bundle",
"type": "symfony-bundle",
"description": "Commons services used by c975L bundles",
"keywords": ["symfony", "bundle"],
"homepage": "https://github.com/975L/ServicesBundle",
"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/config-bundle": "*",
"cocur/slugify": "*",
"doctrine/orm": "*",
"symfony/routing": "*",
"symfony/security-bundle": "*",
"symfony/translation": "*"
},
"require-dev": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"c975L\\ServicesBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"support": {
"email": "contact@975l.com",
"source": "https://github.com/975L/ServicesBundle",
"issues": "https://github.com/975L/ServicesBundle/issues"
}
}