-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
66 lines (66 loc) · 1.78 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
{
"name": "lunarphp/addons",
"description": "Monorepo for Lunar addons",
"type": "library",
"require": {
"laravel/pint": "dev-main",
"livewire/livewire": "^2.0",
"lunarphp/lunar": "^0.8",
"php": "^8.0",
"stripe/stripe-php": "^7.114",
"symplify/monorepo-builder": "^11.1"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.5"
},
"license": "MIT",
"authors": [
{
"name": "LunarPHP",
"email": "[email protected]"
},
{
"name": "Lunar",
"homepage": "https://lunarphp.io/"
}
],
"autoload": {
"psr-4": {
"Lunar\\Opayo\\": "payment/opayo/src/",
"Lunar\\Paypal\\": "payment/paypal/src/",
"Lunar\\Stripe\\": "payment/stripe/src/"
}
},
"autoload-dev": {
"psr-4": {
"Lunar\\Opayo\\Tests\\": "payment/opayo/tests/",
"Lunar\\Paypal\\Tests\\": "payment/paypal/tests/",
"Lunar\\Stripe\\Tests\\": "payment/stripe/tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Lunar\\Opayo\\OpayoServiceProvider",
"Lunar\\Paypal\\PaypalServiceProvider",
"Lunar\\Stripe\\StripePaymentsServiceProvider"
]
},
"lunar": {
"name": [
"Opayo Payments",
"Paypal Payments",
"Stripe Payments"
]
}
},
"replace": {
"lunarphp/opayo": "self.version",
"lunarphp/paypal": "self.version",
"lunarphp/stripe": "self.version"
},
"minimum-stability": "dev",
"prefer-stable": true
}