-
Notifications
You must be signed in to change notification settings - Fork 520
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.05 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.05 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
{
"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.5",
"league/oauth1-client": "^1.9",
"socialiteproviders/manager": "^4.4"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9",
"illuminate/http": "^12.0",
"laravel/pint": "^1.18",
"php-parallel-lint/php-console-highlighter": "^1.0",
"composer/semver": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"autoload": {
"psr-4": {
"SocialiteProviders\\": "src/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"lint": "pint",
"test": "phpunit",
"test:ci": "phpunit --coverage-clover build/logs/clover.xml"
}
}