-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
51 lines (51 loc) · 1.22 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
{
"name": "cobweb/svconnector",
"type": "typo3-cms-extension",
"description": "This family of services is used to connect to external data sources and fetch data from them. This is just a base class which cannot be used by itself. Implementations are done for specific subtypes.",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Francois Suter",
"role": "Developer",
"homepage": "https://www.ideative.ch/en/"
}
],
"autoload": {
"psr-4": {
"Cobweb\\Svconnector\\": "Classes/"
}
},
"require": {
"php": "^8.1 || ^8.2 || ^8.3 || ^8.4",
"ext-simplexml": "*",
"typo3/coding-standards": "*",
"typo3/cms-core": "^12.4 || ^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "~2.42.0",
"friendsofphp/php-cs-fixer": "^3.52",
"typo3/testing-framework": "^8.2",
"phpstan/phpstan": "^1.10"
},
"replace": {
"typo3-ter/svconnector": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "svconnector",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"ergebnis/composer-normalize": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
}
}