-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
71 lines (71 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "oixan/cashier-connect",
"description": "Laravel Cashier Connect add support for Stripe Connect to Laravel Cashier.",
"keywords": [
"laravel",
"stripe",
"billing"
],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/cashier/issues",
"source": "https://github.com/laravel/cashier"
},
"authors": [
{
"name": "Sciuto Benedetto",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3|^8.0",
"ext-json": "*",
"dompdf/dompdf": "^1.0.2",
"illuminate/contracts": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/database": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/http": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/log": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/notifications": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/routing": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/support": "~5.8.0|^6.0|^7.0|^8.0",
"illuminate/view": "~5.8.0|^6.0|^7.0|^8.0",
"moneyphp/money": "^3.2",
"nesbot/carbon": "^2.0",
"stripe/stripe-php": "^7.0",
"symfony/http-kernel": "^4.3|^5.0",
"symfony/intl": "^4.3|^5.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^3.8|^4.0|^5.0",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
"Laravel\\CashierConnect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\CashierConnect\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "10.x-dev"
},
"laravel": {
"providers": [
"Laravel\\CashierConnect\\CashierServiceProvider"
]
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}