forked from iak-id/iak-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1009 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 1009 Bytes
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
{
"name": "iak-id/iak-api-php",
"description": "PHP-based SDK for IAK API Services",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Indobest Artha Kreasi",
"email": "techsupport@mobilepulsa.com"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/iak-id/iak-api-php.git"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"IakID\\IakApiPHP\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": "^7.0|^8.0",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"vlucas/phpdotenv": "^4.2 || ^5.0",
"symfony/http-foundation": "^5.3"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "~1.3"
},
"scripts": {
"check-code": [
"vendor/bin/phpunit tests"
]
}
}