-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 loc) · 960 Bytes
/
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
{
"name": "sashagm/social",
"description": "Авторизация через социальные сети с помощью пакета для Laravel +10.x",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "sashagm",
"email": "example@gmail.com",
"homepage": "https://github.com/sashagm"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.7",
"laravel/socialite": "^5.8"
},
"autoload": {
"psr-4": {
"Sashagm\\Social\\": "src",
"Sashagm\\Social\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Sashagm\\Social\\Providers\\SocialServiceProvider"
]
}
},
"scripts": {
"test": [
"phpunit"
]
},
"require-dev": {
"phpunit/phpunit": "^10.2"
}
}