-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "socialiteproviders/generators",
"description": "Laravel Artisan Generators for OAuth1/OAuth2 Providers",
"license": "MIT",
"authors": [
{
"name": "Brian Faust",
"email": "hello@brianfaust.de",
"homepage": "https://brianfaust.de",
"role": "Developer"
},
{
"name": "dingdayu",
"email": "614422099@qq.com",
"homepage": "https://github.com/dingdayu",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"illuminate/console": "^11.0 || ^12.0 || ^13.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"SocialiteProviders\\Generators\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"laravel": {
"providers": [
"SocialiteProviders\\Generators\\GeneratorsServiceProvider"
]
}
}
}