Skip to content

Commit

Permalink
[TASK] Update dependencies
Browse files Browse the repository at this point in the history
* solarium/solarium to 6.3.5
* phpunit/phpunit to 11.4+
* typo3/coding-standards to v0.8.0
* typo3/testing-framework to [dev-main#47bf0daab24b4210221f46a1fde59b9c3e245e39](TYPO3/testing-framework@47bf0da)

Relates: TYPO3-Solr#3995
  • Loading branch information
dkd-kaehm committed Oct 7, 2024
1 parent f8d3300 commit b584e3a
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ insert_final_newline = true
trim_trailing_whitespace = true

# TS/JS-Files
[*.{ts,js}]
[*.{ts,js,mjs}]
indent_size = 2

# JSON-Files
Expand Down
5 changes: 5 additions & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
$config
->addRules(
[
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => false,
'import_functions' => true,
],
'ordered_imports' => [
'imports_order' => ['class', 'function', 'const'],
'sort_algorithm' => 'alpha'
Expand Down
31 changes: 15 additions & 16 deletions Build/Test/IntegrationTests.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
backupGlobals="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
Expand All @@ -18,19 +18,18 @@
failOnPhpunitDeprecation="true"
processIsolation="true"
>
<coverage includeUncoveredFiles="false"/>
<source>
<include>
<directory>../../Classes</directory>
</include>
</source>
<testsuites>
<testsuite name="ext-solr-integration-tests">
<directory>../../Tests/Integration/</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
<source>
<include>
<directory>../../Classes</directory>
</include>
</source>
<testsuites>
<testsuite name="ext-solr-integration-tests">
<directory>../../Tests/Integration/</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
</phpunit>
2 changes: 1 addition & 1 deletion Build/Test/UnitTests.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
backupGlobals="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"ext-libxml": "*",
"ext-pdo": "*",
"ext-simplexml": "*",
"solarium/solarium": "6.3.2",
"solarium/solarium": "6.3.5",
"typo3/cms-backend": "*",
"typo3/cms-core": "^v13.1",
"typo3/cms-extbase": "*",
Expand All @@ -39,10 +39,10 @@
},
"require-dev": {
"dg/bypass-finals": "^1.6",
"phpunit/phpunit": "^11.2",
"phpunit/phpunit": "^11.4",
"typo3/cms-fluid-styled-content": "*",
"typo3/coding-standards": "dev-main#27798dd4b8a15d2178260dbd6aad83fb0d6a017e",
"typo3/testing-framework": "dev-main#60f586e8923e48be2e7a2dcd9634e9eac51eab6d",
"typo3/coding-standards": "v0.8.0",
"typo3/testing-framework": "dev-main#47bf0daab24b4210221f46a1fde59b9c3e245e39",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.3"
},
Expand Down

0 comments on commit b584e3a

Please sign in to comment.