-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.56 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": "informeren/oauth2-mobilepay",
"type": "library",
"description": "MobilePay OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"keywords": [
"oauth",
"oauth2",
"client",
"authorization",
"authentication",
"mobilepay"
],
"homepage": "https://github.com/informeren/oauth2-mobilepay",
"license": "MIT",
"authors": [
{
"name": "Morten Wulff",
"email": "[email protected]",
"homepage": "http://www.ratatosk.net",
"role": "Developer"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"ext-openssl": "*",
"lcobucci/jwt": "^3.3",
"league/oauth2-client": "^2.0",
"phpseclib/phpseclib": "^2.0",
"web-token/jwt-core": "^2.1"
},
"require-dev": {
"phpstan/phpstan": "^0.12.25",
"phpunit/phpunit": "^9.1",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Informeren\\OAuth2\\Client\\": "src/"
}
},
"scripts": {
"analyze": "phpstan analyze --level 5 bin/* src",
"check": "phpcs bin/ src/",
"coverage": "phpunit --coverage-text --coverage-html ./report/",
"test": "phpunit"
},
"scripts-descriptions": {
"test": "Runs the included unit tests."
},
"bin": [
"bin/mobilepay-auth"
],
"extra": {
"branch-alias": {
"dev-develop": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}