forked from ekapusta/oauth2-esia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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
{
"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",
"psr/log": "^1.0",
"league/oauth2-client": "^2.3",
"ramsey/uuid": "^3.0",
"lcobucci/jwt": "^3.2.2"
},
"require-dev": {
"monolog/monolog": "^1.23",
"bramus/monolog-colored-line-formatter": "^2.0",
"phpunit/phpunit": "^5.7",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"Ekapusta\\OAuth2Esia\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ekapusta\\OAuth2Esia\\Tests\\": "tests"
}
},
"config": {
"platform": {
"php": "5.6"
}
},
"scripts": {
"post-autoload-dump": [
"echo vendor/bin/phpunit --debug '$@' > vendor/bin/phpunit-debug",
"echo /usr/bin/env phpdbg -qrr vendor/bin/phpunit --coverage-html ./.coverage --coverage-text '$@' > vendor/bin/phpunit-coverage",
"chmod +x vendor/bin/php*"
]
}
}