-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
77 lines (77 loc) · 2.1 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.2",
"ext-json": "*",
"illuminate/support": "^11.0",
"guzzlehttp/guzzle": "~6.0|~7.0",
"nesbot/carbon": "^2.53.1|^3.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"nunomaduro/collision": "^8.0",
"roave/security-advisories": "dev-latest",
"larastan/larastan": "^3.0.2",
"laravel/pint": "^1.13",
"pestphp/pest": "^3.7.4",
"pestphp/pest-plugin-type-coverage": "^3.2.3",
"rector/rector": "^2.0.7"
},
"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
}
}
}