-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
composer.json
50 lines (50 loc) · 1.06 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
{
"name": "overtrue/socialite",
"description": "A collection of OAuth 2 packages.",
"keywords": [
"oauth",
"social",
"login",
"weibo",
"wechat",
"qq",
"feishu",
"qcloud"
],
"autoload": {
"files": [
"src/Contracts/FactoryInterface.php",
"src/Contracts/UserInterface.php",
"src/Contracts/ProviderInterface.php"
],
"psr-4": {
"Overtrue\\Socialite\\": "src/"
}
},
"require": {
"php": ">=8.0.2",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^11.3",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.7",
"laravel/pint": "^1.2"
},
"license": "MIT",
"authors": [
{
"name": "overtrue",
"email": "anzhengchao@gmail.com"
}
],
"scripts": {
"check-style": "@php vendor/bin/pint --test",
"fix-style": "@php vendor/bin/pint",
"test": "@php vendor/bin/phpunit --colors=always",
"phpstan": "@php vendor/bin/phpstan analyse src"
}
}