Skip to content

Commit 6ddaf9e

Browse files
committed
🔧 update support to php 8.1 and laravel 9
1 parent bb654dd commit 6ddaf9e

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php: [7.3, 7.4, 8.0]
11-
symfony_process: [3.4, 4.0, 5.0]
10+
php: [7.3, 7.4, "8.0", 8.1]
11+
symfony_process: [3.4, 4.0, 5.0, 6.0]
12+
exclude:
13+
- php: 7.3
14+
symfony_process: 6
15+
- php: 7.4
16+
symfony_process: 6
1217

1318
steps:
1419
- uses: actions/checkout@v2

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.3|^8.0",
14-
"symfony/process": "~3.4 || ~4.0 || ~5.0",
13+
"php": "^7.3|^8.0|^8.1",
14+
"symfony/process": "~3.4 || ~4.0 || ~5.0 || ~6.0",
1515
"guzzlehttp/guzzle": "^6.3 || ^7.0"
1616
},
1717
"autoload": {

0 commit comments

Comments
 (0)