-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.15 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
{
"name": "itsmestevieg/oauth2-nitrado",
"type": "library",
"description": "Nitrado OAuth 2.0 support for the PHP League's OAuth 2.0 Client",
"keywords": [
"php",
"nitrado",
"oauth",
"oauth2",
"client",
"authorization",
"authentication"
],
"homepage": "https://github.com/itsmestevieg/oauth2-nitrado",
"license": "MIT",
"authors": [
{
"name": "Steven Graham",
"email": "[email protected]",
"homepage": "https://github.com/itsmestevieg",
"role": "Author"
}
],
"require": {
"php": ">=7.3",
"league/oauth2-client": "^2.6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"ItsMeStevieG\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ItsMeStevieG\\OAuth2\\Client\\Tests\\": "tests/"
}
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --diff --verbose --config=.php_cs",
"phpunit": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}