-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
78 lines (78 loc) · 1.7 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
{
"name": "mollie/laravel-cashier-mollie",
"description": "Laravel Cashier provides an expressive, fluent interface to Mollie's subscription billing services.",
"keywords": [
"mollie",
"laravel",
"subscriptions",
"recurring",
"billing",
"SEPA",
"Apple Pay",
"credit card",
"debit card",
"Europe"
],
"homepage": "https://github.com/mollie/laravel-cashier-mollie",
"license": "MIT",
"authors": [
{
"name": "Mollie.com",
"email": "[email protected]",
"homepage": "https://www.mollie.com",
"role": "Owner"
},
{
"name": "Sander van Hooft",
"email": "[email protected]",
"homepage": "https://www.sandorian.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-intl": "*",
"dompdf/dompdf": "^2.0",
"illuminate/database": "^10|^11",
"illuminate/support": "^10|^11",
"mollie/laravel-mollie": "^3.0",
"mollie/mollie-api-php": "^2.65",
"moneyphp/money": "^4.1",
"nesbot/carbon": "^2.72|^3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"files": [
"src/Helpers/helpers.php"
],
"psr-4": {
"Laravel\\Cashier\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laravel\\Cashier\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Laravel\\Cashier\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit tests"
}
}