Skip to content

Commit

Permalink
support laravel ^10
Browse files Browse the repository at this point in the history
  • Loading branch information
mattvb91 committed Aug 25, 2023
1 parent 32d2539 commit 1960c14
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ["8.0", "8.1"]
laravel: ["^8.0", "^9.0"]
php: ["8.1", "8.2"]
laravel: ["^9.0", "^10.0"]
stability: ["prefer-lowest", "prefer-stable"]

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
Expand Down
2 changes: 1 addition & 1 deletion .php-cs-fixer.laravel.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
'short_scalar_cast' => true,
'simplified_null_return' => true,
'single_blank_line_at_eof' => true,
'single_blank_line_before_namespace' => true,
'blank_lines_before_namespace' => true,
'single_class_element_per_statement' => true,
'single_import_per_statement' => true,
'single_line_after_imports' => true,
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
}
],
"require": {
"php": "^8.0",
"illuminate/collections": "^8.0 || ^9.0",
"illuminate/container": "^8.0 || ^9.0",
"illuminate/contracts": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"illuminate/translation": "^8.0 || ^9.0",
"php": "^8.1",
"illuminate/collections": "^9.0 || ^10.0",
"illuminate/container": "^9.0 || ^10.0",
"illuminate/contracts": "^9.0 || ^10.0",
"illuminate/support": "^9.0 || ^10.0",
"illuminate/translation": "^9.0 || ^10.0",
"spatie/dns": "^2.0.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^6.25 || ^7.0",
"orchestra/testbench": "^7.0 || ^8.0",
"pestphp/pest": "^1.22",
"pestphp/pest-plugin-laravel": "^1.3"
},
Expand Down

0 comments on commit 1960c14

Please sign in to comment.