-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
60 lines (60 loc) · 1.48 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
51
52
53
54
55
56
57
58
59
60
{
"name": "salla/ouath2-merchant",
"description": "Salla OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authorisation",
"salla"
],
"homepage": "https://github.com/sallaApp/ouath2-merchant",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Salla Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1|^8.3",
"league/oauth2-client": "^2.0",
"illuminate/support": "^9.0|^10.0|^11.0"
},
"require-dev": {
"laravel/framework": "^9.0|^10.0|^11.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^8.0|^9.0",
"squizlabs/php_codesniffer": "^2.0 || ^3.0"
},
"autoload": {
"psr-4": {
"Salla\\OAuth2\\Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Salla\\OAuth2\\Client\\Test\\": "test/"
}
},
"extra": {
"laravel": {
"providers": [
"Salla\\OAuth2\\Client\\ServiceProvider"
],
"aliases": {
"SallaOauth": "Salla\\OAuth2\\Client\\Facade\\SallaOauth"
}
}
},
"scripts": {
"test": "phpunit",
"check": "phpcs src --standard=psr2 -sp"
},
"config": {
"sort-packages": true
}
}