Skip to content

Commit e8b4bf4

Browse files
Merge pull request #94 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 6b53988 + 6a41950 commit e8b4bf4

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,19 @@ jobs:
99
strategy:
1010
matrix:
1111
operating-system: [ubuntu-latest, windows-latest, macos-latest]
12-
php-versions: ['7.4','8.0','8.1']
12+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
13+
1314
runs-on: ${{ matrix.operating-system }}
15+
1416
steps:
1517
- name: Checkout
1618
uses: actions/checkout@v2
1719

1820
- name: Setup PHP, with composer and extensions
19-
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
21+
uses: shivammathur/setup-php@v2
2022
with:
2123
php-version: ${{ matrix.php-versions }}
22-
coverage: none #optional
24+
coverage: none
2325
extensions: curl, libxml, mbstring, zip
2426

2527
- name: Get composer cache directory
@@ -30,8 +32,6 @@ jobs:
3032
uses: actions/cache@v2
3133
with:
3234
path: ${{ steps.composercache.outputs.dir }}
33-
# Use composer.json for key, if composer.lock is not committed.
34-
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
3535
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
3636
restore-keys: ${{ runner.os }}-composer-
3737

@@ -40,4 +40,3 @@ jobs:
4040

4141
- name: Test with phpunit
4242
run: vendor/bin/phpunit --coverage-text
43-

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
],
2727
"require": {
2828
"php": "^7.4|^8.0|^8.1|^8.2",
29-
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
29+
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
3030
"littleredbutton/bigbluebutton-api-php": "~5.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "^4.0|^7.0|^8.0",
34-
"phpunit/phpunit": "^8.0|^9.0|^10.0"
33+
"orchestra/testbench": "^4.0|^7.0|^8.0|^10.0",
34+
"phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)