-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.3 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
{
"name": "anime-db/catalog-bundle",
"license": "GPL-3.0",
"type": "library",
"description": "The application for making home collection anime",
"homepage": "http://anime-db.org",
"authors": [
{
"name": "Anime DB",
"homepage": "http://anime-db.org"
},
{
"name": "Peter Gribanov",
"email": "[email protected]"
},
{
"name": "Anime DB Community",
"homepage": "https://github.com/anime-db/catalog-bundle/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"AnimeDb\\Bundle\\CatalogBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AnimeDb\\Bundle\\CatalogBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*",
"knplabs/knp-menu-bundle": "2.1.*",
"anime-db/app-bundle": ">=0.4.0"
},
"require-dev": {
"anime-db/anime-db": "dev-master",
"phpunit/phpunit": "^4.8.0",
"scrutinizer/ocular": "1.3.*",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"ext-intl": "Allows correct sort form view"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}