Skip to content

Commit

Permalink
Update to Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez committed Jan 14, 2025
1 parent 95684b8 commit 9ad945b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: CI
on:
push:
branches:
- 'main'
- '9.x'
pull_request:
branches:
- 'main'
- '9.x'

env:
APP_ENV: test

jobs:
laravel:
name: Laravel 8 (PHP ${{ matrix.php-versions }})
name: Laravel 9 (PHP ${{ matrix.php-versions }})
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['8.0', '8.1', '8.2']
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
23 changes: 13 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@
}
],
"require": {
"php": ">=7.4.0",
"php": ">=8.0.1",
"ext-pdo": "*",
"laravel/framework": "^8.83",
"laravel/framework": "^9.0",
"laravel/ui": "^3.4"
},
"require-dev": {
"ext-fileinfo": "*",
"ext-json": "*",
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.14",
"codeception/codeception": "^4.1 | ^5.0.0-RC3",
"codeception/module-asserts": "^2.0 | ^3.0",
"codeception/module-laravel": "^2.1 | ^3.0 | *@dev",
"facade/ignition": "^2.17",
"fakerphp/faker": "^1.17",
"nunomaduro/collision": "^5.11"
"barryvdh/laravel-debugbar": "^3.14",
"barryvdh/laravel-ide-helper": "^2.15",
"codeception/codeception": "^5.0.8",
"codeception/module-asserts": "^3.0",
"codeception/module-laravel": "^3.0 | *@dev",
"fakerphp/faker": "^1.24",
"nunomaduro/collision": "^v6.4",
"spatie/laravel-ignition": "^1.7"
},
"config": {
"optimize-autoloader": true,
Expand Down Expand Up @@ -60,6 +60,9 @@
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.testing', '.env');\""
],
Expand Down
2 changes: 1 addition & 1 deletion config/filesystems.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

// Default Filesystem Disk

'default' => env('FILESYSTEM_DRIVER', 'local'),
'default' => env('FILESYSTEM_DISK', 'local'),

// Filesystem Disks

Expand Down

0 comments on commit 9ad945b

Please sign in to comment.