-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
64 lines (64 loc) · 1.74 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
61
62
63
64
{
"name": "omines/oauth2-gitlab",
"description": "GitLab OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"license": "MIT",
"authors": [
{
"name": "Niels Keurentjes",
"email": "niels.keurentjes@omines.com",
"homepage": "https://www.omines.nl/"
}
],
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authorisation",
"gitlab"
],
"require": {
"php": ">=8.1",
"league/oauth2-client": "^2.4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.37.1",
"guzzlehttp/psr7": "^2.6.1",
"http-interop/http-factory-guzzle": "^1.2",
"infection/infection": "^0.27.7",
"m4tthumphrey/php-gitlab-api": "^11.12",
"mockery/mockery": "^1.6.6",
"php-http/guzzle7-adapter": "^1.0.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.10.41",
"phpstan/phpstan-mockery": "^1.1.1",
"phpstan/phpstan-phpunit": "^1.3.15",
"phpunit/phpunit": "^10.4.2"
},
"suggest": {
"m4tthumphrey/php-gitlab-api": "For further API usage using the acquired OAuth2 token"
},
"autoload": {
"psr-4": {
"Omines\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Omines\\OAuth2\\Client\\Test\\": "test/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"infection/extension-installer": true
}
}
}