-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·69 lines (69 loc) · 2.02 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
{
"name": "calien/xlsexport",
"description": "Calien - XLS-Exporter",
"type": "typo3-cms-extension",
"license": "MIT",
"authors": [
{
"name": "Frank Berger",
"role": "Developer",
"email": "[email protected]"
},
{
"name": "Markus Hofmann",
"role": "Developer",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"typo3/cms-core": "^11.5",
"phpoffice/phpspreadsheet": "^1.27",
"ext-pdo": "*"
},
"require-dev": {
"armin/editorconfig-cli": "^1.5",
"friendsofphp/php-cs-fixer": "^3.0",
"friendsoftypo3/tt-address": "^7",
"phpstan/phpstan": "^1.3",
"phpunit/phpunit": "^9.5",
"typo3/cms-backend": "^11.5 || ^12.2",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.2",
"typo3/cms-install": "^11.5 || ^12.2",
"typo3/cms-lowlevel": "^11.5 || ^12.2",
"typo3/cms-tstemplate": "^11.5 || ^12.2"
},
"extra": {
"typo3/cms": {
"extension-key": "xlsexport",
"web-dir": "public"
}
},
"autoload": {
"psr-4": {
"Calien\\Xlsexport\\": "Classes/"
}
},
"scripts": {
"ec:check": "ec -v -n --no-progress -e'var/log' -e'.Build' -e'.ddev' -e'phpstan-baseline.neon'",
"ec:fix": "ec -v -n --fix -e'var/log' -e'.Build' -e'.ddev'",
"cs:check": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi --diff --verbose --dry-run",
"cs:fix": "php-cs-fixer fix --config .config/.php-cs-rules.php --ansi",
"analyze:php": "phpstan analyse --ansi --no-progress --memory-limit=768M --configuration=.config/phpstan.neon",
"test:php": [
"@test:php:unit",
"@test:php:functional"
],
"test:php:unit": "phpunit --colors=always --configuration .config/phpunit-unit.xml",
"test:php:functional": "@test:php:unit --configuration .config/phpunit-functional.xml"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
},
"bin-dir": "bin",
"optimize-autoloader": true,
"sort-packages": true
}
}