forked from netflie/whatsapp-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.21 KB
/
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
43
44
{
"name": "netflie/whatsapp-cloud-api",
"description": "The first PHP SDK to send and receive messages using a cloud-hosted version of the WhatsApp Business Platform",
"type": "libray",
"authors": [
{
"name": "Álex Albarca",
"email": "[email protected]"
},
{
"name": "Álex Albarca",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"guzzlehttp/guzzle": "^7.0",
"vlucas/phpdotenv": "^5.4",
"myclabs/php-enum": "^1.8"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/var-dumper": "^5.0",
"phpspec/prophecy-phpunit": "^2.0",
"fakerphp/faker": "^1.19",
"friendsofphp/php-cs-fixer": "^3.13",
"phpstan/phpstan": "^1.9"
},
"autoload": {
"psr-4": {
"Netflie\\WhatsAppCloudApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Netflie\\WhatsAppCloudApi\\Tests\\": "tests"
}
},
"scripts": {
"unit-test": "vendor/bin/phpunit --group unit",
"integration-test": "vendor/bin/phpunit --group integration"
}
}