forked from f7media/preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.35 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
{
"name": "f7media/preview",
"type": "typo3-cms-extension",
"version": "1.1.0",
"description": "Generate URLs to preview hidden pages without a backend login",
"support": {
"source": "https://github.com/f7media/preview",
"issues": "https://github.com/f7media/preview/issues",
"docs": "https://docs.typo3.org/p/f7media/preview/main/en-us/"
},
"require": {
"php": "~8.2",
"typo3/cms-core": "^12 || ^13",
"typo3/cms-fluid": "^12 || ^13",
"typo3/cms-frontend": "^12 || ^13",
"typo3/cms-backend": "^12 || ^13"
},
"license": [
"GPL-3.0-or-later"
],
"require-dev": {
"bnf/phpstan-psr-container": "^1.0.1",
"ext-zip": "*",
"friendsofphp/php-cs-fixer": "^3.22",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"phpstan/phpstan": "^1.10.22",
"phpstan/phpstan-phpunit": "^1.3.13",
"typo3/coding-standards": "^0.8",
"typo3/testing-framework": "^8.2",
"typo3/tailor": "^1.6"
},
"extra": {
"typo3/cms": {
"app-dir": "CI/Build",
"web-dir": "CI/Build/public",
"extension-key": "preview"
}
},
"autoload": {
"psr-4": {
"F7\\Preview\\": "Classes/"
}
},
"scripts": {
"link-extension": [
"@php -r 'is_dir($extFolder=__DIR__.\"/CI/Build/public/typo3conf/ext/\") || mkdir($extFolder, 0777, true);'",
"@php -r 'file_exists($extFolder=__DIR__.\"/CI/Build/public/typo3conf/ext/preview\") || symlink(__DIR__,$extFolder);'"
]
}
}