-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
65 lines (65 loc) · 1.67 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
{
"name": "asciisd/cashier-tap",
"description": "Asciisd Cashier provides an expressive, fluent interface to Tap's subscription billing services.",
"keywords": [
"Laravel",
"Cashier",
"Tap",
"Cashier Tap"
],
"license": "MIT",
"support": {
"issues": "https://github.com/asciisd/cashier-tap/issues",
"source": "https://github.com/asciisd/cashier-tap"
},
"authors": [
{
"name": "Amr Ahmed",
"email": "[email protected]"
}
],
"homepage": "https://github.com/asciisd/cashier-tap",
"require": {
"php": "^8.3",
"dompdf/dompdf": "^2.0",
"moneyphp/money": "^4.0",
"asciisd/tap-php": "^2.0",
"ext-intl": "*"
},
"require-dev": {
"ext-json": "*",
"laravel/framework": "^10.0|^11.0",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.18|^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.4"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"autoload": {
"psr-4": {
"Asciisd\\Cashier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Asciisd\\Cashier\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Asciisd\\Cashier\\Providers\\CashierServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}