-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1008 Bytes
/
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
{
"name": "friendsoftypo3/headless_blog",
"type": "typo3-cms-extension",
"description": "",
"authors": [],
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^11.5 || ^12",
"t3g/blog": "^12"
},
"require-dev": {
"typo3/testing-framework": "^6.9.0"
},
"autoload": {
"psr-4": {
"Friendsoftypo3\\HeadlessBlog\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Friendsoftypo3\\HeadlessBlog\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/headless-blog": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"extension-key": "headless_blog"
}
}
}