-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 951 Bytes
/
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
{
"name": "waqidevs/waqi-php-client",
"description": "PHP wrapper for the AQICN (air quality) APIs",
"keywords": ["AQICN", "API", "wrapper", "WAQI", "air quality"],
"homepage": "https://github.com/waqi-dev-community/waqi-php-client",
"license": "MIT",
"authors": [
{
"name": "Nonso Mgbechi",
"email": "[email protected]",
"homepage": "https://kingdageek.github.io"
},
{
"name": "Omoniyi Omotoso",
"email": "[email protected]",
"homepage": "https://niyiomotoso.github.io"
}
],
"require": {
"php": "^7.2 || ^8.0",
"guzzlehttp/guzzle": "^7.0"
},
"autoload": {
"psr-4": {
"WAQI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WAQI\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9"
}
}