-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
35 lines (35 loc) · 900 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
34
35
{
"name": "hassansin/dbcart",
"description": "Shopping Cart library for Laravel 5 that uses Database instead of Sessions",
"keywords": ["laravel", "cart", "database", "laravel5", "shopping-cart", "ecommerce"],
"homepage": "https://github.com/hassansin/dbcart",
"license": "MIT",
"authors": [
{
"name": "hassansin",
"email": "mhkr63@gmail.com"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "~5.0"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "~0.9",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-0": {
"Hassansin\\DBCart": "src/"
}
},
"minimum-stability": "dev",
"extra":{
"laravel":{
"providers":[
"Hassansin\\DBCart\\CartServiceProvider"
]
}
}
}