-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.47 KB
/
Copy pathcomposer.json
File metadata and controls
82 lines (82 loc) · 2.47 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
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
{
"name": "friendsoftypo3/content-blocks-gui",
"type": "typo3-cms-extension",
"keywords": [
"dev"
],
"description": "Visual backend module for creating and editing Content Blocks definitions.",
"homepage": "https://github.com/FriendsOfTYPO3/content-blocks-gui",
"license": ["GPL-2.0-or-later"],
"version": "1.0.1",
"minimum-stability": "alpha",
"authors": [{
"name": "TYPO3 Content Types Team",
"role": "Developer"
}],
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"repositories": [
{
"type": "path",
"url": "Build/local-packages/*"
}
],
"require": {
"friendsoftypo3/content-blocks": "^1.4.6 || ^2.0",
"typo3/cms-backend": "^13.4.19 || ^14.3",
"typo3/cms-core": "^13.4.19 || ^14.3"
},
"require-dev": {
"contentblocks/examples": "@dev",
"contentblocks/local-test": "@dev",
"friendsofphp/php-cs-fixer": "^3.94",
"helhum/typo3-console": "^8.3 || ^9.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^11.0 || ^12.0",
"saschaegerer/phpstan-typo3": "^3.0",
"typo3/cms-extbase": "^13.4 || ^14.3",
"typo3/cms-extensionmanager": "^13.4 || ^14.3",
"typo3/cms-filelist": "^13.4 || ^14.3",
"typo3/cms-fluid": "^13.4 || ^14.3",
"typo3/cms-fluid-styled-content": "^13.4 || ^14.3",
"typo3/cms-frontend": "^13.4 || ^14.3",
"typo3/cms-install": "^13.4 || ^14.3",
"typo3/cms-rte-ckeditor": "^13.4 || ^14.3",
"typo3/testing-framework": "^9.0"
},
"conflict": {
"typo3/cms": "*"
},
"extra": {
"typo3/cms": {
"extension-key": "content_blocks_gui",
"web-dir": ".Build/public",
"Package": {
"providesPackages": {}
}
}
},
"autoload": {
"psr-4": {
"FriendsOfTYPO3\\ContentBlocksGui\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"FriendsOfTYPO3\\ContentBlocksGui\\Tests\\": "Tests/"
}
},
"scripts": {
"pre-autoload-dump": [
"[ -d \"config\" ] || cp -a ./Build/config.example ./config"
]
}
}