-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.42 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
{
"name": "sphereon/craft-cms-oid4vc",
"description": "OpenID for Verifiable Presentations and Self-Issued OpenID v2 support for Craft CMS",
"type": "craft-plugin",
"keywords": ["craft", "OID4VC", "SIOPv2", "SSI", "OpenID"],
"license": "MIT",
"authors": [
{
"name": "Sphereon International BV",
"homepage": "https://sphereon.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Sphereon-Opensource/craft-cms-oid4vc/issues?state=open",
"source": "https://github.com/Sphereon-Opensource/craft-cms-oid4vc",
"docs": "https://github.com/Sphereon-Opensource/craft-cms-oid4vc/blob/master/README.md"
},
"require": {
"craftcms/cms": "^4.0.0",
"endroid/qr-code": "^3.5",
"netresearch/jsonmapper": "v4.2.0",
"php": "^8.0.2|^9.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"sphereon\\craft\\": "src/"
}
},
"extra": {
"name": "OID4VP and SIOPv2",
"handle": "sphereon-oid4vc",
"hasCpSettings": true,
"hasCpSection": false,
"components": {
"qrservice": "sphereon\\craft\\services\\QRCodeService",
"settingsservice": "sphereon\\craft\\services\\SettingsService",
"siopservice": "sphereon\\craft\\services\\SIOPService"
},
"class": "sphereon\\craft\\SphereonOID4VC"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}