forked from creatydev/plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.52 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": "creatydev/plans",
"description": "Laravel Plans is a package for SaaS apps that need management over plans, features, subscriptions, events for plans or limited, countable features.",
"keywords": [
"eloquent",
"laravel",
"subscription",
"plan",
"plans",
"model",
"saas"
],
"homepage": "https://github.com/creatydev/plans",
"license": "MIT",
"authors": [
{
"name": "Dukens Thelemaque",
"email": "[email protected]",
"homepage": "https://thelemaque-dukens.com",
"role": "Developer"
}
],
"require": {
"laravel/framework": "~5.8.0|~6.0|~6.2.0|^8.22.2|^9.19|^10.0",
"stripe/stripe-php": ">=10.21.0"
},
"require-dev": {
"orchestra/database": "~3.7.0|~3.8.0|~4.0.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "^6.2|^7.0"
},
"autoload": {
"psr-4": {
"Creatydev\\Plans\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Creatydev\\Plans\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:basic": "phpunit --group basic",
"test:stripe": "phpunit --group stripe"
},
"extra": {
"laravel": {
"providers": [
"Creatydev\\Plans\\PlansServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}