-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 790 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 790 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
{
"name": "waapi/waapi-php-sdk",
"description": "The official EAZE WhatsApp PHP SDK",
"keywords": ["eaze", "whatsapp", "api", "sdk", "library"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"WaAPI\\WaAPISdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WaAPI\\WaAPISdk\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^8.4|^9.5|^10.0|^11.0",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.8|^2.0"
},
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3.1|^7.5"
},
"config": {
"sort-packages": true
}
}