Skip to content

Commit 3dbd497

Browse files
committed
[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
1 parent 7eb062c commit 3dbd497

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

composer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
"require": {
1313
"php": "~7.0",
1414
"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)"
1620
},
1721
"autoload": {
1822
"psr-4": {

0 commit comments

Comments
 (0)