-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
107 lines (107 loc) · 2.94 KB
/
Copy pathcomposer.json
File metadata and controls
107 lines (107 loc) · 2.94 KB
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
{
"name": "xima/xima-typo3-frontend-edit",
"description": "Frontend Edit - This extension provides an edit button for editors within frontend content elements.",
"license": [
"GPL-2.0-or-later"
],
"type": "typo3-cms-extension",
"version": "2.5.0",
"authors": [
{
"name": "Konrad Michalik",
"email": "hej@konradmichalik.dev",
"role": "Maintainer"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-filter": "*",
"ext-mbstring": "*",
"doctrine/dbal": "^3.9 || ^4.2",
"psr/container": "^1.1 || ^2.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-handler": "^1.0.2",
"psr/http-server-middleware": "^1.0.2",
"psr/log": "^2.0 || ^3.0",
"symfony/dependency-injection": "^7.0 || ^8.0",
"typo3/cms-backend": "^13.4 || ^14.0",
"typo3/cms-core": "^13.4 || ^14.0",
"typo3fluid/fluid": "^4.2 || ^5.0"
},
"require-dev": {
"b13/container": "^4.1.0",
"composer/class-map-generator": "^1.7.3",
"eliashaeussler/version-bumper": "^4.0.4",
"konradmichalik/ttt": "^0.4.0",
"phpunit/phpcov": "^9.0 || ^10.0 || ^11.0 || ^13.0",
"phpunit/phpunit": "^11.0 || ^12.0 || ^13.0",
"psr/event-dispatcher": "^1.0",
"typo3/cms-base-distribution": "^13.4 || ^14.0",
"typo3/cms-lowlevel": "^13.4 || ^14.0",
"typo3/testing-framework": "^8.0 || ^9.5"
},
"autoload": {
"psr-4": {
"Xima\\XimaTypo3FrontendEdit\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Xima\\XimaTypo3FrontendEdit\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"eliashaeussler/version-bumper": true,
"ergebnis/composer-normalize": true,
"helhum/dotenv-connector": true,
"move-elevator/composer-translation-validator": true,
"php-http/discovery": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"platform": {
"php": "8.2"
},
"sort-packages": true
},
"extra": {
"konradmichalik/php-cs-fixer-preset": {
"copyright": 2024
},
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"extension-key": "xima_typo3_frontend_edit",
"web-dir": "public"
}
},
"scripts": {
"post-install-cmd": [
"@cgl install"
],
"cgl": "@composer -d Tests/CGL --",
"docs": [
"@docs:cleanup",
"@docs:build",
"@docs:open"
],
"docs:build": "docker compose run --rm docs",
"docs:cleanup": "rm -rf .Build/docs",
"docs:open": "open .Build/docs/Index.html",
"test": [
"@test:unit",
"@test:functional"
],
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"@test:coverage:clean",
"phpunit -c phpunit.xml",
"phpunit -c phpunit.functional.xml",
"@test:coverage:merge"
],
"test:coverage:clean": "rm -rf .Build/coverage/cov && mkdir -p .Build/coverage/cov",
"test:coverage:merge": "phpcov merge --clover .Build/coverage/clover.xml --html .Build/coverage/html --text php://stdout .Build/coverage/cov",
"test:functional": "phpunit -c phpunit.functional.xml --no-coverage",
"test:unit": "phpunit -c phpunit.xml --no-coverage"
}
}