-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 1.87 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "itplusx/flexible-pages",
"type": "typo3-cms-extension",
"description": "Supports the setup and management of custom page types.",
"keywords": [
"TYPO3",
"TYPO3 CMS",
"extension",
"pages",
"page based content"
],
"homepage": "https://itplusx.de",
"support": {
"issues": "https://github.com/itplusx/flexible_pages/issues",
"email": "[email protected]"
},
"authors": [
{
"name": "Vaclav Janoch",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://itplusx.de"
},
{
"name": "Ramón Schlosser",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://itplusx.de"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"typo3/cms-core": "^12.0",
"typo3/cms-fluid-styled-content": "^12.0",
"symfony/finder": "^6.2",
"ext-json": "*"
},
"require-dev": {
"namelesscoder/typo3-repository-client": "^1.2",
"nimut/testing-framework": "^1.0",
"mikey179/vfsstream": "^1.4",
"phpunit/phpunit": "^4.7 || ^5.0"
},
"suggest":{
"friendsoftypo3/headless": "Allows headless (json) output of flexible_pages content elements"
},
"autoload": {
"psr-4": {
"ITplusX\\FlexiblePages\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"ITplusX\\FlexiblePages\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/flexible-pages": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-main": "4.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "flexible_pages"
}
},
"scripts": {
"prepare-release": [
"rm -rf Tests/",
"rm -rf .github/",
"rm .gitignore",
"rm .editorconfig"
]
}
}