-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 2.37 KB
/
composer.json
File metadata and controls
82 lines (82 loc) · 2.37 KB
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
{
"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": "taylor@laravel.com"
},
{
"name": "Dries Vints",
"email": "dries@laravel.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-openssl": "*",
"guzzlehttp/guzzle": "^7.4.5",
"illuminate/contracts": "^10.0|^11.0|^12.0|^13.0",
"illuminate/database": "^10.0|^11.0|^12.0|^13.0",
"illuminate/http": "^10.0|^11.0|^12.0|^13.0",
"illuminate/routing": "^10.0|^11.0|^12.0|^13.0",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"illuminate/view": "^10.0|^11.0|^12.0|^13.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": {
"orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
"phpstan/phpstan": "^1.10"
},
"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": {
"audit": {
"block-insecure": false
},
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}