Skip to content

Commit 58c644e

Browse files
authored
Merge pull request #20 from gcarlev/drop-symfony-debug
Drop symfony/debug and requires symfony/error-handler instead
2 parents 535965e + 7242973 commit 58c644e

4 files changed

Lines changed: 942 additions & 1000 deletions

File tree

Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Symfony\Component\Console\Input\InputInterface;
1212
use Symfony\Component\Console\Input\InputOption;
1313
use Symfony\Component\Console\Output\OutputInterface;
14-
use Symfony\Component\Debug\Exception\FlattenException;
14+
use Symfony\Component\ErrorHandler\Exception\FlattenException;
1515
use Symfony\Component\HttpKernel\KernelInterface;
1616

1717
/**

Entity/Job.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Doctrine\ORM\Mapping as ORM;
2323
use JMS\JobQueueBundle\Exception\InvalidStateTransitionException;
2424
use JMS\JobQueueBundle\Exception\LogicException;
25-
use Symfony\Component\Debug\Exception\FlattenException;
25+
use Symfony\Component\ErrorHandler\Exception\FlattenException;
2626

2727
/**
2828
* @ORM\Entity

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"require": {
1515
"php": "^7.4 || ^8.0",
1616
"symfony/framework-bundle": "^4.0 || ^5.0 || ^6.0",
17-
"symfony/debug": "^4.0 || ^5.0 || ^6.0",
1817
"doctrine/common": "^3.0",
19-
"symfony/process": "^4.0 || ^5.0 || ^6.0"
18+
"symfony/process": "^4.0 || ^5.0 || ^6.0",
19+
"symfony/error-handler": "^5.4"
2020
},
2121
"require-dev": {
2222
"doctrine/doctrine-fixtures-bundle": "*",

0 commit comments

Comments
 (0)