forked from azishapidin/indoregion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
72 lines (72 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "dicibi/indoregion",
"description": "Package containing region of Indonesia (provinces, regencies, districts, and villages) for Laravel",
"license": "MIT",
"keywords": [
"laravel",
"php",
"csv",
"indonesia",
"provinces",
"regencies",
"districts",
"villages",
"region"
],
"authors": [
{
"name": "Azis Hapidin",
"email": "[email protected]"
},
{
"name": "cacing69",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/console": "^8.0|^9.0|^10.0|^11.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
"league/csv": "^9.8.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"orchestra/testbench": "^9.0",
"laravel/pint": "^1.1",
"pestphp/pest": "^2.34"
},
"autoload": {
"psr-4": {
"Dicibi\\IndoRegion\\": "src/",
"Dicibi\\IndoRegion\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Dicibi\\IndoRegion\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Dicibi\\IndoRegion\\IndoRegionServiceProvider"
],
"aliases": {}
}
},
"homepage": "https://azishapidin.com/",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}