forked from SocialiteProviders/Providers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.03 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
{
"name": "socialiteproviders/providers",
"description": "Collection of all OAuth2 Providers for Laravel Socialite",
"license": "MIT",
"support": {
"issues": "https://github.com/socialiteproviders/providers/issues",
"source": "https://github.com/socialiteproviders/providers",
"docs": "https://socialiteproviders.com"
},
"require": {
"php": "^8.0",
"ext-json": "*",
"league/oauth1-client": "^1.9",
"socialiteproviders/manager": "^4.4"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"illuminate/http": "^8.0",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"symplify/monorepo-builder": "^8.0"
},
"autoload": {
"psr-4": {
"SocialiteProviders\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --coverage-clover build/logs/clover.xml"
}
}