-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
77 lines (77 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
77
{
"name": "marcreichel/igdb-laravel",
"description": "A Laravel wrapper for version 4 of the IGDB API (Apicalypse) including webhook handling",
"keywords": [
"laravel",
"api-wrapper",
"igdb",
"igdb-api",
"apicalypse",
"wrapper"
],
"type": "library",
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "~6.0|~7.0",
"nesbot/carbon": "^2.53.1|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.4 || ^10.0.0",
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
"nunomaduro/collision": "^5.3|^6.1|^7.0|^8.0",
"roave/security-advisories": "dev-latest",
"larastan/larastan": "^2.9.2",
"laravel/pint": "^1.13",
"pestphp/pest": "^2",
"pestphp/pest-plugin-type-coverage": "^2.8.3"
},
"license": "MIT",
"authors": [
{
"name": "Marc Reichel",
"email": "[email protected]"
}
],
"scripts": {
"pint": "./vendor/bin/pint --test -v",
"test": "./vendor/bin/pest --parallel",
"stan": "./vendor/bin/phpstan --memory-limit=2G",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"@test --coverage --min=90 --coverage-clover build/clover.xml"
],
"test:coverage-html": [
"@putenv XDEBUG_MODE=coverage",
"@test --coverage --min=90 --coverage-html build/coverage"
],
"test:type-coverage": [
"@putenv XDEBUG_MODE=coverage",
"@test -- --type-coverage --min=100"
]
},
"autoload": {
"psr-4": {
"MarcReichel\\IGDBLaravel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MarcReichel\\IGDBLaravel\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"MarcReichel\\IGDBLaravel\\IGDBLaravelServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}