-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
56 lines (56 loc) · 1.51 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
{
"name": "tienvx/ux-collection-js",
"type": "symfony-bundle",
"description": "Symfony UX integration for collection form type",
"keywords": [
"symfony-ux",
"ux-collection-js"
],
"homepage": "https://github.com/tienvx/ux-collection-js",
"license": "MIT",
"authors": [
{
"name": "Tien",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/tienvx/ux-collection-js/contributors"
}
],
"autoload": {
"psr-4": {
"Tienvx\\UX\\CollectionJs\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tienvx\\UX\\CollectionJs\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"symfony/config": "^4.4|^5.0|^6.0",
"symfony/dependency-injection": "^4.4.17|^5.0|^6.0",
"symfony/form": "^4.4.17|^5.0|^6.0",
"symfony/http-kernel": "^4.4.17|^5.0|^6.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^4.4.17|^5.0|^6.0",
"symfony/twig-bundle": "^4.4.17|^5.0|^6.0"
},
"conflict": {
"symfony/flex": "<1.13"
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"thanks": {
"name": "ruano-a/symfonyCollectionJs",
"url": "https://github.com/ruano-a/symfonyCollectionJs"
}
}
}