-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.85 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
{
"name": "illegal/insideauth",
"description": "Laravel InsideAuth is a seamless side authentication solution for Laravel packages.",
"type": "library",
"license": "MIT",
"support": {
"source": "https://github.com/illegalstudio/insideauth",
"issues": "https://github.com/illegalstudio/insideauth/issues",
"docs": "https://github.com/illegalstudio/insideauth/blob/main/README.md"
},
"authors": [
{
"name": "Vincenzo Petrucci",
"email": "[email protected]",
"role": "Maintainer"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"illegal/laravel-utils": "^1.0",
"laravel/framework": "^9|^10",
"laravel/sanctum": "^3.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/pint": "^1.0",
"mockery/mockery": "^1.5",
"nunomaduro/collision": "^7.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"spatie/laravel-ignition": "^2.0",
"phpunit/phpunit": "^10.0",
"pestphp/pest-plugin-mock": "^2.0",
"orchestra/testbench": "^8.0",
"spatie/laravel-ray": "^1.32",
"nunomaduro/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"Illegal\\InsideAuth\\": "src/"
},
"files": [
"functions/insideauth.php"
]
},
"autoload-dev": {
"psr-4": {
"Illegal\\InsideAuth\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Illegal\\InsideAuth\\Providers\\EventServiceProvider",
"Illegal\\InsideAuth\\Providers\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}