Skip to content

Commit

Permalink
Merge pull request #248 from laravel-shift/l12-compatibility
Browse files Browse the repository at this point in the history
Laravel 12.x Compatibility
  • Loading branch information
Naoray authored Feb 19, 2025
2 parents 9d83617 + 9e2255a commit 24ae2b4
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 90 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
- cron: '0 0 * * *'

jobs:
tests:
Expand All @@ -13,13 +13,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ["8.1", "8.2", "8.3"]
laravel: ["10.0", "11.0"]
php: ['8.1', '8.2', '8.3']
laravel: ['10.0', '11.0', '12.0']
exclude:
- laravel: "11.0"
php: "8.0"
- laravel: "11.0"
php: "8.1"
- laravel: '11.0'
php: '8.0'
- laravel: '11.0'
php: '8.1'
- laravel: '12.0'
php: '8.1'

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
166 changes: 83 additions & 83 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,85 @@
{
"name": "mollie/laravel-mollie",
"description": "Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite",
"homepage": "https://github.com/mollie/laravel-mollie",
"license": "MIT",
"authors": [
{
"name": "Mollie B.V.",
"email": "[email protected]"
}
],
"keywords": [
"mollie",
"payment",
"service",
"ideal",
"creditcard",
"apple pay",
"mistercash",
"bancontact",
"sofort",
"sofortbanking",
"sepa",
"paypal",
"paysafecard",
"podiumcadeaukaart",
"banktransfer",
"direct debit",
"belfius",
"belfius direct net",
"przelewy24",
"refunds",
"api",
"payments",
"gateway",
"subscriptions",
"recurring",
"charges",
"laravel",
"lumen",
"socialite"
],
"require": {
"php": "^8.1|^8.2",
"mollie/mollie-api-php": "^2.60",
"illuminate/support": "^10.0|^11.0",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0",
"laravel/socialite": "^5.5",
"laravel/pint": "^1.1"
},
"suggest": {
"laravel/socialite": "Use Mollie Connect (OAuth) to authenticate via Laravel Socialite with the Mollie API. This is needed for some endpoints."
},
"autoload": {
"psr-4": {
"Mollie\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mollie\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mollie\\Laravel\\MollieServiceProvider"
],
"aliases": {
"Mollie": "Mollie\\Laravel\\Facades\\Mollie"
}
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"format": "./vendor/bin/pint"
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "mollie/laravel-mollie",
"description": "Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite",
"homepage": "https://github.com/mollie/laravel-mollie",
"license": "MIT",
"authors": [
{
"name": "Mollie B.V.",
"email": "[email protected]"
}
],
"keywords": [
"mollie",
"payment",
"service",
"ideal",
"creditcard",
"apple pay",
"mistercash",
"bancontact",
"sofort",
"sofortbanking",
"sepa",
"paypal",
"paysafecard",
"podiumcadeaukaart",
"banktransfer",
"direct debit",
"belfius",
"belfius direct net",
"przelewy24",
"refunds",
"api",
"payments",
"gateway",
"subscriptions",
"recurring",
"charges",
"laravel",
"lumen",
"socialite"
],
"require": {
"php": "^8.1|^8.2",
"mollie/mollie-api-php": "^2.60",
"illuminate/support": "^10.0|^11.0|^12.0",
"ext-json": "*"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.5.3",
"laravel/socialite": "^5.5",
"laravel/pint": "^1.1"
},
"suggest": {
"laravel/socialite": "Use Mollie Connect (OAuth) to authenticate via Laravel Socialite with the Mollie API. This is needed for some endpoints."
},
"autoload": {
"psr-4": {
"Mollie\\Laravel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mollie\\Laravel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Mollie\\Laravel\\MollieServiceProvider"
],
"aliases": {
"Mollie": "Mollie\\Laravel\\Facades\\Mollie"
}
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"format": "./vendor/bin/pint"
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 24ae2b4

Please sign in to comment.