-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "bitnoise/base-bundle",
"type": "symfony-bundle",
"description": "The BtnBaseBundle makes us (bitnoi.se team) happy",
"keywords": [ "bitnoise", "utilities"],
"homepage": "https://github.com/Bitnoise/BtnBaseBundle",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Bitnoise Team",
"homepage": "http://www.bitnoi.se/",
"email": "labs@bitnoi.se"
}
],
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "~2.0.0",
"fabpot/php-cs-fixer": "~0.5.0",
"phpmd/phpmd": "~2.0.0",
"sebastian/phpcpd": "~2.0.0",
"asm89/twig-lint": "~1.0.0"
},
"suggest": {
"raulfraile/ladybug-bundle": "~1.0.0"
},
"repositories": [
{
"type": "composer",
"url": "https://bitnoise.github.io/packages/"
}
],
"autoload": {
"psr-4": { "Btn\\BaseBundle\\": "src/Btn/BaseBundle/" }
},
"extra": {
"branch-alias": {
"dev-2.0": "2.0-dev"
}
}
}