Update composer to symfony 5 (without config)

This commit is contained in:
Julien Fastré 2023-09-03 15:24:50 +02:00
parent 91e6b035bd
commit 16a5745df9
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
3 changed files with 23 additions and 36 deletions

View File

@ -12,7 +12,7 @@
"ext-json": "*", "ext-json": "*",
"ext-openssl": "*", "ext-openssl": "*",
"ext-redis": "*", "ext-redis": "*",
"champs-libres/async-uploader-bundle": "dev-sf4#d57134aee8e504a83c902ff0cf9f8d36ac418290", "champs-libres/async-uploader-bundle": "dev-master@dev",
"champs-libres/wopi-bundle": "dev-master@dev", "champs-libres/wopi-bundle": "dev-master@dev",
"champs-libres/wopi-lib": "dev-master@dev", "champs-libres/wopi-lib": "dev-master@dev",
"doctrine/doctrine-bundle": "^2.1", "doctrine/doctrine-bundle": "^2.1",
@ -33,27 +33,27 @@
"ramsey/uuid-doctrine": "^1.7", "ramsey/uuid-doctrine": "^1.7",
"sensio/framework-extra-bundle": "^5.5", "sensio/framework-extra-bundle": "^5.5",
"spomky-labs/base64url": "^2.0", "spomky-labs/base64url": "^2.0",
"symfony/browser-kit": "^4.4", "symfony/browser-kit": "^5.4",
"symfony/clock": "^6.2", "symfony/clock": "^6.2",
"symfony/css-selector": "^4.4", "symfony/css-selector": "^5.4",
"symfony/expression-language": "^4.4", "symfony/expression-language": "^5.4",
"symfony/form": "^4.4", "symfony/form": "^5.4",
"symfony/framework-bundle": "^4.4", "symfony/framework-bundle": "^5.4",
"symfony/http-client": "^4.4 || ^5", "symfony/http-client": "^5.4",
"symfony/http-foundation": "^4.4", "symfony/http-foundation": "^5.4",
"symfony/intl": "^4.4", "symfony/intl": "^5.4",
"symfony/mailer": "^5.4", "symfony/mailer": "^5.4",
"symfony/messenger": "^5.4", "symfony/messenger": "^5.4",
"symfony/mime": "^5.4", "symfony/mime": "^5.4",
"symfony/monolog-bundle": "^3.5", "symfony/monolog-bundle": "^3.5",
"symfony/security-bundle": "^4.4", "symfony/security-bundle": "^5.4",
"symfony/serializer": "^5.3", "symfony/serializer": "^5.4",
"symfony/translation": "^4.4", "symfony/translation": "^5.4",
"symfony/twig-bundle": "^4.4", "symfony/twig-bundle": "^5.4",
"symfony/validator": "^4.4", "symfony/validator": "^5.4",
"symfony/webpack-encore-bundle": "^1.11", "symfony/webpack-encore-bundle": "^1.11",
"symfony/workflow": "^4.4", "symfony/workflow": "^5.4",
"symfony/yaml": "^4.4", "symfony/yaml": "^5.4",
"thenetworg/oauth2-azure": "^2.0", "thenetworg/oauth2-azure": "^2.0",
"twig/extra-bundle": "^3.0", "twig/extra-bundle": "^3.0",
"twig/intl-extra": "^3.0", "twig/intl-extra": "^3.0",
@ -73,16 +73,13 @@
"phpstan/phpstan-deprecation-rules": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-strict-rules": "^1.0", "phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": ">= 7.5", "phpunit/phpunit": ">= 7.5",
"psalm/plugin-phpunit": "^0.18.4",
"psalm/plugin-symfony": "^4.0.2",
"rector/rector": "^0.17.7", "rector/rector": "^0.17.7",
"symfony/debug-bundle": "^5.1", "symfony/debug-bundle": "^5.4",
"symfony/dotenv": "^4.4", "symfony/dotenv": "^5.4",
"symfony/maker-bundle": "^1.20", "symfony/maker-bundle": "^1.20",
"symfony/phpunit-bridge": "^4.4", "symfony/phpunit-bridge": "^5.4",
"symfony/stopwatch": "^4.4", "symfony/stopwatch": "^5.4",
"symfony/var-dumper": "^4.4", "symfony/var-dumper": "^5.4"
"vimeo/psalm": "^4.30.0"
}, },
"conflict": { "conflict": {
"symfony/symfony": "*" "symfony/symfony": "*"

View File

@ -27,12 +27,7 @@ class SendShortMessageOnEligibleCalendar extends Command
{ {
public function __construct(private readonly BulkCalendarShortMessageSender $messageSender) public function __construct(private readonly BulkCalendarShortMessageSender $messageSender)
{ {
parent::__construct(); parent::__construct('chill:calendar:send-short-messages');
}
public function getName()
{
return 'chill:calendar:send-short-messages';
} }
protected function execute(InputInterface $input, OutputInterface $output): int protected function execute(InputInterface $input, OutputInterface $output): int

View File

@ -47,12 +47,7 @@ class SendTestShortMessageOnCalendarCommand extends Command
private readonly ShortMessageTransporterInterface $transporter, private readonly ShortMessageTransporterInterface $transporter,
private readonly UserRepositoryInterface $userRepository private readonly UserRepositoryInterface $userRepository
) { ) {
parent::__construct(); parent::__construct('chill:calendar:test-send-short-message');
}
public function getName()
{
return 'chill:calendar:test-send-short-message';
} }
protected function configure() protected function configure()