Skip to content

Commit d237909

Browse files
authored
Feature laravel 9 (#22)
* Support Laravel 9 * Build and test using PHP 8.1
1 parent 7dfaac0 commit d237909

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
php-version: ['7.4', '8.0']
18+
php-version: ['7.4', '8.0', '8.1']
1919

2020
steps:
2121
- uses: actions/checkout@v2
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Run SonarQube analysis
5757
uses: sonarsource/sonarcloud-github-action@master
58-
if: matrix.php-version == '8.0'
58+
if: matrix.php-version == '8.1'
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161
SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
],
2121
"require": {
2222
"php": "^7.4|^8.0",
23-
"illuminate/config": "~7.0|~8.0",
24-
"illuminate/support": "~7.0|~8.0",
23+
"illuminate/config": "~7.0|~8.0|~9.0",
24+
"illuminate/support": "~7.0|~8.0|~9.0",
2525
"php-mqtt/client": "^1.0"
2626
},
2727
"require-dev": {

0 commit comments

Comments
 (0)