-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (34 loc) · 929 Bytes
/
composer.json
File metadata and controls
35 lines (34 loc) · 929 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
{
"name": "hostingbe/php-api",
"description": "PHP API client to connect to HostingBE's API, including logging and retry functionality.",
"keywords": ["php api", "google search", "bing search","info ipaddress"],
"license": "MIT",
"support": {
"issues": "https://github.com/HostingBE/php-api/issues",
"source": "https://github.com/HostingBE/php-api"
},
"authors": [
{
"name": "Constan van Suchtelen van de Haere",
"email": "constan.vansuchtelenvandehaere@hostingbe.com"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/guzzle": "^7.5",
"monolog/monolog": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"HostingBE\\phpapi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}