Updated symfony to 4.4

This commit is contained in:
Jan Böhmer 2019-11-21 22:16:30 +01:00
parent ca33dfc7b7
commit 50a173d57c
7 changed files with 764 additions and 1044 deletions

View file

@ -25,26 +25,25 @@
"sensio/framework-extra-bundle": "^5.1", "sensio/framework-extra-bundle": "^5.1",
"shivas/versioning-bundle": "^3.1", "shivas/versioning-bundle": "^3.1",
"symfony/apache-pack": "^1.0", "symfony/apache-pack": "^1.0",
"symfony/asset": "4.3.*", "symfony/asset": "4.4.*",
"symfony/console": "4.3.*", "symfony/console": "4.4.*",
"symfony/dotenv": "4.3.*", "symfony/dotenv": "4.4.*",
"symfony/expression-language": "4.3.*", "symfony/expression-language": "4.4.*",
"symfony/flex": "^1.1", "symfony/flex": "^1.1",
"symfony/form": "4.3.*", "symfony/form": "4.4.*",
"symfony/framework-bundle": "4.3.*", "symfony/framework-bundle": "4.4.*",
"symfony/http-client": "4.3.*", "symfony/http-client": "4.4.*",
"symfony/monolog-bundle": "^3.1", "symfony/monolog-bundle": "^3.1",
"symfony/orm-pack": "*", "symfony/orm-pack": "*",
"symfony/process": "4.3.*", "symfony/process": "4.4.*",
"symfony/security-bundle": "4.3.*", "symfony/security-bundle": "4.4.*",
"symfony/serializer-pack": "*", "symfony/serializer-pack": "*",
"symfony/swiftmailer-bundle": "^3.1", "symfony/translation": "4.4.*",
"symfony/translation": "4.3.*", "symfony/twig-bundle": "4.4.*",
"symfony/twig-bundle": "4.3.*", "symfony/validator": "4.4.*",
"symfony/validator": "4.3.*", "symfony/web-link": "4.4.*",
"symfony/web-link": "4.3.*",
"symfony/webpack-encore-bundle": "^1.1", "symfony/webpack-encore-bundle": "^1.1",
"symfony/yaml": "4.3.*", "symfony/yaml": "4.4.*",
"twig/extensions": "^1.5", "twig/extensions": "^1.5",
"twig/extra-bundle": "3.x-dev", "twig/extra-bundle": "3.x-dev",
"twig/intl-extra": "3.x-dev", "twig/intl-extra": "3.x-dev",
@ -58,7 +57,6 @@
"symfony/maker-bundle": "^1.13", "symfony/maker-bundle": "^1.13",
"symfony/profiler-pack": "*", "symfony/profiler-pack": "*",
"symfony/test-pack": "^1.0", "symfony/test-pack": "^1.0",
"symfony/web-server-bundle": "4.3.*",
"vimeo/psalm": "^3.5" "vimeo/psalm": "^3.5"
}, },
"config": { "config": {
@ -107,7 +105,7 @@
"extra": { "extra": {
"symfony": { "symfony": {
"allow-contrib": false, "allow-contrib": false,
"require": "4.3.*" "require": "4.4.*"
} }
} }
} }

1710
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,24 +1,4 @@
<?php <?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony)
*
* Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
return [ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
@ -27,13 +7,11 @@ return [
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true], Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true], Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true], Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
Omines\DataTablesBundle\DataTablesBundle::class => ['all' => true], Omines\DataTablesBundle\DataTablesBundle::class => ['all' => true],
Shivas\VersioningBundle\ShivasVersioningBundle::class => ['all' => true], Shivas\VersioningBundle\ShivasVersioningBundle::class => ['all' => true],

View file

@ -1,4 +0,0 @@
# See https://symfony.com/doc/current/email/dev_environment.html
swiftmailer:
# send all emails to a specific address
#delivery_addresses: ['me@example.com']

View file

@ -1,3 +0,0 @@
swiftmailer:
url: '%env(MAILER_URL)%'
spool: { type: 'memory' }

View file

@ -1,2 +0,0 @@
swiftmailer:
disable_delivery: true

View file

@ -129,18 +129,12 @@
"./config/packages/dev/easy_log_handler.yaml" "./config/packages/dev/easy_log_handler.yaml"
] ]
}, },
"egulias/email-validator": {
"version": "2.1.7"
},
"felixfbecker/advanced-json-rpc": { "felixfbecker/advanced-json-rpc": {
"version": "v3.0.4" "version": "v3.0.4"
}, },
"felixfbecker/language-server-protocol": { "felixfbecker/language-server-protocol": {
"version": "v1.4.0" "version": "v1.4.0"
}, },
"fig/link-util": {
"version": "1.0.0"
},
"florianv/exchanger": { "florianv/exchanger": {
"version": "1.4.1" "version": "1.4.1"
}, },
@ -316,9 +310,6 @@
"shivas/versioning-bundle": { "shivas/versioning-bundle": {
"version": "3.1.3" "version": "3.1.3"
}, },
"swiftmailer/swiftmailer": {
"version": "v6.1.3"
},
"symfony/apache-pack": { "symfony/apache-pack": {
"version": "1.0", "version": "1.0",
"recipe": { "recipe": {
@ -392,6 +383,9 @@
"symfony/dotenv": { "symfony/dotenv": {
"version": "v4.2.3" "version": "v4.2.3"
}, },
"symfony/error-handler": {
"version": "v4.4.0"
},
"symfony/event-dispatcher": { "symfony/event-dispatcher": {
"version": "v4.2.3" "version": "v4.2.3"
}, },
@ -588,20 +582,6 @@
"symfony/stopwatch": { "symfony/stopwatch": {
"version": "v4.2.3" "version": "v4.2.3"
}, },
"symfony/swiftmailer-bundle": {
"version": "2.5",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "2.5",
"ref": "3db029c03e452b4a23f7fc45cec7c922c2247eb8"
},
"files": [
"./config/packages/dev/swiftmailer.yaml",
"./config/packages/swiftmailer.yaml",
"./config/packages/test/swiftmailer.yaml"
]
},
"symfony/templating": { "symfony/templating": {
"version": "v4.3.4" "version": "v4.3.4"
}, },
@ -676,15 +656,6 @@
"./config/routes/dev/web_profiler.yaml" "./config/routes/dev/web_profiler.yaml"
] ]
}, },
"symfony/web-server-bundle": {
"version": "3.3",
"recipe": {
"repo": "github.com/symfony/recipes",
"branch": "master",
"version": "3.3",
"ref": "dae9b39fd6717970be7601101ce5aa960bf53d9a"
}
},
"symfony/webpack-encore-bundle": { "symfony/webpack-encore-bundle": {
"version": "1.0", "version": "1.0",
"recipe": { "recipe": {