-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
49 lines (49 loc) · 1.18 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
{
"name": "shabaz-ejaz/laracogs",
"description": "Prepare your Laravel apps incredibly fast, with various commands, services, facades and boilerplates.",
"license": "MIT",
"authors": [
{
"name": "Matt Lantz",
"email": "[email protected]"
},
{
"name": "Chris Blackwell",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"doctrine/dbal": "^2.5",
"illuminate/support": "^5.5",
"yab/crudmaker": "^1.3",
"yab/formmaker": "^1.2",
"yab/crypto": "~1.0",
"yab/cerebrum": "~1.0"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"mikey179/vfsStream": "^1.6",
"orchestra/testbench": "^3.4",
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"Yab\\Laracogs\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"providers": [
"Yab\\Laracogs\\LaracogsProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}