forked from overtrue/socialite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 997 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
41
42
43
44
45
{
"name": "overtrue/socialite",
"description": "A collection of OAuth 2 packages.",
"keywords": [
"oauth",
"social",
"login",
"weibo",
"wechat",
"qq",
"feishu",
"qcloud"
],
"autoload": {
"psr-4": {
"Overtrue\\Socialite\\": "src/"
}
},
"require": {
"php": ">=8.0.2",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.0",
"symfony/http-foundation": "^6.0",
"symfony/psr-http-message-bridge": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^9.0",
"jetbrains/phpstorm-attributes": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "overtrue",
"email": "[email protected]"
}
],
"scripts": {
"check-style": "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --ansi",
"test": "vendor/bin/phpunit --colors=always"
}
}