-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
100 lines (100 loc) · 2.6 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
{
"name": "ssch/typo3-encore",
"type": "typo3-cms-extension",
"description": "Use Webpack Encore in TYPO3 Context",
"license": "GPL-2.0-or-later",
"keywords": [
"encore",
"webpack"
],
"authors": [
{
"name": "Sebastian Schreiber",
"email": "[email protected]",
"role": "Developer"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=8.1",
"typo3/cms-core": "^12.4 || ^13.4",
"symfony/web-link": "^6.0 || ^7.0",
"symfony/asset": "^6.0 || ^7.0",
"ext-dom": "*",
"typo3/cms-tstemplate": "^12.4 || ^13.4",
"webmozart/assert": "^1.10"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"typo3/testing-framework": "^8.0 || ^9.0",
"typo3/minimal": "^12.4 || ^13.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpspec/prophecy-phpunit": "^2.0",
"rector/rector": "^1.2.8",
"phpstan/phpstan-webmozart-assert": "^1.2.2",
"phpstan/phpstan-phpunit": "^1.0",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/extension-installer": "^1.1",
"saschaegerer/phpstan-typo3": "^1.8.0",
"symplify/easy-coding-standard": "^12.1",
"phpstan/phpstan-strict-rules": "^1.4.4",
"typo3/cms-rte-ckeditor": "^12.4 || ^13.4",
"typo3/cms-install": "^12.4 || ^13.4"
},
"replace": {
"typo3-ter/typo3-encore": "self.version"
},
"autoload": {
"psr-4": {
"Ssch\\Typo3Encore\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\Typo3Encore\\Tests\\": "Tests"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"preferred-install": {
"typo3/cms": "source",
"typo3/cms-core": "source",
"*": "dist"
},
"allow-plugins": {
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"scripts": {
"analyze": "phpstan --memory-limit=-1",
"test-php-lint": [
".Build/bin/parallel-lint ./Classes/",
".Build/bin/parallel-lint ./Configuration/TCA/",
".Build/bin/parallel-lint ./Tests/"
],
"lint-php": "parallel-lint Tests Classes Configuration",
"check-style": "ecs check --ansi",
"fix-style": [
"ecs check --fix --ansi"
],
"test-unit": [
".Build/bin/phpunit --configuration Build/UnitTests.xml"
],
"test-functional": [
".Build/bin/phpunit --configuration Build/FunctionalTests.xml"
]
},
"extra": {
"branch-alias": {
"dev-master": "6.x-dev"
},
"typo3/cms": {
"extension-key": "typo3_encore",
"web-dir": ".Build/Web"
}
}
}