Skip to content

Commit a03497b

Browse files
committed
Add symfony 6 comptability
1 parent 3dc0df7 commit a03497b

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

composer.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,23 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^5.6 || ^7.0 || ^8.0",
14-
"php-task/php-task": "^1.4",
15-
"symfony/http-kernel": "^2.8 || ^3.4 || ^4.0 || ^5.0",
16-
"symfony/dependency-injection": "^2.8 || ^3.4 || ^4.0 || ^5.0",
17-
"symfony/expression-language": "^2.8 || ^3.4 || ^4.0 || ^5.0",
18-
"symfony/config": "^2.8 || ^3.4 || ^4.0 || ^5.0",
19-
"symfony/console": "^2.8 || ^3.4 || ^4.0 || ^5.0",
20-
"symfony/process": "^2.8 || ^3.4 || ^4.0 || ^5.0",
21-
"doctrine/orm": "^2.5"
13+
"php": "^8.0 || ^8.1",
14+
"php-task/php-task": "dev-master as 2.0",
15+
"symfony/http-kernel": "^5.4 || ^6.0",
16+
"symfony/dependency-injection": "^5.4 || ^6.0",
17+
"symfony/expression-language": "^5.4 || ^6.0",
18+
"symfony/config": "^5.4 || ^6.0",
19+
"symfony/console": "^5.4 || ^6.0",
20+
"symfony/process": "^5.4 || ^6.0",
21+
"doctrine/orm": "^2.5.3"
2222
},
2323
"require-dev": {
24-
"symfony/debug": "^2.8 || ^3.4 || ^4.0 || ^5.0",
25-
"symfony/framework-bundle": "^2.8.18 || ^3.4 || ^4.0 || ^5.0",
26-
"symfony/finder": "^2.8 || ^3.4 || ^4.0 || ^5.0",
27-
"symfony/yaml": "^2.8 || ^3.4 || ^4.0 || ^5.0",
28-
"symfony/phpunit-bridge": "^5.2.3",
24+
"symfony/framework-bundle": "^5.4 || ^6.0",
25+
"symfony/finder": "^5.4 || ^6.0",
26+
"symfony/yaml": "^5.4 || ^6.0",
27+
"symfony/phpunit-bridge": "^5.4 || ^6.0",
2928
"doctrine/doctrine-bundle": "^1.5 || ^2.0",
30-
"doctrine/data-fixtures": "^1.1"
29+
"doctrine/data-fixtures": "^1.3.3"
3130
},
3231
"autoload": {
3332
"psr-4": {

tests/app/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?php
33
use Symfony\Bundle\FrameworkBundle\Console\Application;
44
use Symfony\Component\Console\Input\ArgvInput;
5-
use Symfony\Component\Debug\Debug;
5+
use Symfony\Component\ErrorHandler\Debug;
66

77
// if you don't want to setup permissions the proper way, just uncomment the following PHP line
88
// read http://symfony.com/doc/current/book/installation.html#configuration-and-setup for more information

0 commit comments

Comments
 (0)