This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.93 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
{
"name": "codappix/cdx_logging",
"description": "Provides features for TYPO3 logging.",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/Codappix/cdx_logging/issues",
"source": "https://github.com/Codappix/cdx_logging"
},
"authors": [
{
"name": "Daniel Siepmann",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Codappix\\CdxLogging\\": "Classes"
}
},
"require": {
"php": ">=5.6"
},
"require-dev": {
"codappix/cgl-typo3": "~1.0.0",
"phpunit/phpunit": "~6.2.0",
"typo3/testing-framework": "~1.1.0",
"mikey179/vfsstream": "~1.6.4"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"branch-alias": {
"dev-develop": "2.0.x-dev"
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
},
"scripts": {
"post-autoload-dump": [
"[ -d .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/CGL-PHP ] || cp -r .Build/vendor/codappix/cgl-php .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/CGL-PHP",
"[ -d .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/CGL-TYPO3 ] || cp -r .Build/vendor/codappix/cgl-typo3 .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/CGL-TYPO3",
"[ -d .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/TYPO3SniffPool ] || cp -r .Build/vendor/typo3-ci/typo3sniffpool .Build/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/TYPO3SniffPool",
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/cdx_logging ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/cdx_logging"
]
}
}