-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.24 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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
{
"name": "codappix/typo3-page-specific-typoscript",
"description": "Loads TypoScript files from file system, based on current Page",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"Codappix\\PageSpecificTypoScript\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Codappix\\PageSpecificTypoScript\\Tests\\": "Tests/"
}
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "daniel.siepmann@codappix.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"typo3/cms-core": "^12.4 || ^13.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"typo3/testing-framework": "^8.2"
},
"extra": {
"typo3/cms": {
"extension-key": "codappix_pagespecific_typoscript",
"web-dir": ".Build/web"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"lock": false,
"sort-packages": true
}
}