This repository was archived by the owner on May 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.92 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
{
"name": "waldhacker/typo3-smartcontentcontainer-display-pattern",
"type": "typo3-cms-extension",
"description": "",
"homepage": "https://waldhacker.dev",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"typo3/cms-backend": "^11.4 || dev-master",
"typo3/cms-core": "^11.4 || dev-master",
"typo3/cms-fluid-styled-content": "^11.4 || dev-master",
"typo3/cms-frontend": "^11.4 || dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"overtrue/phplint": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.50",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "@dev",
"typo3/cms-extensionmanager": "^11.2",
"typo3/cms-install": "^11.2",
"typo3/coding-standards": "^0.2.0",
"vimeo/psalm": "^3.0 | ^4.0"
},
"extra": {
"typo3/cms": {
"extension-key": "smartcontentcontainer_display_pattern",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".build/web"
}
},
"autoload": {
"psr-4": {
"Waldhacker\\SmartContentContainerDisplayPattern\\": "Classes/"
}
},
"config": {
"vendor-dir": ".build/vendor",
"bin-dir": ".build/bin",
"platform": {
"php": "7.4.15"
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/", "[ -L .build/web/typo3conf/ext/smartcontent_display_pattern ] || ln -snvf ../../../../. .build/web/typo3conf/ext/smartcontent_display_pattern"
],
"ci:lint:php": [
"phplint -c build/phplint.yaml"
],
"ci:lint:yaml": [
"php build/yaml-lint.php Configuration/"
],
"ci:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.neon"
],
"ci:psalm": [
"psalm --config=build/psalm.xml"
],
"ci:psalm:baseline": [
"psalm -c build/psalm.xml --set-baseline=build/psalm-baseline.xml"
],
"ci:cgl:check": [
"php-cs-fixer fix --config build/phpcs.dist -v --dry-run"
],
"ci:cgl:fix": [
"php-cs-fixer fix --config build/phpcs.dist"
],
"ci:tests:unit:cover": [
"mkdir -p .build/logs",
"phpdbg -d memory_limit=1024M -qrr ./.build/bin/phpunit -c build/phpunit.xml --coverage-clover .build/logs/clover.xml --coverage-cobertura .build/logs/cobertura.xml"
],
"ci:tests:unit": [
"phpunit -c build/phpunit.xml --log-junit .build/logs/junit.xml"
]
}
}