-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
59 lines (59 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "jhowbhz/package-apigratis",
"description": "Uma forma simples de consumir serviços gratuitos oferecidos pelo site https://apigratis.com.br/",
"keywords": [
"apigratis",
"whatsapp",
"messages",
"api",
"myzap",
"messages free",
"php requests"
],
"homepage": "https://apigratis.com.br",
"authors": [
{
"name": "Jhon",
"email": "[email protected]",
"homepage": "https://apigratis.com.br",
"role": "Developer"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0",
"composer/composer": "^2.2.0",
"guzzlehttp/guzzle": "^7.3"
},
"require-dev": {
"php": ">=8.0",
"phpunit/phpunit": "^9.5",
"guzzlehttp/guzzle": "^7.3",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"ApiGratis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiGratis\\Test\\": "tests"
}
},
"suggest": {
"ext-curl": "Required by ApiGratis\\ to requests in services.",
"guzzlehttp/guzzle": "Guzzle is a PHP HTTP client library and framework for building RESTful web service clients."
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"scripts": {
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}