-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (84 loc) · 2.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "veeqtoh/cashier-paystack",
"description": "A complete re-write of the abandoned webong-cashier which provides an expressive, fluent interface to Paystack's subscription billing services.",
"type": "library",
"homepage": "https://github.com/veeqtoh/cashier-paystack",
"license": "MIT",
"support": {
"issues": "https://github.com/veeqtoh/cashier-paystack/issues",
"source": "https://github.com/veeqtoh/cashier-paystack"
},
"authors": [
{
"name": "Victor Ukam",
"email": "[email protected]"
}
],
"keywords": [
"veeqtoh",
"victor-ukam",
"paystack",
"cashier",
"payment",
"billing",
"nigeria",
"africa",
"naira",
"laravel",
"laravel-package"
],
"require": {
"php": "^8.1",
"ext-json": "*",
"nesbot/carbon": "^2.0|^3.0",
"illuminate/view": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"moneyphp/money": "^4.0",
"unicodeveloper/laravel-paystack": "^1.0",
"symfony/http-kernel": "^6.0|^7.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
"require-dev": {
"dompdf/dompdf": "^2.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.0|9.0",
"larastan/larastan": "^2.0",
"pestphp/pest-plugin-laravel": "^2.3"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values.",
"dompdf/dompdf": "Required when generating and downloading invoice PDF's using Dompdf (^1.0.1|^2.0)."
},
"autoload": {
"psr-4": {
"Veeqtoh\\Cashier\\": "src/",
"Veeqtoh\\Cashier\\Database\\Factories\\": "database/factories/",
"Veeqtoh\\Cashier\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Veeqtoh\\Cashier\\Providers\\CashierServiceProvider"
],
"aliases": {
"Cashier": "Veeqtoh\\Cashier\\Facades\\Cashier"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable": true
}