-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 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
43
44
45
46
47
48
49
50
{
"name" : "kinoba/coupon-bundle",
"type": "symfony-bundle",
"description": "Coupon bundle for Symfony",
"keywords": [
"coupon",
"code",
"promo",
"bundle",
"symfony"
],
"homepage": "https://github.com/Kinoba/KinobaCouponBundle",
"license": "MIT",
"prefer-stable": true,
"authors": [
{
"name": "Kinoba",
"email": "[email protected]",
"homepage": "https://kinoba.fr"
}
],
"require": {
"php": ">=5.6",
"doctrine/orm": "^2.5.11",
"doctrine/doctrine-bundle": "^1.6.10|^2.0",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/framework-bundle": "~3.4 || ~4.1"
},
"require-dev": {
"pdepend/pdepend": "^2.5",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"squizlabs/php_codesniffer": "3.*",
"symfony/phpunit-bridge": "~5.2"
},
"autoload" : {
"psr-4": {
"Kinoba\\CouponBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kinoba\\CouponBundle\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}