Skip to content

Commit 348b4ec

Browse files
wip
1 parent e77e397 commit 348b4ec

File tree

2 files changed

+11
-30
lines changed

2 files changed

+11
-30
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,14 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.4, 8.3, 8.2, 8.1, 8.0]
17-
laravel: [12.*, 11.*, 10.*, 9.*]
16+
php: [8.4, 8.3, 8.2]
17+
laravel: [12.*, 11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 12.*
2121
testbench: 10.*
22-
carbon: ^3.0
2322
- laravel: 11.*
2423
testbench: 9.*
25-
carbon: ^3.0
26-
- laravel: 10.*
27-
testbench: 8.*
28-
carbon: ^2.63
29-
- laravel: 9.*
30-
testbench: 7.*
31-
carbon: ^2.63
32-
exclude:
33-
- laravel: 10.*
34-
php: 8.0
35-
- laravel: 11.*
36-
php: 8.1
37-
- laravel: 11.*
38-
php: 8.0
39-
- laravel: 12.*
40-
php: 8.1
41-
- laravel: 12.*
42-
php: 8.0
4324

4425
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4526

@@ -61,7 +42,7 @@ jobs:
6142
6243
- name: Install dependencies
6344
run: |
64-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
45+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
6546
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
6647
6748
- name: Execute tests

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^8.0",
26+
"php": "^8.2",
2727
"ext-openssl": "*",
28-
"illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
29-
"illuminate/database": "^9.0|^10.0|^11.0|^12.0",
30-
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
31-
"illuminate/validation": "^9.0|^10.0|^11.0|^12.0",
28+
"illuminate/contracts": "^11.0|^12.0",
29+
"illuminate/database": "^11.0|^12.0",
30+
"illuminate/support": "^11.0|^12.0",
31+
"illuminate/validation": "^11.0|^12.0",
3232
"spatie/laravel-package-tools": "^1.14.1"
3333
},
3434
"require-dev": {
3535
"friendsofphp/php-cs-fixer": "^3.4",
36-
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
37-
"phpunit/phpunit": "^9.5|^10.5|^11.0",
38-
"vimeo/psalm": "^4.20|^5.22|^6.0"
36+
"orchestra/testbench": "^9.0|^10.0",
37+
"phpunit/phpunit": "^10.5|^11.0|^12.0",
38+
"vimeo/psalm": "^5.22|^6.0"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)