-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1018 Bytes
/
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
{
"name": "accordous/z-api-client",
"description": "Client for Z-API",
"type": "library",
"authors": [
{
"name": "Accordous",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Accordous\\ZAPIClient\\Providers\\ZAPIClientServiceProvider"
],
"aliases": {
"ZAPIClient" : "Accordous\\ZAPIClient\\Facades\\ZAPIClient"
}
}
},
"autoload": {
"psr-4": {
"Accordous\\ZAPIClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Accordous\\ZAPIClient\\Tests\\": "tests/"
}
},
"require": {
"illuminate/support": "^10.0",
"illuminate/http": "^10.0",
"guzzlehttp/guzzle": "^7.9",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.5"
}
}