-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.71 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
{
"name": "jbtcd/fitbit",
"description": "Fitbit provider fot authentication and data collection.",
"type": "library",
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"symfony/http-client": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
},
"license": "MIT",
"keywords": [
"fitbit",
"client",
"api",
"oauth2",
"authentication"
],
"scripts": {
"phpcs": "vendor/bin/phpcs",
"phplint": "vendor/bin/parallel-lint . --exclude vendor",
"phpmd": "vendor/bin/phpmd ./src text ruleset.xml",
"phpunit": "vendor/bin/phpunit --coverage-text --colors=never",
"phploc": "vendor/bin/phploc src tests",
"phpstan": "vendor/bin/phpstan analyse -l 4 src tests",
"phpcpd": "vendor/bin/phpcpd src tests",
"tests": [
"@phpcs",
"@phplint",
"@phpmd",
"@phpunit",
"@phploc",
"@phpstan",
"@phpcpd"
]
},
"minimum-stability": "stable",
"authors": [
{
"name": "Jonah Böther",
"email": "[email protected]",
"homepage": "https://jbtcd.me"
}
],
"autoload": {
"psr-4": {
"jbtcd\\Fitbit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"jbtcd\\FitbitTest\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8",
"php-parallel-lint/php-parallel-lint": "^1.0",
"phploc/phploc": "^7.0",
"phpstan/phpstan": "^0.12.4",
"sebastian/phpcpd": "^6.0"
}
}