You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[BUGFIX] Do not require meta package typo3/minimal
Do not require the meta package `typo3/minimal` but require
the packages that are really required by the package itself.
Do also add a suggestion to install `typo3/testing-framework`
as it is required by the bootstrap.
Fixes#3
Copy file name to clipboardExpand all lines: composer.json
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,11 @@
12
12
"require": {
13
13
"php": "~7.0",
14
14
"phpstan/phpstan": "^0.10",
15
-
"typo3/minimal": "^8.7.0 || ~9.0"
15
+
"typo3/cms-core": "^8.7.0 || ~9.0",
16
+
"typo3/cms-extbase": "^8.7.0 || ~9.0"
17
+
},
18
+
"suggest": {
19
+
"typo3/testing-framework": "Testing framework is used in the bootstrap (src/PhpStanTypo3Bootstrap.php). In most cases you need this package but you may also use your custom bootstrap (e.g. if you use nimut/testing-framework)"
0 commit comments