Skip to content

Commit

Permalink
phpunit ^11 (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
fezfez authored May 8, 2024
1 parent dca86b5 commit 12985f3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.2.0 || ~8.3.0",
"job-runner/job-runner": "^1.3",
"symfony/notifier": "^6.0 || ^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^10.5.19",
"phpunit/phpunit": "^11.0.3",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.24"
"vimeo/psalm": "dev-master"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion tests/Unit/SymfonyNotifierEventListenerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@

use JobRunner\JobRunner\Job\Job;
use JobRunner\JobRunner\SymfonyNotifier\SymfonyNotifierEventListener;
use PHPUnit\Framework\Attributes\CoversClass;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\NotifierInterface;
use Symfony\Component\Notifier\Recipient\RecipientInterface;

/** @covers \JobRunner\JobRunner\SymfonyNotifier\SymfonyNotifierEventListener */
#[CoversClass(SymfonyNotifierEventListener::class)]
class SymfonyNotifierEventListenerTest extends TestCase
{
public function testSuccess(): void
Expand Down

0 comments on commit 12985f3

Please sign in to comment.