forked from indiehd/velkart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.19 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": "indiehd/velkart",
"description": "An extensible shopping cart built upon clean-coding principles and designed for Laravel.",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Everett M Wiley (Poppabear)",
"email": "[email protected]"
},
{
"name": "Ben Johnson (cbj4074)",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"bumbummen99/shoppingcart": "^2.0",
"illuminate/support": "^8.0",
"baum/baum": "v2.x-dev"
},
"autoload": {
"psr-4": {
"IndieHD\\Velkart\\": "src/",
"IndieHD\\Velkart\\Database\\Factories\\": "database/factories/",
"IndieHD\\Velkart\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"IndieHD\\Velkart\\Tests\\": "tests/"
}
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"orchestra/testbench": "^6.8",
"mockery/mockery": "^1.4.2",
"php-coveralls/php-coveralls": "^2.1",
"phpro/grumphp": "^0.18.1",
"phpunit/phpunit": "^8.5.8|^9.3.3"
},
"extra": {
"laravel": {
"providers": [
"IndieHD\\Velkart\\VelkartServiceProvider"
]
}
}
}