-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.26 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
{
"name": "vdhicts/hihaho-api-client",
"description": "A client for the API of HiHaHo",
"keywords": [
"hihaho",
"api",
"client"
],
"homepage": "https://github.com/vdhicts/hihaho-api-client",
"license": "MIT",
"authors": [
{
"name": "Dick van der Heiden",
"email": "[email protected]",
"homepage": "https://www.vdhicts.nl",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"illuminate/http": "^8.74|^9.0|^10.0|^11.0",
"illuminate/support": "^8.22|^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.14",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Vdhicts\\HiHaHo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vdhicts\\HiHaHo\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}