-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
62 lines (62 loc) · 1.3 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
{
"name": "brenoroosevelt/oauth2-govbr",
"description": "Cliente OAuth2 para Gov.br",
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"govbr",
"gov.br",
"gov br",
"sso",
"idp",
"governo brasil",
"single sign on"
],
"homepage": "http://github.com/brenoroosevelt/oauth2-govbr",
"license": "MIT",
"authors": [
{
"name": "Breno Roosevelt",
"email": "breno.roosevelt@gmail.com"
}
],
"require": {
"php": "^7.1 || ^8",
"league/oauth2-client": "^2"
},
"require-dev": {
"phpstan/phpstan": "@stable",
"phpunit/phpunit": "^6 || ^9",
"squizlabs/php_codesniffer": "3.5.*",
"middlewares/utils": "^2 || ^3",
"laminas/laminas-diactoros": "@stable",
"laminas/laminas-httphandlerrunner": "@stable",
"middlewares/whoops": "@stable",
"mockery/mockery": "^1"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"BrenoRoosevelt\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrenoRoosevelt\\OAuth2\\Client\\Test\\": "tests/",
"BrenoRoosevelt\\OAuth2\\Client\\Example\\": "example/"
}
},
"scripts": {
"test": "phpunit",
"check": [
"phpunit",
"phpstan",
"phpcs -p src tests"
]
}
}