-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.85 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
{
"name": "vermaysha/laravel-wilayah-indonesia",
"version": "0.0.0",
"description": "Data Wilayah Administrasi Indonesia yang disusun ulang berdasarkan Provinsi, Kabupaten, Kecamatan dan Desa",
"keywords": [
"vermaysha",
"laravel",
"laravel-wilayah-indonesia"
],
"homepage": "https://github.com/vermaysha/laravel-wilayah-indonesia",
"readme": "https://github.com/vermaysha/laravel-wilayah-indonesia#readme",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ashary Vermaysha",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1|^8.2|^8.3|^8.4",
"laravel/framework": "^10.0|^11.0"
},
"autoload": {
"psr-4": {
"Vermaysha\\Territory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vermaysha\\Territory\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"extra": {
"laravel": {
"providers": [
"Vermaysha\\Territory\\TerritoryServiceProvider"
],
"aliases": {
"Territory": "Vermaysha\\Territory\\Facade\\Territory"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"laravel/pint": "^1.18"
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"lint": "@php vendor/bin/pint"
}
}