forked from abr4xas/plans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.53 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
{
"name": "abr4xas/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/abr4xas/plans",
"license": "MIT",
"authors": [
{
"name": "Alex Renoki",
"email": "[email protected]",
"homepage": "https://twitter.com/rennokki",
"role": "Developer"
}
],
"require": {
"doctrine/dbal": "^2.8.0",
"stripe/stripe-php": "^6.11.0",
"laravel/framework": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~6.0"
},
"require-dev": {
"orchestra/database": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "^6.2|^7.0"
},
"autoload": {
"psr-4": {
"Abr4xas\\Plans\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abr4xas\\Plans\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"test:basic": "phpunit --group basic",
"test:stripe": "phpunit --group stripe"
},
"extra": {
"laravel": {
"providers": [
"Abr4xas\\Plans\\PlansServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}