forked from laravelcm/laravel-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
84 lines (84 loc) · 2.34 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
78
79
80
81
82
83
84
{
"name": "aercode/laravel-subscription",
"description": "Laravel Subscriptions is a flexible plans and subscription management system for Laravel, with the required tools to run your SAAS like services efficiently. It's simple architecture, accompanied by powerful underlying to afford solid platform for your business.",
"type": "library",
"keywords": [
"plan",
"value",
"laravel",
"feature",
"database",
"recurring",
"subscription"
],
"license": "MIT",
"homepage": "https://aercode.com",
"support": {
"email": "info@aercode.com",
"issues": "https://github.com/barkoczi/laravel-subscriptions/issues",
"source": "https://github.com/barkoczi/laravel-subscriptions",
"docs": "https://github.com/barkoczi/laravel-subscriptions/blob/main/README.md"
},
"authors": [
{
"name": "Roland Barkoczi",
"homepage": "https://aercode.com",
"email": "info@aercode.com"
},
{
"name": "The Generous Laravel Community",
"homepage": "https://github.com/barkoczi/laravel-subscriptions/contributors"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"spatie/eloquent-sortable": "^4.0.0",
"spatie/laravel-package-tools": "^1.16",
"spatie/laravel-sluggable": "^3.4.2",
"spatie/laravel-translatable": "^6.5.0"
},
"require-dev": {
"larastan/larastan": "^2.0",
"laravel/pint": "^1.13",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.18",
"spatie/test-time": "^1.3"
},
"autoload": {
"psr-4": {
"Aercode\\Subscriptions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/src",
"Tests\\Database\\Factories\\": "tests/database/factories"
}
},
"scripts": {
"test": "./vendor/bin/pest",
"lint": "./vendor/bin/pint",
"types": "./vendor/bin/phpstan analyse --memory-limit=2g"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": false
}
},
"extra": {
"laravel": {
"providers": [
"Aercode\\Subscriptions\\SubscriptionServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}