-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.4 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.4 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
47
48
49
50
51
52
53
54
55
{
"name": "b13/menus",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"description": "Menus - Easy and fast menus for TYPO3 Frontends",
"require": {
"php": "^8.3",
"typo3/cms-core": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-frontend": "^12.4 || ^13.4 || ^14.3"
},
"require-dev": {
"typo3/cms-fluid-styled-content": "^12.4 || ^13.4 || ^14.3",
"typo3/cms-install": "^12.4 || ^13.4 || ^14.3",
"typo3/coding-standards": "^0.5.5",
"phpstan/phpstan": "^1.10",
"typo3/tailor": "^1.0",
"typo3/testing-framework": "^8.3 || ^9.5"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"sort-packages": true
},
"extra": {
"typo3/cms": {
"extension-key": "menus",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web",
"version": "2.0.0",
"Package": {
"providesPackages": {}
}
}
},
"scripts": {
"prepare-tests": [
"if [ ! -e .Build/Web/typo3conf/sites -a -e .Build/Web/typo3conf ]; then cd .Build/Web/typo3conf && ln -s ../../../Build/sites && cd -; fi"
]
},
"autoload": {
"psr-4": {
"B13\\Menus\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"B13\\Menus\\Tests\\": "Tests/"
}
}
}