forked from m809745357/coupon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 917 Bytes
/
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
{
"name": "lian/coupon",
"description": "一个公用的优惠券管理工具",
"license": "MIT",
"authors": [
{
"name": "shenyifei",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lian\\Coupon\\": "./src/"
}
},
"require": {
"php": "^7.1",
"laravel/framework": "~5.5.0|~5.6.0|~5.8.0|~6.0"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "dev-master",
"orchestra/testbench": "~3.5.0|~3.6.0",
"phpunit/phpunit": "~6.0|~7.0"
},
"autoload-dev": {
"psr-4": {
"Lian\\Coupon\\Test\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Lian\\Coupon\\CouponServiceProvider"
]
}
}
}