-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "devdojo/billing",
"description": "The billing package to make subscriptions and checkout in your Laravel applications easy to use.",
"keywords": [
"devdojo",
"billing",
"subscriptions",
"checkout",
"stripe",
"paddle"
],
"homepage": "https://github.com/devdojo/billing",
"license": "MIT",
"type": "library",
"version": "0.0.1",
"authors": [
{
"name": "Tony Lea",
"email": "tony@devdojo.com",
"role": "Developer"
}
],
"require": {
"php": "^8.2|^8.3|^8.4",
"illuminate/support": "^10.0|^11.0|^12.0|^13.0",
"illuminate/database": "^10.0|^11.0|^12.0|^13.0",
"laravel/folio": "^1.0",
"livewire/livewire": "^3.0|^4.0",
"livewire/volt": "^1.6.7",
"codeat3/blade-phosphor-icons": "^2.0",
"devdojo/config-writer": "^0.0.7",
"guzzlehttp/guzzle": "^7.5",
"spatie/laravel-permission": "^6.0|^7.0|^8.0",
"stripe/stripe-php": "^16.0|^17.0"
},
"require-dev": {
"laravel/pint": "^1.15",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^3.7",
"pestphp/pest-plugin-laravel": "^3.1"
},
"suggest": {
"filament/filament": "Required to use the bundled Plan admin resource (BillingPlugin)."
},
"autoload": {
"psr-4": {
"Devdojo\\Billing\\": "src",
"Devdojo\\Billing\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Devdojo\\Billing\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Devdojo\\Billing\\BillingServiceProvider"
]
}
}
}