composer lock

This commit is contained in:
SergiX44 2019-11-15 17:08:07 +01:00
parent bbf365279d
commit 94219c4fa2
2 changed files with 13 additions and 13 deletions

22
composer.lock generated
View file

@ -8,16 +8,16 @@
"packages": [ "packages": [
{ {
"name": "aws/aws-sdk-php", "name": "aws/aws-sdk-php",
"version": "3.116.0", "version": "3.117.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/aws/aws-sdk-php.git", "url": "https://github.com/aws/aws-sdk-php.git",
"reference": "b0669936681365a6c5201a6d28bfa76553052912" "reference": "6951cd08326d939f1fd1097a490fccb9751a59d7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b0669936681365a6c5201a6d28bfa76553052912", "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/6951cd08326d939f1fd1097a490fccb9751a59d7",
"reference": "b0669936681365a6c5201a6d28bfa76553052912", "reference": "6951cd08326d939f1fd1097a490fccb9751a59d7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -87,7 +87,7 @@
"s3", "s3",
"sdk" "sdk"
], ],
"time": "2019-11-12T19:15:09+00:00" "time": "2019-11-14T19:27:06+00:00"
}, },
{ {
"name": "firebase/php-jwt", "name": "firebase/php-jwt",
@ -2901,16 +2901,16 @@
}, },
{ {
"name": "ocramius/package-versions", "name": "ocramius/package-versions",
"version": "1.4.0", "version": "1.4.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/Ocramius/PackageVersions.git", "url": "https://github.com/Ocramius/PackageVersions.git",
"reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb" "reference": "7ca61c24dc301cc9d47d6fb459b3d39f2d54b7e5"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", "url": "https://api.github.com/repos/Ocramius/PackageVersions/zipball/7ca61c24dc301cc9d47d6fb459b3d39f2d54b7e5",
"reference": "a4d4b60d0e60da2487bd21a2c6ac089f85570dbb", "reference": "7ca61c24dc301cc9d47d6fb459b3d39f2d54b7e5",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -2922,7 +2922,7 @@
"doctrine/coding-standard": "^5.0.1", "doctrine/coding-standard": "^5.0.1",
"ext-zip": "*", "ext-zip": "*",
"infection/infection": "^0.7.1", "infection/infection": "^0.7.1",
"phpunit/phpunit": "^7.0.0" "phpunit/phpunit": "^7.5.17"
}, },
"type": "composer-plugin", "type": "composer-plugin",
"extra": { "extra": {
@ -2947,7 +2947,7 @@
} }
], ],
"description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
"time": "2019-02-21T12:16:21+00:00" "time": "2019-11-14T14:22:47+00:00"
}, },
{ {
"name": "phpstan/phpdoc-parser", "name": "phpstan/phpdoc-parser",

View file

@ -257,7 +257,7 @@ $app->post('/', function (Request $request, Response $response, Filesystem $stor
cleanDirectory(__DIR__.'/../resources/cache'); cleanDirectory(__DIR__.'/../resources/cache');
cleanDirectory(__DIR__.'/../resources/sessions'); cleanDirectory(__DIR__.'/../resources/sessions');
//removeDirectory(__DIR__.'/../install'); removeDirectory(__DIR__.'/../install');
// if is upgrading and existing installation, put it out maintenance // if is upgrading and existing installation, put it out maintenance
if ($installed) { if ($installed) {
@ -271,7 +271,7 @@ $app->post('/', function (Request $request, Response $response, Filesystem $stor
} }
// Installed successfully, destroy the installer session // Installed successfully, destroy the installer session
session_destroy(); $session->destroy();
return redirect($response, "{$config['base_url']}/?afterInstall=true"); return redirect($response, "{$config['base_url']}/?afterInstall=true");
}); });