-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
60 lines (60 loc) · 1.41 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
{
"name": "spinen/laravel-discourse-sso",
"description": "Integrate Discourse SSO into Laravel.",
"keywords": [
"discourse",
"laravel",
"library",
"single sign on",
"spinen",
"sso"
],
"license": "MIT",
"authors": [
{
"name": "Jimmy Puckett",
"email": "[email protected]"
},
{
"name": "Stephen Finney",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"cviebrock/discourse-php": "^0.9.3",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/auth": "~8|~9|~10|~11",
"illuminate/routing": "~8|~9|~10|~11",
"illuminate/support": "~8|~9|~10|~11"
},
"require-dev": {
"laravel/sail": "^1.21",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.6.5",
"psy/psysh": "^0.11.1",
"symfony/var-dumper": "^6.2"
},
"autoload": {
"psr-4": {
"Spinen\\Discourse\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spinen\\Discourse\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\Discourse\\SsoServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}