Skip to content

Commit

Permalink
Merge pull request #1 from Xammie/laravel-11
Browse files Browse the repository at this point in the history
Laravel 11
  • Loading branch information
Xammie authored Mar 13, 2024
2 parents cd1d623 + 1cc8733 commit 4317304
Show file tree
Hide file tree
Showing 38 changed files with 856 additions and 2,465 deletions.
42 changes: 35 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,57 @@ APP_NAME="Mailbook"
APP_ENV=local
APP_KEY=
APP_DEBUG=true
APP_TIMEZONE=UTC
APP_URL=https://mailbook-demo.test

APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US

APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database

BCRYPT_ROUNDS=12

LOG_CHANNEL=stack
LOG_STACK=single
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DRIVER=local
QUEUE_CONNECTION=sync
DB_CONNECTION=sqlite
# DB_HOST=127.0.0.1
# DB_PORT=3306
# DB_DATABASE=laravel
# DB_USERNAME=root
# DB_PASSWORD=

SESSION_DRIVER=file
SESSION_LIFETIME=120
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null

BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync

CACHE_STORE=file
CACHE_PREFIX=

MEMCACHED_HOST=127.0.0.1

REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_MAILER=log
MAIL_HOST=127.0.0.1
MAIL_PORT=1025
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=[email protected]
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"

SENTRY_LARAVEL_DSN=
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ usage:
# ===========================

init: do_composer do_init do_ide_helpers
update: do_composer do_ide_helpers
update: do_composer do_ide_helpers do_clear
test: do_test
coverage: do_coverage
format: do_format
package: do_composer do_local_package
analyse: do_phpstan
rector: do_rector
clear: do_clear

# ===========================
# Recipes
Expand Down Expand Up @@ -59,4 +60,7 @@ do_phpstan:
./vendor/bin/phpstan analyse

do_rector:
./vendor/bin/rector process
./vendor/bin/rector process

do_clear:
php artisan cache:clear
24 changes: 0 additions & 24 deletions app/Console/Kernel.php

This file was deleted.

54 changes: 0 additions & 54 deletions app/Exceptions/Handler.php

This file was deleted.

80 changes: 0 additions & 80 deletions app/Http/Kernel.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Http/Middleware/EncryptCookies.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Http/Middleware/PreventRequestsDuringMaintenance.php

This file was deleted.

21 changes: 0 additions & 21 deletions app/Http/Middleware/TrimStrings.php

This file was deleted.

30 changes: 0 additions & 30 deletions app/Http/Middleware/TrustProxies.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Http/Middleware/VerifyCsrfToken.php

This file was deleted.

22 changes: 0 additions & 22 deletions app/Providers/AppServiceProvider.php

This file was deleted.

Loading

0 comments on commit 4317304

Please sign in to comment.