forked from flobb/FlobFoundationBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name" : "florianbelhomme/foundation-bundle",
"description" : "Integrates the functionnalities of the responsive framework Foundation, from Zurb, into Symfony2 by providing templates, Twig extensions, services and commands.",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Florian Belhomme",
"email" : "contact@florianbelhomme.com",
"homepage" : "http://florianbelhomme.com",
"role" : "Developer"
}
],
"keywords" : [
"foundation",
"zurb",
"responsive",
"symfony",
"bundle"
],
"license" : [
"MIT"
],
"require" : {
"symfony/symfony" : ">=2.3",
"php" : ">=5.3.3"
},
"autoload" : {
"psr-0" : {
"FlorianBelhomme\\Bundle\\FoundationBundle" : ""
}
},
"target-dir" : "FlorianBelhomme/Bundle/FoundationBundle",
"suggest" : {
"knplabs/knp-paginator-bundle" : "FoundationBundle can styles the pagination provided by KnpPaginatorBundle.",
"knplabs/knp-menu-bundle" : "FoundationBundle can styles the menus provided by KnpMenuBundle.",
"florianbelhomme/foundation-demo-bundle" : "Provides you a demo and exemples of the functionnalities of this bundle."
}
}