Skip to content

Commit a553b0d

Browse files
ADD Laravel 11 compatibility (#6)
1 parent a85175a commit a553b0d

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,13 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
1616
php: [8.3, 8.2]
17-
laravel: [10.*]
17+
laravel: [11.*, 10.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
2020
- laravel: 10.*
2121
testbench: 8.*
22-
carbon: ^2.63
22+
- laravel: 11.*
23+
testbench: 9.*
2324

2425
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2526

@@ -41,7 +42,7 @@ jobs:
4142
4243
- name: Install dependencies
4344
run: |
44-
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
4546
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
4647
4748
- name: List Installed Dependencies

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023 MAIZE SRL <[email protected]>
3+
Copyright (c) 2024 MAIZE SRL <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"require": {
1919
"php": "^8.2",
2020
"spatie/laravel-package-tools": "^1.14.1",
21-
"illuminate/console": "^10.0",
22-
"illuminate/database": "^10.0",
23-
"illuminate/support": "^10.0"
21+
"illuminate/console": "^10.0|^11.0",
22+
"illuminate/database": "^10.0|^11.0",
23+
"illuminate/support": "^10.0|^11.0"
2424
},
2525
"require-dev": {
2626
"laravel/pint": "^1.0",
27-
"nunomaduro/collision": "^7.8",
27+
"nunomaduro/collision": "^7.8|^8.1",
2828
"nunomaduro/larastan": "^2.0.1",
29-
"orchestra/testbench": "^8.0",
29+
"orchestra/testbench": "^8.0|^9.0",
3030
"pestphp/pest": "^2.20",
3131
"pestphp/pest-plugin-arch": "^2.0",
3232
"pestphp/pest-plugin-laravel": "^2.0",

0 commit comments

Comments
 (0)