-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
{
"name": "tomatophp/filament-payments",
"type": "library",
"description": "Manage your payments inside FilamentPHP app with multi payment gateway integration",
"keywords": [
"php",
"laravel",
"payments",
"payment-gate",
"cacher",
"stripe",
"paypal",
"plisio",
"filament",
"tomatophp"
],
"license": "MIT",
"autoload": {
"psr-4": {
"TomatoPHP\\FilamentPayments\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"TomatoPHP\\FilamentPayments\\FilamentPaymentsServiceProvider"
]
}
},
"authors": [
{
"name": "Fady Mondy",
"email": "info@3x1.io"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"tomatophp/console-helpers": "^1.0",
"stripe/stripe-php": "^15.4",
"paypal/paypal-checkout-sdk": "^1.0",
"plisio/plisio-sdk-laravel": "^1.0",
"filament/spatie-laravel-media-library-plugin": "^3.0",
"myfatoorah/library": "^2.2",
"cryptomus/api-php-sdk": "^1.0",
"tomatophp/filament-translation-component": "^1.0"
}
}