-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
42 lines (42 loc) · 1.27 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": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.2.*",
"stof/doctrine-extensions-bundle": "dev-master",
"sonata-project/admin-bundle": "2.2.*@dev",
"sonata-project/doctrine-orm-admin-bundle": "2.2.*@dev",
"sonata-project/cache-bundle": "2.1.*@dev",
"knplabs/knp-paginator-bundle": "2.3.*",
"zendframework/zend-feed": "2.0.*"
},
"suggest": {
"liip/functional-test-bundle": "functional testing bundle",
"doctrine/doctrine-fixtures-bundle": "required for functional testing",
"doctrine/data-fixtures": "required for functional testing"
},
"repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
}
],
"autoload": {
"psr-0": {
"Stfalcon\\Bundle\\BlogBundle": ""
}
},
"target-dir": "Stfalcon/Bundle/BlogBundle"
}