Skip to content

Commit

Permalink
chore: require dev versions of jobrouter packages
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Aug 27, 2024
1 parent 9e34e3c commit 29f91be
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion Tests/Functional/Transfer/DeleterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
use JobRouter\AddOn\Typo3Process\Transfer\Deleter;
use PHPUnit\Framework\Attributes\Test;
use Psr\Log\NullLogger;
use TYPO3\CMS\Core\Configuration\ExtensionConfiguration;
use TYPO3\CMS\Core\Resource\ResourceFactory;
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;

Expand Down Expand Up @@ -52,7 +53,7 @@ protected function setUp(): void

$this->subject = new Deleter(
$attachmentDeleter,
new Crypt(new FileService()),
new Crypt(new FileService($this->createStub(ExtensionConfiguration::class))),
new NullLogger(),
$processTableFieldRepository,
$transferRepository,
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
},
"require": {
"php": ">=8.1",
"jobrouter/rest-client": "^3.0",
"jobrouter/typo3-base": "^3.0",
"jobrouter/typo3-connector": "^3.0",
"jobrouter/rest-client": "^3.1@dev",
"jobrouter/typo3-base": "^4.0@dev",
"jobrouter/typo3-connector": "^4.0@dev",
"typo3/cms-backend": "^12.4",
"typo3/cms-core": "^12.4",
"typo3/cms-fluid": "^12.4",
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
'php' => '8.1.0-0.0.0',
'typo3' => '12.4.0-12.4.99',
'form' => '12.4.0-12.4.99',
'jobrouter_base' => '3.0.0-3.99.99',
'jobrouter_connector' => '3.0.0-3.99.99',
'jobrouter_base' => '4.0.0-4.99.99',
'jobrouter_connector' => '4.0.0-4.99.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit 29f91be

Please sign in to comment.