This repository has been archived by the owner on Jul 6, 2020. It is now read-only.
forked from laravel/cashier-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.52 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
58
{
"name": "laravel/cashier",
"description": "Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.",
"keywords": ["laravel", "stripe", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/cashier/issues",
"source": "https://github.com/laravel/cashier"
},
"authors": [
{
"name": "Taylor Otwell",
"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": {
"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": {
"Laravel\\Cashier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Cashier\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "8.0-dev"
},
"laravel": {
"providers": [
"Laravel\\Cashier\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}