-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.11 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
{
"name": "visol/variables",
"description": "Search and replace strings recursively after page generation using user-managed replacement definitions.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Sinso\\Variables\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Sinso\\Variables\\Tests\\": "Tests/"
}
},
"require": {
"php": ">= 8.1 < 8.3",
"ramsey/collection": "^2.0",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"rector/rector": "^0.12.23",
"typo3/testing-framework": "^6.16",
"phpspec/prophecy-phpunit": "^2.0",
"symplify/easy-coding-standard": "^12.3"
},
"extra": {
"typo3/cms": {
"extension-key": "variables",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/variables ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/variables"
]
}
}