Skip to content

Commit 05cd2e1

Browse files
authored
Merge pull request #101 from mikeweb85/feature/cakephp-4-revised
PSR/log fix and path spec only
2 parents 569c376 + 47333a2 commit 05cd2e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"php": ">=7.2.0",
2222
"cakephp/cakephp": "^4.1",
2323
"enqueue/simple-client": "^0.10",
24-
"psr/log": "^1.1"
24+
"psr/log": "^1.1 || ^2.0"
2525
},
2626
"require-dev": {
2727
"cakephp/bake": "^2.1",

tests/TestCase/QueueManagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testNonDefaultQueueNameArray()
9393
{
9494
QueueManager::setConfig('test', [
9595
'url' => [
96-
'transport' => 'file:',
96+
'transport' => 'file:' . TMP . 'fs-test.tmp',
9797
'client' => [
9898
'router_queue' => 'other',
9999
],

tests/TestCase/Task/JobTaskTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function tearDown(): void
6161

6262
public function testMain()
6363
{
64-
$this->generatedFile = APP . 'Job/UploadJob.php';
64+
$this->generatedFile = APP . 'Job' . DS . 'UploadJob.php';
6565

6666
$this->exec('bake job upload');
6767
$this->assertExitCode(Command::CODE_SUCCESS);

0 commit comments

Comments
 (0)