-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
86 lines (86 loc) · 2.27 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
{
"name": "jobrouter/typo3-data",
"description": "Connect JobRouter® JobData tables with TYPO3",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"TYPO3 extension",
"JobRouter",
"Data",
"Workflow"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/jobrouter/typo3-data/issues",
"source": "https://github.com/jobrouter/typo3-data",
"docs": "https://typo3-jobrouter.readthedocs.io/projects/data/"
},
"require": {
"php": ">=8.1",
"ext-intl": "*",
"jobrouter/typo3-base": "^4.0",
"jobrouter/typo3-connector": "^4.0",
"typo3/cms-backend": "^12.4.9 || ^13.3",
"typo3/cms-core": "^12.4.9 || ^13.3",
"typo3/cms-fluid": "^12.4.9 || ^13.3",
"typo3/cms-frontend": "^12.4.9 || ^13.3"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.0.0",
"donatj/mock-webserver": "^2.7",
"ergebnis/composer-normalize": "~2.44.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.12.5",
"phpunit/phpunit": "^10.5 || ^11.3",
"rector/rector": "1.2.5",
"saschaegerer/phpstan-typo3": "^1.10",
"symfony/yaml": "^6.4 || ^7.0",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3",
"typo3/cms-dashboard": "^12.4.9 || ^13.3",
"typo3/cms-fluid-styled-content": "^12.4.9 || ^13.3",
"typo3/cms-form": "^12.4.9 || ^13.3",
"typo3/testing-framework": "^8.2"
},
"suggest": {
"typo3/cms-dashboard": "Use dashboard widgets for information about JobData transmissions",
"typo3/cms-fluid-styled-content": "Necessary when using the table content element",
"typo3/cms-form": "Use form finisher with TYPO3 form framework"
},
"autoload": {
"psr-4": {
"JobRouter\\AddOn\\Typo3Data\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"JobRouter\\AddOn\\Typo3Data\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "4.0.x-dev"
},
"typo3/cms": {
"extension-key": "jobrouter_data",
"web-dir": ".Build/Web"
}
}
}