-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer-dev.json
More file actions
55 lines (55 loc) · 1.31 KB
/
composer-dev.json
File metadata and controls
55 lines (55 loc) · 1.31 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
{
"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/"
},
"files": [
"src/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Seatplus\\Auth\\Tests\\": "tests/"
}
},
"minimum-stability": "alpha",
"prefer-stable": true,
"require": {
"php": "^8.0",
"laravel/framework": "^8.0",
"laravel/socialite": "^5.0",
"seatplus/eseye": "^3.0",
"seatplus/eveapi": "*",
"spatie/laravel-permission": "^4.0"
},
"require-dev": {
"orchestra/testbench": "^6.10",
"nunomaduro/collision": "^5.3",
"brianium/paratest": "^6.2",
"pestphp/pest": "^1.18",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-parallel": "^0.3.1"
},
"extra": {
"laravel": {
"providers": [
"Seatplus\\Auth\\AuthenticationServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"parallel": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage -p"
}
}