-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (45 loc) · 1.37 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
{
"name": "devbuddy/cart",
"description": "A simple cart class for laravel to build ecommerce websites from scratch. No need of configurations just download and start using it. You can customize the functionality as per your requirements very easily and with no hassle. ",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Dev Buddy",
"email": "sanish.kamboj@gmail.com",
"role": "lead"
}
],
"require": {
"php": ">=7.1",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
"illuminate/validation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0",
"illuminate/translation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^8.0.0",
"symfony/var-dumper": "2.7.*@dev"
},
"extra": {
"laravel": {
"providers": [
"Devbuddy\\Cart\\CartServiceProvider"
],
"aliases": {
"Cart": "Devbuddy\\Cart\\Facades\\CartFacade"
}
}
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Devbuddy\\Cart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Devbuddy\\Cart\\": "src/"
}
}
}