-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
81 lines (81 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "azuyalabs/waqi",
"description": "Simple PHP Wrapper for the World Air Quality Index API",
"license": "MIT",
"type": "library",
"keywords": [
"air quality",
"AQI",
"API",
"pollution",
"pm2.5",
"WAQI",
"air"
],
"authors": [
{
"name": "Sacha Telgenhof",
"email": "[email protected]",
"homepage": "https://www.sachatelgenhof.com",
"role": "Maintainer"
}
],
"homepage": "https://github.com/azuyalabs/waqi",
"support": {
"issues": "https://gitlab.com/azuyalabs/waqi/-/issues",
"source": "https://gitlab.com/azuyalabs/waqi",
"docs": "https://gitlab.com/azuyalabs/waqi"
},
"funding": [
{
"type": "other",
"url": "https://www.buymeacoffee.com/sachatelgenhof"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"azuyalabs/php-cs-fixer-config": "^0.2",
"fakerphp/faker": "^1.23",
"infection/infection": "^0.26",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.5",
"vimeo/psalm": "^5.22"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Azuyalabs\\WAQI\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Azuyalabs\\WAQI\\Test\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"analyse": [
"@phpstan",
"@psalm",
"@infection"
],
"cs": "vendor/bin/php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix -v",
"infection": "vendor/bin/infection run -j 2",
"phpstan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm --threads=2",
"test": "vendor/bin/phpunit"
}
}