Skip to content

Commit 8109840

Browse files
committed
upgrading packages
1 parent 965b7ea commit 8109840

File tree

3 files changed

+169
-108
lines changed

3 files changed

+169
-108
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ on: [push, pull_request]
55
jobs:
66
php-cs-fixer:
77
runs-on: ubuntu-latest
8-
8+
strategy:
9+
matrix:
10+
operating-system: [ubuntu-latest]
11+
php-versions: [ '8.2','8.1' ]
12+
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
913
steps:
1014
# This is required as this package does not support PHP 8 (yet)
11-
- name: Setup PHP 8.1
15+
- name: Setup PHP
1216
uses: shivammathur/setup-php@v2
1317
with:
14-
php-version: '8.1'
18+
php-version: ${{ matrix.php-versions }}
1519

1620
- name: Checkout Code
1721
uses: actions/checkout@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"ibis"
2020
],
2121
"require": {
22-
"illuminate/filesystem": "^7.0|^8.0",
22+
"illuminate/filesystem": "^7.0|^8.0|^9.0",
2323
"illuminate/support": "^7.0|^8.0|^9.0",
2424
"mpdf/mpdf": "^8.1",
2525
"spatie/commonmark-highlighter": "^2.1|^3.0",

0 commit comments

Comments
 (0)