-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
76 lines (76 loc) · 2.15 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
{
"name": "dutchie027/wallbox",
"description": "This library calls on the Wallbox API to get information about the EV statistics from their charger",
"license": "MIT",
"type": "library",
"keywords": [
"Wallbox",
"Electric Vehicle",
"Statistics",
"Charger",
"PHP",
"Composer",
"System Administration"
],
"authors": [
{
"name": "Justin Rodino",
"email": "justin@rodino.dev"
}
],
"require": {
"php": ">=8.1",
"monolog/monolog": "^3.0",
"guzzlehttp/guzzle": "^7.5",
"serhiy/pushover": "^1.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"dutchie027\\Wallbox\\": "src/"
}
},
"support": {
"forum": "https://github.com/dutchie027/wallbox-api/discussions",
"issues": "https://github.com/dutchie027/wallbox-api/issues",
"source": "https://github.com/dutchie027/wallbox-api/tree/main"
},
"autoload-dev": {
"psr-4": {
"dutchie027\\Test\\Wallbox\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9",
"composer/composer": "^2.4",
"psalm/phar": "^4.27"
},
"scripts": {
"post-install-cmd": [
"dutchie027\\Wallbox\\Init\\Setup::generateBlankIni"
],
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "./vendor/bin/phpunit",
"genini": "dutchie027\\Wallbox\\Init\\Setup::generateBlankIni",
"stan": "./vendor/bin/phpstan --no-progress",
"psalm": "./vendor/bin/psalm.phar --show-info=true",
"runall": [
"@fix",
"@test",
"@stan"
]
},
"scripts-descriptions": {
"test": "Runs phpunit tests",
"fix": "Runs PHP-CS Fixer",
"stan": "Runs phpstan to check standards",
"runall": "Runs all tests (fixer, phpunit, phpstan)",
"genini": "Generates the default .ini file"
}
}