forked from hoogi91/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.4 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
{
"name": "hoogi91/charts",
"type": "typo3-cms-extension",
"description": "Extension to create datasets and show them as line, bar, pie or doughnut chart in frontend",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Thorsten Hogenkamp",
"email": "[email protected]",
"homepage": "https://www.hogenkamp-bocholt.de",
"role": "Developer"
},
{
"name": "UDG Rhein-Main GmbH",
"homepage": "https://www.udg.de",
"role": "Contributor"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"ext-json": "*",
"typo3/cms-backend": "^11.5 || ^12.4",
"typo3/cms-core": "^11.5 || ^12.4",
"typo3/cms-extbase": "^11.5 || ^12.4",
"typo3/cms-fluid": "^11.5 || ^12.4",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4",
"typo3/cms-frontend": "^11.5 || ^12.4"
},
"require-dev": {
"bnf/phpstan-psr-container": "^1.0",
"friendsoftypo3/phpstan-typo3": "^0.9.0",
"helhum/typo3-console": "^7.1 || ^8.0",
"hoogi91/spreadsheets": "^3.3 || ^4.0",
"mck89/peast": "^1.13",
"phpstan/phpstan": "^1.7.15",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.17 || ^0.18 || ^0.19 || ^1.0",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.8",
"squizlabs/php_codesniffer": "^3.5",
"typo3/minimal": "^11.5 || ^12.4",
"typo3/testing-framework": "^7.0 || ^8.0",
"vimeo/psalm": "^5.1"
},
"suggest": {
"hoogi91/spreadsheets": "Allows datasets (values and colors) to be filled by spreadsheet files (XLSX, CSV, ODT, etc.)"
},
"autoload": {
"psr-4": {
"Hoogi91\\Charts\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Hoogi91\\Charts\\Tests\\": "Tests"
}
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"prepare-release": [
"rm -rf .github/ Tests/",
"rm -f .gitattributes .gitignore .editorconfig composer.lock",
"rm -f .babelrc .eslintignore .eslintrc.js package.json package-lock.json webpack.config.js"
]
},
"extra": {
"typo3/cms": {
"extension-key": "charts",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/web"
}
}
}