forked from ekapusta/oauth2-esia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.26 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
{
"name": "ekapusta/oauth2-esia",
"type": "library",
"description": "Allows to authenticate in ESIA and get authenticated individual personal information.",
"keywords": [
"oauth2",
"oauth2-provider",
"openid-connect",
"esia"
],
"license": "MIT",
"authors": [
{
"name": "Alexander Ustimenko",
"email": "ustimenko.alexander@gmail.com"
}
],
"require": {
"php": "^5.6 || ^7.0",
"lcobucci/jwt": "^3.2.2",
"league/oauth2-client": "^2.4.1",
"psr/log": "^1.0",
"ramsey/uuid": "^3.0 || ^4.0"
},
"require-dev": {
"bramus/monolog-colored-line-formatter": "^2.0",
"monolog/monolog": "^1.24",
"phpunit/phpunit": "^6",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"Ekapusta\\OAuth2Esia\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ekapusta\\OAuth2Esia\\Tests\\": "tests"
}
},
"config": {
"discard-changes": true,
"sort-packages": true
},
"scripts": {
"f": "@fix",
"fix": "php-cs-fixer fix --ansi",
"test": "phpunit --columns max --color=always",
"debug": "phpunit --columns max --color=always --debug",
"cover": "phpdbg -qrr vendor/bin/phpunit --columns max --color=always --coverage-html ./.coverage --coverage-text"
}
}