-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
71 lines (71 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
{
"name": "linfaservice/spid-cie-oidc-php",
"description": "SPID CIE OIDC PHP",
"authors": [
{
"name": "Michele D'Amico",
"email": "michele.damico@linfaservice.it"
}
],
"license": "Apache-2.0",
"type": "project",
"config": {
"version": "0.1.0"
},
"repositories": {
"spid-sp-access-button": {
"type": "package",
"package": {
"name": "italia/spid-sp-access-button",
"version": "1.0.0",
"source": {
"url": "https://github.com/italia/spid-sp-access-button",
"type": "git",
"reference": "master"
}
}
}
},
"require": {
"php": "~7.4.1",
"ext-mbstring": "*",
"ext-gmp": "*",
"lib-openssl": ">=1.1.1",
"symfony/filesystem": "^5.2.6",
"italia/spid-sp-access-button": "^1.0.0",
"bcosca/fatfree": "^3.7",
"guzzlehttp/guzzle": "^7.0",
"web-token/jwt-core": "^2.2.11",
"web-token/jwt-key-mgmt": "^2.2.11",
"web-token/jwt-signature": "^2.2.11",
"web-token/jwt-signature-algorithm-rsa": "^2.2.11",
"web-token/jwt-signature-algorithm-hmac": "^2.2.11",
"web-token/jwt-signature-algorithm-ecdsa": "^2.2.11",
"web-token/jwt-encryption": "^2.2.11",
"web-token/jwt-encryption-algorithm-aeskw": "^2.2.11",
"web-token/jwt-encryption-algorithm-aesgcmkw": "^2.2.11",
"web-token/jwt-encryption-algorithm-rsa": "^2.2.11",
"web-token/jwt-encryption-algorithm-pbes2": "^2.2.11",
"web-token/jwt-encryption-algorithm-aesgcm": "^2.2.11",
"web-token/jwt-encryption-algorithm-aescbc": "^2.2.11"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"phpunit/phpunit": "^9.5",
"rregeer/phpunit-coverage-check": "*"
},
"autoload": {
"psr-4": {"SPID_CIE_OIDC_PHP\\": "lib/"}
},
"scripts": {
"post-update-cmd": [
"SPID_CIE_OIDC_PHP\\Setup\\Setup::setup"
],
"uninstall": [
"SPID_CIE_OIDC_PHP\\Setup\\Setup::remove"
]
},
"scripts-descriptions": {
"uninstall": "Remove all packages and custom configurations"
}
}