-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
108 lines (108 loc) · 3.29 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "friendsoftypo3/frontend-editing",
"type": "typo3-cms-extension",
"description": "Enable editors to work with the content in the most intuitive way possible",
"homepage": "https://extensions.typo3.org/extension/frontend_editing/",
"support": {
"issues": "https://github.com/FriendsOfTYPO3/frontend_editing/issues",
"source": "https://github.com/FriendsOfTYPO3/frontend_editing",
"docs": "https://docs.typo3.org/p/friendsoftypo3/frontend-editing/main/en-us/"
},
"license": [
"GPL-2.0-or-later"
],
"keywords": [
"TYPO3 CMS",
"Frontend Editing"
],
"require": {
"typo3/cms-core": "^11.5",
"typo3/cms-rte-ckeditor": "^11.5",
"typo3/cms-viewpage": "^11.5"
},
"require-dev": {
"typo3/minimal": "^11.5",
"nimut/testing-framework": "^6.0",
"squizlabs/php_codesniffer": "^3.3",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^2.15",
"helmich/typo3-typoscript-lint": "^2.0"
},
"conflict": {
"typo3/cms-feedit": "*",
"typo3/class-alias-loader": "< 1.1.0"
},
"replace": {
"typo3-ter/frontend-editing": "self.version"
},
"autoload": {
"psr-4": {
"TYPO3\\CMS\\FrontendEditing\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"TYPO3\\CMS\\FrontendEditing\\Tests\\": "Tests/",
"TYPO3\\CMS\\Core\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/core/Tests/",
"TYPO3\\CMS\\Fluid\\Tests\\": ".build/vendor/typo3/cms/typo3/sysext/fluid/Tests/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"preferred-install": {
"typo3/cms": "source"
},
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"ci:php:lint": "find *.php Classes/ Configuration/ Tests/ -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:sniff": "php-cs-fixer fix --config=.php-cs-fixer.php -v --dry-run --using-cache=no --diff",
"cs:php:fix": "php-cs-fixer fix --config=.php-cs-fixer.php -v --using-cache=no",
"ci:ts:lint": "typoscript-lint -c Configuration/TsLint.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript/",
"ci:tests:unit": "phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit",
"ci:tests:functional": "phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:functional"
],
"ci:dynamic": [
"@ci:tests"
],
"ci:static": [
"@ci:php:lint",
"@ci:php:sniff",
"@ci:ts:lint"
],
"ci": [
"@ci:static"
],
"pre-autoload-dump": [
"mkdir -p .build/public/typo3conf/ext/",
"test -L .build/public/typo3conf/ext/frontend_editing || ln -snvf ../../../../. .build/public/typo3conf/ext/frontend_editing"
],
"post-autoload-dump": [
"@prepare-extension-test-structure"
],
"prepare-extension-test-structure": [
"Nimut\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
],
"docs:generate": [
"docker run --rm t3docs/render-documentation show-shell-commands > tempfile.sh; echo 'dockrun_t3rd makehtml' >> tempfile.sh; bash tempfile.sh; rm tempfile.sh"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
},
"typo3/cms": {
"extension-key": "frontend_editing",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/public",
"app-dir": ".build"
}
}
}