1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-04-21 07:22:20 +02:00

Update to Laravel 9 and other dependencies, move lang directory to root

This commit is contained in:
Kovah 2022-12-14 23:45:37 +01:00
parent 5561d43138
commit 7decde4b80
No known key found for this signature in database
GPG Key ID: AAAA031BA9830D7B
219 changed files with 1915 additions and 2116 deletions

2
.gitignore vendored
View File

@ -3,7 +3,7 @@
/public/hot
/public/storage
/public/mix-manifest.json
/resources/lang/vendor
/lang/vendor
/storage/*.key
/tests/Controller/logs
/vendor

View File

@ -4,7 +4,7 @@
"license": "GPL-3.0-or-later",
"type": "project",
"require": {
"php": "^8.0 | ^8.1 | ^8.2",
"php": "^8.0.2 | ^8.1 | ^8.2",
"composer/semver": "^1.5",
"doctrine/dbal": "^2.10.2",
"fideloper/proxy": "^4.4",
@ -13,25 +13,29 @@
"kovah/laravel-html-meta": "^2.0",
"laracasts/flash": "^3.1",
"laravel/fortify": "^1.7",
"laravel/framework": "^8.0",
"laravel/framework": "^9.0",
"league/csv": "^9.6",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-sftp-v3": "^3.0",
"predis/predis": "^1.1",
"rap2hpoutre/laravel-log-viewer": "^1.7",
"rap2hpoutre/laravel-log-viewer": "^v2.2.0",
"sentry/sentry-laravel": "^2.3",
"shaarli/netscape-bookmark-parser": "^2.1",
"spatie/laravel-backup": "^6.11.1",
"spatie/laravel-backup": "^8.1.5",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0",
"symfony/postmark-mailer": "^6.0",
"venturecraft/revisionable": "^1.34"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"barryvdh/laravel-ide-helper": "^2.6",
"enlightn/enlightn": "^1.1",
"facade/ignition": "^2.3.6",
"spatie/laravel-ignition": "^1.6",
"fakerphp/faker": "^1.12",
"laravel/tinker": "^2.2.0",
"mockery/mockery": "1.3.*",
"nunomaduro/collision": "^5.0",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"

3411
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -149,17 +149,17 @@ return [
* For Slack you need to install laravel/slack-notification-channel.
*
* You can also use your own notification classes, just make sure the class is named after one of
* the `Spatie\Backup\Events` classes.
* the `Spatie\Backup\Notifications\Notifications` classes.
*/
'notifications' => [
'notifications' => [
\Spatie\Backup\Notifications\Notifications\BackupHasFailed::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFound::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\CleanupHasFailed::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\BackupWasSuccessful::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\HealthyBackupWasFound::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\CleanupWasSuccessful::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\BackupHasFailedNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFoundNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\CleanupHasFailedNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\BackupWasSuccessfulNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\HealthyBackupWasFoundNotification::class => ['mail'],
\Spatie\Backup\Notifications\Notifications\CleanupWasSuccessfulNotification::class => ['mail'],
],
/*
@ -190,6 +190,20 @@ return [
'icon' => null,
],
'discord' => [
'webhook_url' => '',
/*
* If this is an empty string, the name field on the webhook will be used.
*/
'username' => '',
/*
* If this is an empty string, the avatar on the webhook will be used.
*/
'avatar_url' => '',
],
],
/*

View File

@ -74,7 +74,7 @@ return [
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
'schema' => 'public',
'search_path' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [

Some files were not shown because too many files have changed in this diff Show More