-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.51 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
{
"name": "lolli/dbdoctor",
"type": "typo3-cms-extension",
"description": "TYPO3 Database doctor - Find and fix TYPO3 database inconsistencies",
"homepage": "https://github.com/lolli42/dbdoctor",
"authors": [
{
"name": "Christian Kuhn",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^13.4 || ^14.3"
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.1",
"friendsofphp/php-cs-fixer": "^3.86.0",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-phpunit": "^2.0.6",
"phpunit/phpunit": "^11.5.55 || ^12.5.24 || ^13.1.8",
"typo3/cms-impexp": "^13.4 || ^14.3",
"typo3/cms-install": "^13.4 || ^14.3",
"typo3/cms-redirects": "^13.4 || ^14.3",
"typo3/cms-workspaces": "^13.4 || ^14.3",
"typo3/testing-framework": "^9.5.0"
},
"autoload": {
"psr-4": {
"Lolli\\Dbdoctor\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Lolli\\Dbdoctor\\Tests\\": "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"web-dir": ".Build/Web",
"extension-key": "dbdoctor",
"version": "2.0.0",
"Package": {
"providesPackages": []
}
}
}
}