-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
41 lines (41 loc) · 1.2 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
{
"name": "dekiakbar/indonesia-regions-php-client",
"description": "This package will retrieve and extract regions of Indonesia from https://bps.go.id",
"version": "1.2.1",
"type": "library",
"require": {
"php": "^7.2|^7.3|^7.4|^8.0",
"ext-json": "*",
"ext-curl": "*",
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0"
},
"license": "MIT",
"keywords": ["bps", "api", "php","region","indonesia"],
"homepage": "https://github.com/dekiakbar/indonesia-regions-php-client",
"authors": [
{
"name": "Deki Akbar",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dekiakbar\\IndonesiaRegionsPhpClient\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"extra": {
"laravel": {
"providers": [
"Dekiakbar\\IndonesiaRegionsPhpClient\\Adapter\\Laravel\\RegionServiceProvider"
],
"aliases": {
"Region": "Dekiakbar\\IndonesiaRegionsPhpClient\\Adapter\\Laravel\\RegionFacade"
}
}
}
}