-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.49 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
{
"name": "andersundsehr/ssi-include",
"description": "Allows to periodically create ssi includes from anders und sehr GmbH",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Matthias Vogel",
"email": "[email protected]",
"homepage": "https://andersundsehr.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"typo3/cms-fluid": "^11.5.0 || ^12.4.0",
"typo3/cms-frontend": "^11.5.0 || ^12.4.0",
"webimpress/safe-writer": "^2.2.0"
},
"require-dev": {
"composer/composer": "^2.5.5",
"pluswerk/grumphp-config": "^7.0",
"saschaegerer/phpstan-typo3": "^1.10.0",
"ssch/typo3-rector": "^2.5.0",
"typo3/testing-framework": "^7.1.1 || ^8.2.7"
},
"replace": {
"typo3-ter/ssi-include": "self.version"
},
"autoload": {
"psr-4": {
"AUS\\SsiInclude\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"AUS\\SsiInclude\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "ssi_include"
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit"
},
"ter-require": {
"webimpress/safe-writer": "^2.2.0"
}
}