-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
121 lines (121 loc) · 3.31 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "cpsit/typo3-handlebars",
"description": "Handlebars rendering extension for projects built with TYPO3 CMS",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Elias Häußler",
"email": "[email protected]",
"homepage": "https://www.cps-it.de",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/CPS-IT/handlebars/issues",
"source": "https://github.com/CPS-IT/handlebars",
"docs": "https://docs.typo3.org/p/cpsit/typo3-handlebars/main/en-us/"
},
"require": {
"php": "^7.1 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"psr/event-dispatcher": "^1.0",
"psr/log": "^1.1 || ^2.0 || ^3.0",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/polyfill-php80": "^1.23",
"typo3/cms-core": "~10.4.0 || ~11.5.0",
"typo3/cms-extbase": "~10.4.0 || ~11.5.0",
"typo3/cms-frontend": "~10.4.0 || ~11.5.0",
"zordius/lightncandy": "^1.2"
},
"require-dev": {
"armin/editorconfig-cli": "^1.5 || ^2.0",
"ergebnis/composer-normalize": "^2.15",
"friendsofphp/php-cs-fixer": "^3.57",
"helmich/typo3-typoscript-lint": "^2.5 || ^3.0",
"mikey179/vfsstream": "^1.6.7",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"saschaegerer/phpstan-typo3": "^1.0",
"ssch/typo3-rector": "^1.0 || ^2.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"typo3/coding-standards": "^0.6.0 || ^0.7.0",
"typo3/testing-framework": "^6.15 || ^7.0.2"
},
"autoload": {
"psr-4": {
"Fr\\Typo3Handlebars\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Fr\\Typo3Handlebars\\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",
"preferred-install": {
"zordius/lightncandy": "source",
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"typo3/cms": {
"extension-key": "handlebars",
"web-dir": ".Build/web"
}
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/web/typo3conf/ext/",
"[ -L .Build/web/typo3conf/ext/handlebars ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/handlebars"
],
"docs": [
"@docs:cleanup",
"@docs:build",
"@docs:open"
],
"docs:build": "docker-compose run --rm docs",
"docs:cleanup": "rm -rf .Build/docs",
"docs:open": "open .Build/docs/Result/project/0.0.0/Index.html",
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": "@composer normalize",
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php",
"@lint:typoscript"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec -e .Build",
"lint:php": "@fix:php --dry-run",
"lint:typoscript": "typoscript-lint -c typoscript-lint.yml",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse -c phpstan.neon",
"test": "@test:coverage --no-coverage",
"test:coverage": "phpunit -c phpunit.xml"
}
}