-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (38 loc) · 922 Bytes
/
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
{
"name": "niemand-online/heptaconnect-portal-amiibo",
"type": "library",
"description": "HEPTAconnect portal read data from https://amiiboapi.com/",
"keywords": [
"heptaconnect-portal",
"amiibo"
],
"license": [
"AGPL-3.0-or-later"
],
"authors": [
{
"name": "niemand.online"
}
],
"require": {
"php": ">=7.4",
"heptacom/heptaconnect-dataset-ecommerce": ">=0.9",
"heptacom/heptaconnect-portal-base": ">=0.9"
},
"conflict": {
"nikic/php-parser": "4.7.0"
},
"autoload": {
"psr-4": {
"NiemandOnline\\HeptaConnect\\Portal\\Amiibo\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"heptaconnect": {
"portals": [
"NiemandOnline\\HeptaConnect\\Portal\\Amiibo\\AmiiboPortal"
]
}
}
}