forked from stfalcon/BlogBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.22 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
{
"name": "stfalcon/blog-bundle",
"description": "Simple blog module.",
"keywords": ["blog"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Stepan Tanasiychuk",
"homepage": "http://blog.stfalcon.com",
"email": "ceo@stfalcon.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.0",
"symfony/symfony": ">=2.1",
"stof/doctrine-extensions-bundle": "dev-master",
"sonata-project/admin-bundle": "dev-master",
"sonata-project/doctrine-orm-admin-bundle": "dev-master",
"sonata-project/cache-bundle": "dev-master",
"knplabs/knp-paginator-bundle": "dev-master",
"zendframework/zend-feed": "2.0.*"
},
"require-dev": {
"liip/functional-test-bundle": "dev-master",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"doctrine/data-fixtures": "dev-master"
},
"repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
}
],
"autoload": {
"psr-0": {
"Stfalcon\\Bundle\\BlogBundle": ""
}
},
"target-dir": "Stfalcon/Bundle/BlogBundle"
}