-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 885 Bytes
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 885 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
{
"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": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}