-
Notifications
You must be signed in to change notification settings - Fork 57
/
composer.json
77 lines (77 loc) · 2.26 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
{
"name": "laravel/cashier-paddle",
"description": "Cashier Paddle provides an expressive, fluent interface to Paddle's subscription billing services.",
"keywords": ["laravel", "paddle", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/cashier-paddle/issues",
"source": "https://github.com/laravel/cashier-paddle"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "[email protected]"
},
{
"name": "Dries Vints",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"illuminate/view": "^10.0|^11.0",
"moneyphp/money": "^3.2|^4.0",
"nesbot/carbon": "^2.67|^3.0",
"spatie/url": "^1.3.5|^2.0",
"symfony/http-kernel": "^6.2|^7.0",
"symfony/polyfill-intl-icu": "^1.22.1"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"orchestra/testbench": "^8.14|^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": {
"Laravel\\Paddle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Paddle\\CashierServiceProvider"
]
}
},
"scripts": {
"post-autoload-dump": "@prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}