forked from laravel/cashier-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.51 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
52
53
54
55
56
57
{
"name": "crawlmedia/cashier-multiplan",
"version": "1.1.0",
"description": "Laravel Cashier Multiplan",
"keywords": ["laravel", "stripe", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/crawlmedia/cashier-stripe-multiplan/issues",
"source": "https://github.com/crawlmedia/cashier-stripe-multiplan"
},
"authors": [
{
"name": "Jurihub",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"dompdf/dompdf": "^0.8.0",
"illuminate/database": "~5.3",
"illuminate/support": "~5.3",
"nesbot/carbon": "~1.0",
"stripe/stripe-php": "~5.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0"
},
"require-dev": {
"brianium/paratest": "^0.15",
"illuminate/http": "~5.3",
"illuminate/routing": "~5.3",
"illuminate/view": "~5.3",
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~5.0",
"vlucas/phpdotenv": "~2.0"
},
"autoload": {
"psr-4": {
"Jurihub\\CashierMultiplan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jurihub\\CashierMultiplan\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Jurihub\\CashierMultiplan\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": false
}