-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.07 KB
/
composer.json
File metadata and controls
72 lines (72 loc) · 2.07 KB
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
{
"name": "seatplus/auth",
"description": "SeAT plus package that handles authentication agnostic to SeAT plus usage as pure API or Web",
"type": "seatplus-package",
"license": "MIT",
"authors": [
{
"name": "Herpaderp Aldent",
"email": "felix.a.huber@gmx.net"
}
],
"autoload": {
"psr-4": {
"Seatplus\\Auth\\": "src/",
"Seatplus\\Auth\\Database\\Factories\\": "database/factories/"
},
"files": [
]
},
"autoload-dev": {
"psr-4": {
"Seatplus\\Auth\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.3",
"laravel/framework": "^11.0",
"laravel/socialite": "^5.0",
"seatplus/eveapi": "^4.0",
"spatie/laravel-permission": "^6.10",
"socialiteproviders/eveonline": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.1",
"rector/rector": "^1.2",
"driftingly/rector-laravel": "^1.2",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.9"
},
"extra": {
"laravel": {
"providers": [
"Seatplus\\Auth\\AuthenticationServiceProvider"
]
}
},
"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
}
}
}