forked from lunarphp/stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.08 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
{
"name": "getcandy/stripe",
"type": "project",
"description": "Stripe payment driver for GetCandy.",
"keywords": ["getcandy", "laravel", "ecommerce", "e-commerce", "headless", "store", "shop", "cart", "stripe"],
"license": "MIT",
"authors": [
{
"name": "GetCandy",
"homepage": "https://getcandy.io/"
}
],
"require": {
"php": "^8.0",
"getcandy/core": "^2.0-beta12",
"stripe/stripe-php": "^7.114",
"livewire/livewire": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"GetCandy\\Stripe\\": "src/"
}
},
"autoload-dev": {
"getcandy": {
"name": "Stripe Payments"
},
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"getcandy": {
"name": "Stripe Payments"
},
"laravel": {
"providers": [
"GetCandy\\Stripe\\StripePaymentsServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}