-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.78 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.78 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
59
60
61
62
63
64
65
66
67
{
"name": "kiriminaja/kiriminaja-php",
"description": "PHP clients for KiriminAja API",
"version": "2.1.1",
"license": "MIT",
"keywords": [
"kiriminaja",
"kirimin aja",
"cod",
"shipment aggregator",
"fulfillment"
],
"authors": [
{
"name": "Daewu Bintara",
"email": "daewubintara@kiriminaja.com"
},
{
"name": "Yanuar Aditia",
"email": "yanuar@kiriminaja.com"
}
],
"homepage": "https://kiriminaja.com",
"type": "library",
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"guzzlehttp/guzzle": ">=6.0",
"ext-json": "*",
"blakvghost/php-validator": "^2.3"
},
"autoload": {
"psr-4": {
"KiriminAja\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KiriminAja\\": [
"tests/"
]
},
"files": [
"tests/Laravel/helpers.php"
]
},
"require-dev": {
"illuminate/config": "^10.0||^11.0||^12.0",
"illuminate/container": "^10.0||^11.0||^12.0",
"illuminate/contracts": "^10.0||^11.0||^12.0",
"illuminate/support": "^10.0||^11.0||^12.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5||^11.0"
},
"suggest": {
"illuminate/contracts": "Required for Laravel cache store integration",
"illuminate/support": "Required for Laravel service provider integration",
"codeigniter4/framework": "Required for the CodeIgniter 4 cache adapter and bootstrap helper"
},
"extra": {
"laravel": {
"providers": [
"KiriminAja\\Laravel\\KiriminAjaServiceProvider"
]
}
}
}