update dependencies

This commit is contained in:
Kacper Donat 2020-11-28 16:01:46 +01:00
parent 106aa2149e
commit a865c5ec8d
5 changed files with 2547 additions and 1860 deletions

6
api/.gitignore vendored
View File

@ -1,15 +1,9 @@
###> symfony/framework-bundle ### ###> symfony/framework-bundle ###
/.env /.env
/public/bundles/ /public/bundles/
/var/ /var/
/vendor/ /vendor/
###< symfony/framework-bundle ### ###< symfony/framework-bundle ###
###> symfony/web-server-bundle ###
/.web-server-pid
###< symfony/web-server-bundle ###
/node_modules/ /node_modules/
/public/* /public/*
!/public/index.php !/public/index.php

View File

@ -23,12 +23,10 @@
"symfony/profiler-pack": "^1.0", "symfony/profiler-pack": "^1.0",
"symfony/twig-bundle": "^4.4", "symfony/twig-bundle": "^4.4",
"symfony/yaml": "^4.4", "symfony/yaml": "^4.4",
"tightenco/collect": "^5.6" "tightenco/collect": "^5.6",
}, "kadet/functional": "dev-master",
"require-dev": { "spiral/roadrunner": "^1.8",
"symfony/dotenv": "^4.4", "symfony/dotenv": "^4.4"
"symfony/web-server-bundle": "^4.4",
"kadet/functional": "dev-master"
}, },
"config": { "config": {
"preferred-install": { "preferred-install": {
@ -44,7 +42,9 @@
"psr-4": { "psr-4": {
"App\\": "src/" "App\\": "src/"
}, },
"files": ["./src/Functions/index.php"] "files": [
"./src/Functions/index.php"
]
}, },
"autoload-dev": { "autoload-dev": {
"psr-4": { "psr-4": {

4374
api/composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,6 @@
return [ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true], Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true], Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],

View File

@ -307,9 +307,6 @@
"symfony/polyfill-php73": { "symfony/polyfill-php73": {
"version": "v1.13.1" "version": "v1.13.1"
}, },
"symfony/process": {
"version": "v4.1.3"
},
"symfony/profiler-pack": { "symfony/profiler-pack": {
"version": "v1.0.4" "version": "v1.0.4"
}, },
@ -384,15 +381,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/yaml": { "symfony/yaml": {
"version": "v4.1.3" "version": "v4.1.3"
}, },