This repository was archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
111 lines (110 loc) · 3.98 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
109
110
111
{
"name": "waldhacker/typo3-plausibleio",
"type": "typo3-cms-extension",
"description": "Privacy-friendly analytics integration for TYPO3 CMS. Analyze your audience with Plausible Analytics and see nice dashboards with analytics data directly in the TYPO3 backend.",
"license": ["GPL-2.0-or-later"],
"homepage": "https://github.com/waldhacker/ext-plausibleio/",
"support": {
"issues": "https://github.com/waldhacker/ext-plausibleio/issues"
},
"authors": [
{
"name": "waldhacker",
"email": "[email protected]",
"homepage": "https://waldhacker.dev",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^8.1 | ^8.2 | ^8.3",
"ext-json": "*",
"psr/http-client": "*",
"psr/http-factory": "*",
"psr/http-message": "*",
"psr/log": "*",
"typo3/cms-backend": "^12.4@dev | ^13.0@dev",
"typo3/cms-core": "^12.4@dev | ^13.0@dev",
"typo3/cms-dashboard": "^12.4@dev | ^13.0@dev",
"typo3/cms-fluid": "^12.4@dev | ^13.0@dev",
"typo3/cms-frontend": "^12.4@dev | ^13.0@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"overtrue/phplint": "^9.1",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpunit/phpunit": "^10.5",
"roave/security-advisories": "dev-latest",
"saschaegerer/phpstan-typo3": "^1.8",
"typo3/cms-extensionmanager": "@dev",
"typo3/cms-fluid-styled-content": "^12.4@dev || ^13.0@dev",
"typo3/cms-install": "@dev",
"typo3/coding-standards": "^0.7 | ^0.8.x-dev",
"typo3/testing-framework": "^8",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Waldhacker\\Plausibleio\\": "Classes/",
"Waldhacker\\Plausibleio\\Tests\\": "Tests/"
}
},
"config": {
"bin-dir": ".build/bin",
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .build/web/typo3conf/ext/", "[ -L .build/web/typo3conf/ext/plausibleio ] || ln -snvf ../../../../. .build/web/typo3conf/ext/plausibleio"
],
"ci:lint:php": [
"phplint -c build/phplint.yaml"
],
"ci:lint:yaml": [
"php build/yaml-lint.php Configuration/"
],
"ci:lint:assets": [
"cd build && yarn install && yarn lint"
],
"ci:psalm": [
"psalm --config=build/psalm.xml"
],
"ci:psalm:gen-baseline": [
"psalm -c build/psalm.xml --set-baseline=build/psalm-baseline.xml"
],
"ci:stan": [
"phpstan analyze --configuration build/phpstan.neon"
],
"ci:stan:gen-baseline": [
"phpstan analyze --configuration build/phpstan.neon --generate-baseline build/phpstan.baseline.neon"
],
"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-text --colors=never --coverage-clover .build/logs/clover.xml --coverage-cobertura .build/logs/cobertura.xml --coverage-html .build/logs/html"
],
"ci:tests:unit": [
"phpunit -c build/phpunit.xml --log-junit .build/logs/junit.xml"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "plausibleio",
"web-dir": ".build/web"
}
}
}