-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
66 lines (66 loc) · 1.79 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
65
66
{
"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",
"ext-mbstring": "*",
"ext-intl": "*",
"league/oauth2-client": "^2.4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.65.0",
"guzzlehttp/psr7": "^2.7.0",
"http-interop/http-factory-guzzle": "^1.2",
"infection/infection": "^0.27.11",
"m4tthumphrey/php-gitlab-api": "^11.14",
"mockery/mockery": "^1.6.12",
"php-http/guzzle7-adapter": "^1.1.0",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.0.4",
"phpstan/phpstan-mockery": "^2.0.0",
"phpstan/phpstan-phpunit": "^2.0.3",
"phpunit/phpunit": "^10.5.39"
},
"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
}
}
}