forked from SicorDev/sic_address
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 943 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 943 Bytes
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": "sicor/sic-address",
"type": "typo3-cms-extension",
"description": "Address Extension that can either enhance or replace tt_address. You can add required fields dynamically like mask/powermail. Originally it was written in 2016 to replace extensions like nicos_directory, wt_directory or sp_directory and grew from there.",
"minimum-stability": "stable",
"license": "GPL-3.0-or-later",
"repositories": [
{
"type": "composer",
"url": "http://composer.typo3.org/"
}
],
"require": {
"typo3/cms-core": "^11.5 || ^12.4",
"php": "^7.4 || ^8"
},
"authors":
[
{
"name": "SICOR DEVTEAM",
"email": "dev@sicor-kdl.net",
"role": "Developer"
}
],
"suggest": {
"friendsoftypo3/tt-address": "Displays a list of addresses from an address table on the page."
},
"autoload": {
"psr-4": {
"SICOR\\SicAddress\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "sic_address"
}
}
}