forked from gerardojbaez/laraplans
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "czechbox/laravelplans",
"description": "SaaS style recurring plans for Laravel.",
"keywords": ["plans", "laravel", "subscriptions", "memberships"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=7.2",
"nesbot/carbon": "~2.0",
"illuminate/support": "~6.0|~7.0|~8.0",
"illuminate/database": "~6.0|~7.0|~8.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"orchestra/testbench": "~4.7.0|~5.0",
"mockery/mockery": "~1.3",
"phpunit/phpunit": "~8.0|~9.0"
},
"autoload": {
"psr-4": {
"Czechbox\\LaravelPlans\\": "src/LaravelPlans/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Czechbox\\LaravelPlans\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Czechbox\\LaravelPlans\\LaravelPlansServiceProvider"
]
}
},
"minimum-stability": "dev"
}