-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #248 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
- Loading branch information
Showing
2 changed files
with
92 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |