forked from ems-project/elasticms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 903 Bytes
/
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
{
"name" : "elasticms/form-bundle",
"description" : "Generate forms based on elasticms configurations",
"type" : "symfony-bundle",
"keywords" : [
"elasticms"
],
"license" : "MIT",
"authors" : [
{
"name" : "EMS Community",
"homepage" : "https://github.com/ems-project/EMSFormBundle/contributors"
}
],
"require" : {
"php": "^8.1",
"elasticms/client-helper-bundle": "5.15.*",
"giggsey/libphonenumber-for-php": "^8.12",
"symfony/form": "^5.4",
"symfony/intl": "^5.4",
"symfony/security-csrf": "^5.4",
"symfony/twig-bundle": "^5.4",
"symfony/validator": "^5.4"
},
"require-dev" : {
"symfony/test-pack": "^1.0"
},
"autoload" : {
"psr-4" : {
"EMS\\FormBundle\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"EMS\\FormBundle\\Tests\\" : "tests/"
}
},
"config": {
"lock": false,
"sort-packages": true
},
"scripts": {
"phpunit": "phpunit"
}
}