-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·49 lines (49 loc) · 1 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
{
"name": "azuyalabs/waqi",
"description": "Simple PHP Wrapper for the World Air Quality Index API",
"keywords": [
"air quality",
"AQI",
"API",
"pollution",
"pm2.5",
"WAQI",
"air"
],
"type": "library",
"homepage": "https://github.com/azuyalabs/waqi",
"license": "MIT",
"authors": [
{
"name": "Sacha Telgenhof",
"email": "[email protected]",
"homepage": "https://www.sachatelgenhof.nl",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"mockery/mockery": "^1.2",
"friendsofphp/php-cs-fixer": "^2.1",
"phpunit/phpunit": "^7.4",
"fzaninotto/faker": "^1.6",
"phpstan/phpstan": "^0.10"
},
"autoload": {
"psr-4": {
"Azuyalabs\\WAQI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Azuyalabs\\WAQI\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix ."
}
}