Skip to content

Commit

Permalink
[1.x] Update composer and workflow for Laravel 10 (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpslwk authored Mar 20, 2023
1 parent 6554ac0 commit 4e407bc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,35 @@ on:
jobs:
tests:

runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1]
laravel: [6.0, 7.0, 8.0, 9.0]
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
exclude:
- php: 7.3
laravel: 9
laravel: 9.0
- php: 7.4
laravel: 9
laravel: 9.0
- php: 7.3
laravel: 10.0
- php: 7.4
laravel: 10.0
- php: 8.0
laravel: 10.0
- php: 8.2
laravel: 6.0
- php: 8.2
laravel: 7.0
- php: 8.2
laravel: 8.0

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

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"require": {

"php": "^7.3|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"joelbutcher/facebook-graph-sdk": "^6.0.0",
"symfony/http-client": "^5.3|^6.0"
},
Expand Down

0 comments on commit 4e407bc

Please sign in to comment.