Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre committed Nov 24, 2017
0 parents commit 9fb0a02
Show file tree
Hide file tree
Showing 9 changed files with 2,394 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/vendor
/.idea
37 changes: 37 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"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]"
}
]
}
Loading

0 comments on commit 9fb0a02

Please sign in to comment.