Upgrade to Laravel 6.0

This commit is contained in:
Bubka 2020-10-11 20:40:28 +02:00
parent 6d1424e195
commit c653208706
3 changed files with 2196 additions and 904 deletions

View File

@ -1,31 +1,30 @@
{
"name": "laravel/laravel",
"name": "bubka/2fauth",
"type": "project",
"description": "The Laravel Framework.",
"description": "Two-Factor authentication generator",
"keywords": [
"framework",
"laravel"
"2fauth",
"two-actor authentication"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"appstract/laravel-options": "^3.0",
"doctrine/dbal": "^2.10",
"php": "^7.2",
"fideloper/proxy": "^4.0",
"laravel/framework": "6.*",
"laravel/tinker": "^2.0",
"laravel/passport": "^9.3.2",
"doctrine/dbal": "^2.10",
"spatie/eloquent-sortable": "^3.9",
"spomky-labs/otphp": "^10.0",
"khanamiryan/qrcode-detector-decoder": "^1.0",
"laravel/framework": "5.8.*",
"laravel/passport": "^7.2",
"laravel/tinker": "^1.0",
"spatie/eloquent-sortable": "^3.8",
"spomky-labs/otphp": "^10.0"
"appstract/laravel-options": "^3.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"facade/ignition": "^1.4",
"fzaninotto/faker": "^1.9",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^7.5"
"phpunit/phpunit": "^9.3"
},
"config": {
"optimize-autoloader": true,

3067
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ class RouteTest extends TestCase
*/
public function testLandingViewIsReturned()
{
$response = $this->get(route('landing', ['any' => '']));
$response = $this->get(route('landing', ['any' => '/']));
$response->assertSuccessful()
->assertViewIs('landing');