Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
Remove deprecated Symfony\Component\Debug (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanputten authored Feb 12, 2020
1 parent eaf3409 commit 61a6dba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,18 @@ branches:
- master

php:
- '7.1'
- '7.2'
- nightly

matrix:
fast_finish: true
include:
- php: '7.1'
- php: '7.2'
env:
- COMPOSER_FLAGS='--prefer-lowest'
- SYMFONY_VERSION='~4.3.0'
- SYMFONY_VERSION='~4.4.0'
- php: '7.2'
env: SYMFONY_VERSION='~4.3.0'
env: SYMFONY_VERSION='~4.4.0'
- php: '7.2'
env: SYMFONY_VERSION='^5.0'
allow_failures:
Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require_once __DIR__.'/../vendor/autoload.php';
use Fidry\PsyshBundle\Functional\AppKernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Input\ArgvInput;
use Symfony\Component\Debug\Debug;
use Symfony\Component\ErrorHandler\Debug;

$input = new ArgvInput();
$env = $input->getParameterOption(array('--env', '-e'), getenv('SYMFONY_ENV') ?: 'dev');
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
],

"require": {
"php": "^7.1",
"php": "^7.2",
"psy/psysh": "^0.8 || ^0.9",
"symfony/debug": "^4.3|^4.4",
"symfony/expression-language": "^4.3|^5.0",
"symfony/framework-bundle": "^4.3|^5.0"
"symfony/error-handler": "^4.4|^5.0",
"symfony/expression-language": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/symfony": "^4.3|^5.0"
"symfony/symfony": "^4.4|^5.0"
},

"autoload": {
Expand Down

0 comments on commit 61a6dba

Please sign in to comment.