-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 751 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 751 Bytes
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
{
"name" : "abdielcs/expanded-collection-bundle",
"description" : "Symfony 2 and 3 bundle for rendering a collection of entities as an expanded selectable list",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Abdiel Carrazana",
"email" : "abdielcs@gmail.com"
}],
"keywords" : [
"collection", "expanded","multiple","checkbox","list","symfony2","symfony3","form"
],
"license" : [
"MIT"
],
"require" : {
"symfony/framework-bundle": "~2.3|~3.0|~4.0|~5.0"
},
"autoload" : {
"psr-4" : {
"abdielcs\\ExpandedCollectionBundle\\" : ""
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.1.x-dev"
}
}
}