-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
70 lines (70 loc) · 1.89 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
{
"name": "lemonsqueezy/laravel",
"description": "A package to easily integrate your Laravel application with Lemon Squeezy.",
"keywords": ["laravel", "lemon squeezy", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/lmsqueezy/laravel/issues",
"source": "https://github.com/lmsqueezy/laravel"
},
"authors": [
{
"name": "Dries Vints",
"homepage": "https://driesvints.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/driesvints"
},
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/driesvints"
}
],
"require": {
"php": "~8.1.0|~8.2.0|~8.3.0|~8.4.0",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^10.0|^11.0",
"laravel/prompts": "^0.1|^0.2|^0.3",
"moneyphp/money": "^4.0",
"nesbot/carbon": "^2.0|^3.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.0|^3.0"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"autoload": {
"psr-4": {
"LemonSqueezy\\Laravel\\": "src/",
"LemonSqueezy\\Laravel\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"laravel": {
"providers": [
"LemonSqueezy\\Laravel\\LemonSqueezyServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}