forked from fsi-open/admin-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.64 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
{
"name": "fsi/admin-bundle",
"type": "symfony-bundle",
"description": "FSi Admin Bundle. Admin generator for Symfony2.",
"keywords": ["admin", "panel", "symfony2", "bundle", "fsi"],
"license": "MIT",
"authors": [
{
"name": "Norbert Orzechowicz",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"twig/twig": "~1.2",
"symfony/framework-bundle" : "~2.3",
"symfony/form" : "~2.3",
"symfony/options-resolver": "~2.3",
"sensio/framework-extra-bundle": "~2.3",
"symfony/twig-bundle": "~2.3",
"fsi/datagrid-bundle" : "1.0.*",
"fsi/datasource-bundle" : "1.2.*",
"fsi/data-indexer" : "0.9.*",
"knplabs/knp-menu-bundle": "1.1.*"
},
"require-dev": {
"symfony/class-loader": "2.3.*",
"ext-pdo_sqlite": "*",
"fsi/resource-repository-bundle": "1.0.*",
"doctrine/doctrine-bundle": "1.2.*@dev",
"phpspec/phpspec": "2.0.*@dev",
"behat/behat": "*@stable",
"behat/symfony2-extension": "*@stable",
"behat/mink-extension": "*",
"behat/mink-browserkit-driver": "*",
"behat/mink-selenium2-driver": "*",
"sensiolabs/behat-page-object-extension": "1.0.*@dev",
"bossa/phpspec2-expect": "dev-master",
"fzaninotto/faker": "1.2.*"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-0": {
"FSi\\Bundle\\AdminBundle\\": ""
}
},
"target-dir" : "FSi/Bundle/AdminBundle",
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}