-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·37 lines (37 loc) · 1.25 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": "redkite-labs/redkite-labs-bootstrap-bundle",
"description": "RedKiteLabsBootstrapBundle 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": ["redkite-labs", "bootstrap", "bundle", "autoload"],
"homepage": "http://redkite-labs.com",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "RedKite Labs",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.2.*",
"twig/extensions": "1.0.*",
"symfony/assetic-bundle": "2.3.*",
"symfony/swiftmailer-bundle": "2.3.*",
"symfony/monolog-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"sensio/framework-extra-bundle": "2.3.*",
"sensio/generator-bundle": "2.3.*",
"mikey179/vfsStream": "1.1.0"
},
"autoload": {
"psr-0": {
"RedKiteLabs\\RedKiteCms\\BootstrapBundle": ""
}
},
"minimum-stability": "dev",
"target-dir" : "RedKiteLabs/RedKiteCms/BootstrapBundle"
}