-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.81 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.81 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
{
"name": "spiral/auth-http",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/spiral"
}
],
"description": "Authorization component with set of authentication middlewares and providers",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/framework/issues",
"source": "https://github.com/spiral/auth-http"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Butchnev (butschster)",
"homepage": "https://github.com/butschster"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"homepage": "https://github.com/roxblnfk"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"spiral/auth": "^3.16.2",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-middleware": "^1.0",
"psr/event-dispatcher": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.41",
"spiral/cookies": "^3.16.2",
"spiral/http": "^3.16.2",
"spiral/debug": "^3.16.2",
"nyholm/psr7": "^1.8",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"Spiral\\Auth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Tests\\Auth\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.17.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}