-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
51 lines (51 loc) · 1.4 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "coderity/wallet",
"description": "Coderity Wallet extends Laravel Cashier allowing users to have multiple credit cards with multiple subscriptions, along with the ability to charge different cards as needed.",
"keywords": ["laravel", "stripe", "billing", "cashier", "wallet"],
"license": "MIT",
"support": {
"issues": "https://github.com/coderity/wallet/issues",
"source": "https://github.com/coderity/wallet"
},
"authors": [
{
"name": "Michael Houghton",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"cartalyst/stripe-laravel": "7.0.*",
"laravel/cashier": "~7.0"
},
"require-dev": {
"fzaninotto/faker": "^1.7",
"illuminate/http": "~5.5",
"illuminate/routing": "~5.5",
"illuminate/view": "~5.5",
"phpunit/phpunit": "~5.0",
"vlucas/phpdotenv": "~2.0"
},
"autoload": {
"psr-4": {
"Coderity\\Wallet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Coderity\\Wallet\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Coderity\\Wallet\\WalletServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}