Skip to content

Commit

Permalink
Laravel 11.x Compatibility (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift authored Feb 28, 2024
1 parent cf6f193 commit 0230cca
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 8 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ on:

jobs:
tests:

runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [7.3, 7.4, 8.0, 8.1, 8.2]
laravel: [6.0, 7.0, 8.0, 9.0, 10.0]
laravel: [6.0, 7.0, 8.0, 9.0, 10.0, '11.0']
exclude:
- php: 7.3
laravel: 9.0
Expand All @@ -32,6 +32,14 @@ jobs:
laravel: 7.0
- php: 8.2
laravel: 8.0
- laravel: '11.0'
php: 7.3
- laravel: '11.0'
php: 7.4
- laravel: '11.0'
php: 8.0
- laravel: '11.0'
php: 8.1

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

Expand Down
18 changes: 12 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"name": "joelbutcher/laravel-facebook-graph",
"description": "Laravel wrapper for the Facebook Graph SDK for PHP 7.4 and PHP 8.",
"keywords": ["laravel", "php", "php8", "facebook", "facebook-graph", "graph-sdk"],
"keywords": [
"laravel",
"php",
"php8",
"facebook",
"facebook-graph",
"graph-sdk"
],
"license": "MIT",
"support": {
"issues": "https://github.com/joelbutcher/laravel-facebook-graph/issues",
Expand All @@ -14,17 +21,16 @@
}
],
"require": {

"php": "^7.3|^8.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"joelbutcher/facebook-graph-sdk": "^6.0.0",
"symfony/http-client": "^5.3|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"orchestra/testbench": "^6.0|^7.0",
"pestphp/pest": "^1.21",
"phpunit/phpunit": "^9.4"
"orchestra/testbench": "^6.0|^7.0|^9.0",
"pestphp/pest": "^1.21|^2.34",
"phpunit/phpunit": "^9.4|^10.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 0230cca

Please sign in to comment.