#49 - laravel 9 (#55)

This commit is contained in:
Adrian Hopek 2022-02-18 11:42:06 +01:00 committed by GitHub
parent fae50cb21c
commit 597d6f0ddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 709 additions and 2099 deletions

View File

@ -19,5 +19,5 @@ CACHE_DRIVER=array
QUEUE_CONNECTION=sync
SESSION_DRIVER=array
SESSION_LIFETIME=120
FILESYSTEM_DRIVER=local
FILESYSTEM_DISK=local
MAIL_MAILER=array

View File

@ -22,7 +22,7 @@ CACHE_DRIVER=array
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
FILESYSTEM_DRIVER=local
FILESYSTEM_DISK=local
MAIL_MAILER=array
TELESCOPE_ENABLED=false

View File

@ -35,7 +35,7 @@ CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
FILESYSTEM_DRIVER=local
FILESYSTEM_DISK=local
MAILHOG_PORT=1025
MAILHOG_DASHBOARD_PORT=8025

View File

@ -12,7 +12,7 @@
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"inertiajs/inertia-laravel": "^0.5.1",
"laravel/framework": "^8.75",
"laravel/framework": "^9.0",
"laravel/sanctum": "^2.14",
"laravel/socialite": "^5.2",
"laravel/telescope": "^4.6",
@ -22,12 +22,11 @@
},
"require-dev": {
"blumilksoftware/codestyle": "^0.9.0",
"enlightn/enlightn": "^1.22",
"facade/ignition": "^2.5",
"spatie/laravel-ignition": "^1.0",
"fakerphp/faker": "^1.9.1",
"laravel/dusk": "^6.21",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^5.10",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {

2723
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,68 +0,0 @@
<?php
declare(strict_types=1);
return [
"analyzers" => ["*"],
"exclude_analyzers" => [],
"ci_mode_exclude_analyzers" => [],
"analyzer_paths" => [
"Enlightn\\Enlightn\\Analyzers" => base_path("vendor/enlightn/enlightn/src/Analyzers"),
"Enlightn\\EnlightnPro\\Analyzers" => base_path("vendor/enlightn/enlightnpro/src/Analyzers"),
],
"base_path" => [
app_path(),
database_path("migrations"),
database_path("seeders"),
],
"skip_env_specific" => env("ENLIGHTN_SKIP_ENVIRONMENT_SPECIFIC", false),
"guest_url" => null,
"dont_report" => [],
"ignore_errors" => [],
"license_whitelist" => [
"Apache-2.0",
"Apache2",
"BSD-2-Clause",
"BSD-3-Clause",
"LGPL-2.1-only",
"LGPL-2.1",
"LGPL-2.1-or-later",
"LGPL-3.0",
"LGPL-3.0-only",
"LGPL-3.0-or-later",
"MIT",
"ISC",
"CC0-1.0",
"Unlicense",
"WTFPL",
],
"credentials" => [
"username" => env("ENLIGHTN_USERNAME"),
"api_token" => env("ENLIGHTN_API_TOKEN"),
],
"github_repo" => env("ENLIGHTN_GITHUB_REPO"),
"compact_lines" => true,
"commercial_packages" => [
"enlightn/enlightnpro",
],
"allowed_permissions" => [
base_path() => "775",
app_path() => "775",
resource_path() => "775",
storage_path() => "775",
public_path() => "775",
config_path() => "775",
database_path() => "775",
base_path("routes") => "775",
app()->bootstrapPath() => "775",
app()->bootstrapPath("cache") => "775",
app()->bootstrapPath("app.php") => "664",
base_path("artisan") => "775",
public_path("index.php") => "664",
public_path("server.php") => "664",
],
"writable_directories" => [
storage_path(),
app()->bootstrapPath("cache"),
],
];

View File

@ -3,7 +3,7 @@
declare(strict_types=1);
return [
"default" => env("FILESYSTEM_DRIVER", "local"),
"default" => env("FILESYSTEM_DISK", "local"),
"disks" => [
"local" => [
"driver" => "local",

View File

@ -122,6 +122,6 @@ class HolidayTest extends FeatureTestCase
->delete("/holidays/{$holiday->id}")
->assertSessionHasNoErrors();
$this->assertDeleted($holiday);
$this->assertModelMissing($holiday);
}
}