-
-
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.27 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.27 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/contactform-bundle",
"type": "symfony-bundle",
"description": "Bundle to manage simple contact form",
"keywords": ["symfony", "bundle", "contact"],
"homepage": "https://github.com/975L/ContactFormBundle",
"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": "*",
"c975l/site-bundle": "*",
"symfony/form": "*",
"symfony/security-bundle": "*",
"twig/intl-extra": "*",
"karser/karser-recaptcha3-bundle": "*"
},
"require-dev": {
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"c975L\\ContactFormBundle\\": "src/"
}
},
"config": {
"sort-packages": true
},
"support": {
"email": "contact@975l.com",
"source": "https://github.com/975L/ContactFormBundle",
"issues": "https://github.com/975L/ContactFormBundle/issues"
}
}