forked from programmfabrik/typo3-easydb-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
68 lines (68 loc) · 1.9 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
{
"name": "easydb/typo3-integration",
"type": "typo3-cms-extension",
"description" : "Integration of easydb / fylr asset management in TYPO3",
"license": "LGPL-3.0-only",
"authors": [
{
"name": "Progammfabrik GmbH",
"role": "Project manager",
"homepage": "https://www.programmfabrik.de"
},
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://helhum.io"
}
],
"support": {
"issues": "https://github.com/programmfabrik/typo3-easydb-plugin/issues"
},
"require": {
"php": ">=8.1",
"ext-json": "*",
"psr/http-message": "^1.1",
"typo3/cms-core": "^11.5.36 || ^12.4.14"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.54",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/phpstan": "^1.10.67",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-doctrine": "^1.3.69",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpstan/phpstan-strict-rules": "^1.5.5",
"phpunit/phpunit": "^10.5.19",
"saschaegerer/phpstan-typo3": "^1.10.0",
"typo3/testing-framework": "^7.0.4"
},
"autoload": {
"psr-4": {
"Easydb\\Typo3Integration\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Easydb\\Typo3Integration\\Tests\\": "Tests"
}
},
"replace": {
"typo3-ter/easydb": "self.version"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
},
"typo3/cms": {
"extension-key": "easydb"
}
}
}