generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.49 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
{
"name": "kodepandai/laravel-rajaongkir",
"description": "RajaOngkir wrapper for Laravel",
"keywords": [
"kodepandai",
"laravel",
"laravel-rajaongkir",
"rajaongkir"
],
"homepage": "https://github.com/kodepandai/laravel-rajaongkir",
"license": "MIT",
"authors": [
{
"name": "Tio",
"email": "[email protected]",
"role": "Maintainer"
},
{
"name": "Akhmad",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": "^8",
"illuminate/config": "^8|^9",
"illuminate/support": "^8|^9"
},
"require-dev": {
"orchestra/testbench": "^6.15|^7",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.2"
},
"autoload": {
"psr-4": {
"Kodepandai\\LaravelRajaOngkir\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kodepandai\\LaravelRajaOngkir\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/pest --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Kodepandai\\LaravelRajaOngkir\\Provider\\RajaOngkirServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}