-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.44 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
{
"name": "jomweb/billplz-laravel",
"description": "Laravel adapter for Billplz",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "crynobone@gmail.com"
}
],
"autoload": {
"psr-4": {
"Billplz\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Billplz\\Laravel\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/support": "^10.0 || ^11.0",
"jomweb/billplz": "^5.2",
"php-http/guzzle7-adapter": "^1.0"
},
"require-dev": {
"larastan/larastan": "^2.0",
"nunomaduro/collision": "^7.5 || ^8.0",
"orchestra/pest-plugin-testbench": "^2.0",
"orchestra/testbench": "^8.22 || ^9.0",
"phpunit/phpunit": "^10.5"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
},
"laravel": {
"providers": [
"Billplz\\Laravel\\BillplzServiceProvider"
],
"aliases": {
"Billplz": "Billplz\\Laravel\\Billplz"
}
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}