Skip to content

Commit

Permalink
Add local typo3 instance for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Richter committed Feb 29, 2024
1 parent 99b2622 commit 4a7a428
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
.idea
.idea/
.Build/
Build/testing-docker/.env
composer.lock
public/
13 changes: 10 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,25 @@
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11.5",
"typo3/cms-core": "^11",
"elasticsearch/elasticsearch": "^7",
"illuminate/collections": "^8"
},
"require-dev": {
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10",
"phpunit/phpunit": "^9",
"typo3/testing-framework": "^7"
},
"autoload": {
"psr-4": {
"Slub\\LisztCommon\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Slub\\LisztCommon\\Tests\\": "Tests"
}
},
"extra": {
"typo3/cms": {
"extension-key": "liszt_common"
Expand All @@ -37,6 +42,8 @@
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
}
}
2 changes: 1 addition & 1 deletion config/FunctionalTests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="../../../html/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
bootstrap="../.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
cacheResult="false"
colors="true"
failOnRisky="true"
Expand Down
2 changes: 1 addition & 1 deletion config/UnitTests.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
backupGlobals="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="../../../html/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
bootstrap="../.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
cacheResult="false"
colors="true"
failOnRisky="true"
Expand Down

0 comments on commit 4a7a428

Please sign in to comment.