Skip to content

Commit

Permalink
Update to Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Hamp committed Mar 11, 2022
1 parent 5d6c270 commit 0d9cf2d
Show file tree
Hide file tree
Showing 2 changed files with 2,190 additions and 564 deletions.
80 changes: 44 additions & 36 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,46 @@
{
"name": "rap2hpoutre/laravel-stripe-connect",
"type": "library",
"keywords": ["laravel", "stripe", "billing"],
"require": {
"illuminate/database": "^5.5",
"illuminate/support": "^5.5",
"stripe/stripe-php": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"Rap2hpoutre\\LaravelStripeConnect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rap2hpoutre\\LaravelStripeConnect\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Rap2hpoutre\\LaravelStripeConnect\\ServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "rap2h",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
"name": "simonhamp/laravel-stripe-connect",
"type": "library",
"keywords": [
"laravel",
"stripe",
"billing"
],
"require": {
"illuminate/database": "^9.0",
"illuminate/support": "^9.0",
"stripe/stripe-php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"SimonHamp\\LaravelStripeConnect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimonHamp\\LaravelStripeConnect\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SimonHamp\\LaravelStripeConnect\\ServiceProvider"
]
}
},
"license": "MIT",
"authors": [
{
"name": "rap2h",
"email": "[email protected]"
},
{
"name": "Simon Hamp",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}
Loading

0 comments on commit 0d9cf2d

Please sign in to comment.