-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.11 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
{
"name": "seatplus/eveapi",
"description": "API for receiving information from esi",
"license": "MIT",
"authors": [
{
"name": "Felix Huber",
"email": "felix.a.huber@gmx.net"
}
],
"autoload": {
"psr-4": {
"Seatplus\\Eveapi\\": "src/",
"Seatplus\\Eveapi\\Database\\Factories\\": "database/factories"
},
"files": [
"./src/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Seatplus\\Eveapi\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-redis": "*",
"laravel/framework": "^11.0",
"laravel/horizon": "^5.0",
"seatplus/esi-client": "^3.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"nunomaduro/collision": "^v8.1",
"itsgoingd/clockwork": "^5.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"larastan/larastan": "^2.0",
"rector/rector": "^1.2",
"driftingly/rector-laravel": "^1.2",
"laravel/pint": "^1.9"
},
"extra": {
"laravel": {
"providers": [
"Seatplus\\Eveapi\\EveapiServiceProvider"
]
}
},
"scripts": {
"lint": "vendor/bin/pint",
"test:lint": "vendor/bin/pint --test",
"test:types": "vendor/bin/phpstan --ansi",
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
"test:unit": "vendor/bin/pest --colors=always",
"test:unit-coverage": "XDEBUG_MODE=coverage vendor/bin/pest --coverage --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}