mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-12 19:34:31 +02:00
Updated symfony to 4.4
This commit is contained in:
parent
ca33dfc7b7
commit
50a173d57c
7 changed files with 764 additions and 1044 deletions
|
@ -25,26 +25,25 @@
|
|||
"sensio/framework-extra-bundle": "^5.1",
|
||||
"shivas/versioning-bundle": "^3.1",
|
||||
"symfony/apache-pack": "^1.0",
|
||||
"symfony/asset": "4.3.*",
|
||||
"symfony/console": "4.3.*",
|
||||
"symfony/dotenv": "4.3.*",
|
||||
"symfony/expression-language": "4.3.*",
|
||||
"symfony/asset": "4.4.*",
|
||||
"symfony/console": "4.4.*",
|
||||
"symfony/dotenv": "4.4.*",
|
||||
"symfony/expression-language": "4.4.*",
|
||||
"symfony/flex": "^1.1",
|
||||
"symfony/form": "4.3.*",
|
||||
"symfony/framework-bundle": "4.3.*",
|
||||
"symfony/http-client": "4.3.*",
|
||||
"symfony/form": "4.4.*",
|
||||
"symfony/framework-bundle": "4.4.*",
|
||||
"symfony/http-client": "4.4.*",
|
||||
"symfony/monolog-bundle": "^3.1",
|
||||
"symfony/orm-pack": "*",
|
||||
"symfony/process": "4.3.*",
|
||||
"symfony/security-bundle": "4.3.*",
|
||||
"symfony/process": "4.4.*",
|
||||
"symfony/security-bundle": "4.4.*",
|
||||
"symfony/serializer-pack": "*",
|
||||
"symfony/swiftmailer-bundle": "^3.1",
|
||||
"symfony/translation": "4.3.*",
|
||||
"symfony/twig-bundle": "4.3.*",
|
||||
"symfony/validator": "4.3.*",
|
||||
"symfony/web-link": "4.3.*",
|
||||
"symfony/translation": "4.4.*",
|
||||
"symfony/twig-bundle": "4.4.*",
|
||||
"symfony/validator": "4.4.*",
|
||||
"symfony/web-link": "4.4.*",
|
||||
"symfony/webpack-encore-bundle": "^1.1",
|
||||
"symfony/yaml": "4.3.*",
|
||||
"symfony/yaml": "4.4.*",
|
||||
"twig/extensions": "^1.5",
|
||||
"twig/extra-bundle": "3.x-dev",
|
||||
"twig/intl-extra": "3.x-dev",
|
||||
|
@ -58,7 +57,6 @@
|
|||
"symfony/maker-bundle": "^1.13",
|
||||
"symfony/profiler-pack": "*",
|
||||
"symfony/test-pack": "^1.0",
|
||||
"symfony/web-server-bundle": "4.3.*",
|
||||
"vimeo/psalm": "^3.5"
|
||||
},
|
||||
"config": {
|
||||
|
@ -107,7 +105,7 @@
|
|||
"extra": {
|
||||
"symfony": {
|
||||
"allow-contrib": false,
|
||||
"require": "4.3.*"
|
||||
"require": "4.4.*"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
1710
composer.lock
generated
1710
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -1,24 +1,4 @@
|
|||
<?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 [
|
||||
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||||
|
@ -27,13 +7,11 @@ return [
|
|||
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
||||
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::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\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
||||
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
||||
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
|
||||
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
||||
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
|
||||
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
||||
Omines\DataTablesBundle\DataTablesBundle::class => ['all' => true],
|
||||
Shivas\VersioningBundle\ShivasVersioningBundle::class => ['all' => true],
|
||||
|
|
|
@ -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']
|
|
@ -1,3 +0,0 @@
|
|||
swiftmailer:
|
||||
url: '%env(MAILER_URL)%'
|
||||
spool: { type: 'memory' }
|
|
@ -1,2 +0,0 @@
|
|||
swiftmailer:
|
||||
disable_delivery: true
|
35
symfony.lock
35
symfony.lock
|
@ -129,18 +129,12 @@
|
|||
"./config/packages/dev/easy_log_handler.yaml"
|
||||
]
|
||||
},
|
||||
"egulias/email-validator": {
|
||||
"version": "2.1.7"
|
||||
},
|
||||
"felixfbecker/advanced-json-rpc": {
|
||||
"version": "v3.0.4"
|
||||
},
|
||||
"felixfbecker/language-server-protocol": {
|
||||
"version": "v1.4.0"
|
||||
},
|
||||
"fig/link-util": {
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"florianv/exchanger": {
|
||||
"version": "1.4.1"
|
||||
},
|
||||
|
@ -316,9 +310,6 @@
|
|||
"shivas/versioning-bundle": {
|
||||
"version": "3.1.3"
|
||||
},
|
||||
"swiftmailer/swiftmailer": {
|
||||
"version": "v6.1.3"
|
||||
},
|
||||
"symfony/apache-pack": {
|
||||
"version": "1.0",
|
||||
"recipe": {
|
||||
|
@ -392,6 +383,9 @@
|
|||
"symfony/dotenv": {
|
||||
"version": "v4.2.3"
|
||||
},
|
||||
"symfony/error-handler": {
|
||||
"version": "v4.4.0"
|
||||
},
|
||||
"symfony/event-dispatcher": {
|
||||
"version": "v4.2.3"
|
||||
},
|
||||
|
@ -588,20 +582,6 @@
|
|||
"symfony/stopwatch": {
|
||||
"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": {
|
||||
"version": "v4.3.4"
|
||||
},
|
||||
|
@ -676,15 +656,6 @@
|
|||
"./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": {
|
||||
"version": "1.0",
|
||||
"recipe": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue