forked from gerardojbaez/laraplans
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 875 Bytes
/
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
{
"name": "cimons/laraplans",
"description": "SaaS style recurring plans for Laravel.",
"keywords": ["plans", "laravel", "subscriptions", "memberships"],
"license": "MIT",
"type": "library",
"require": {
"php": ">=5.5.9",
"nesbot/carbon": "~1.21",
"illuminate/support": "~5.3",
"illuminate/database": "~5.3"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"orchestra/testbench": "~3.3.0",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-4": {
"Gerardojbaez\\Laraplans\\": "src/Laraplans/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Gerardojbaez\\Laraplans\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}