-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.34 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.34 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
{
"name": "alphalemon/alphalemon-bootstrap-bundle",
"description": "AlphaLemonBootstrapBundle takes care to autoload and configure bundles on a composer base application. The responsibility to configure the bundle is delegated to the bundle's author, who implements an autoloader.json file, where declares the bundle's configuration.",
"keywords": ["alphalemon", "bootstrap", "bundle", "autoload"],
"homepage": "http://alphalemon.com",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "AlphaLemon",
"email": "info@alphalemon.com"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"symfony/symfony": "2.1.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.1.*",
"twig/extensions": "1.0.*@dev",
"symfony/assetic-bundle": "2.1.*",
"symfony/swiftmailer-bundle": "2.1.*",
"symfony/monolog-bundle": "2.1.*",
"sensio/distribution-bundle": "2.1.*",
"sensio/framework-extra-bundle": "2.1.*",
"sensio/generator-bundle": "2.1.*",
"jms/security-extra-bundle": "1.2.*",
"jms/di-extra-bundle": "1.1.*",
"kriswallsmith/assetic": "1.1.*@dev",
"mikey179/vfsStream": "1.1.0"
},
"autoload": {
"psr-0": {
"AlphaLemon\\BootstrapBundle": ""
}
},
"minimum-stability": "dev",
"target-dir" : "AlphaLemon/BootstrapBundle"
}