Skip to content

Commit 4e407bc

Browse files
authored
[1.x] Update composer and workflow for Laravel 10 (#17)
1 parent 6554ac0 commit 4e407bc

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

.github/workflows/tests.yml

+18-6
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,35 @@ on:
99
jobs:
1010
tests:
1111

12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-20.04
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.3, 7.4, 8.0, 8.1]
17-
laravel: [6.0, 7.0, 8.0, 9.0]
16+
php: [7.3, 7.4, 8.0, 8.1, 8.2]
17+
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
1818
exclude:
1919
- php: 7.3
20-
laravel: 9
20+
laravel: 9.0
2121
- php: 7.4
22-
laravel: 9
22+
laravel: 9.0
23+
- php: 7.3
24+
laravel: 10.0
25+
- php: 7.4
26+
laravel: 10.0
27+
- php: 8.0
28+
laravel: 10.0
29+
- php: 8.2
30+
laravel: 6.0
31+
- php: 8.2
32+
laravel: 7.0
33+
- php: 8.2
34+
laravel: 8.0
2335

2436
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2537

2638
steps:
2739
- name: Checkout code
28-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
2941

3042
- name: Setup PHP
3143
uses: shivammathur/setup-php@v2

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"require": {
1717

1818
"php": "^7.3|^8.0",
19-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
19+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
2020
"joelbutcher/facebook-graph-sdk": "^6.0.0",
2121
"symfony/http-client": "^5.3|^6.0"
2222
},

0 commit comments

Comments
 (0)