-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
43 lines (43 loc) · 1.04 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
{
"name": "red-jasmine/region",
"description": "region",
"license": "MIT",
"authors": [
{
"name": "liushoukun",
"email": "liushoukun66@gmail.com",
"homepage": "https://github.com/liushoukun66"
}
],
"homepage": "https://github.com/red-jasmine/region",
"keywords": ["Laravel", "Region"],
"require": {
"red-jasmine/support": "1.0.x-dev",
"paquettg/php-html-parser": "^2.2",
"overtrue/laravel-pinyin": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"RedJasmine\\Region\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedJasmine\\Region\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"RedJasmine\\Region\\RegionPackageServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
}
}