This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
58 lines (58 loc) · 1.59 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
{
"name": "driesvints/laravel-lemon-squeezy",
"description": "A package to easily integrate your Laravel application with Lemon Squeezy's billing services. ",
"keywords": ["laravel", "lemon squeezy", "billing"],
"license": "MIT",
"support": {
"issues": "https://github.com/driesvints/laravel-lemon-squeezy/issues",
"source": "https://github.com/driesvints/laravel-lemon-squeezy"
},
"authors": [
{
"name": "Dries Vints",
"homepage": "https://driesvints.com"
}
],
"require": {
"php": "~8.1.0|~8.2.0",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^9.0|^10.0",
"moneyphp/money": "^4.0",
"nesbot/carbon": "^2.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0",
"pestphp/pest": "^1.0"
},
"suggest": {
"ext-intl": "Allows for more locales besides the default \"en\" when formatting money values."
},
"autoload": {
"psr-4": {
"LaravelLemonSqueezy\\": "src/",
"LaravelLemonSqueezy\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"laravel": {
"providers": [
"LaravelLemonSqueezy\\LemonSqueezyServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"prefer-stable": true
}