forked from greew/oauth2-azure-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 868 Bytes
/
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
{
"name": "greew/oauth2-azure-provider",
"description": "An OAuth2 client provider for Microsoft Azure to be used with thephpleague/oauth2-client",
"type": "library",
"license": "GPL-3.0-or-later",
"require": {
"php": "^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2",
"league/oauth2-client": "^2.6",
"guzzlehttp/psr7": "^2.4",
"psr/http-message": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"mockery/mockery": "^1.3.5",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Greew\\OAuth2\\Client\\Provider\\": "src/Provider/"
}
},
"autoload-dev": {
"psr-4": {
"Greew\\OAuth2\\Test\\Client\\Provider\\": "tests/src/Provider"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"codeStyle": "@php vendor/bin/phpcs"
}
}