forked from ultrono/laravelshoppingcart-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.35 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
{
"name": "andryshok/laravelshoppingcart",
"description": "Laravel 5 and above Shopping cart",
"keywords": ["laravel", "shopping cart", "cart"],
"license": "MIT",
"authors": [
{
"name": "Darryl Fernandez",
"email": "[email protected]"
},
{
"name": "Rob Allport",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/validation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/translation": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.0|^9.5"
},
"autoload": {
"psr-4": {
"Darryldecode\\": "src/Darryldecode"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Darryldecode\\Cart\\CartServiceProvider"
],
"aliases": {
"Cart": "Darryldecode\\Cart\\Facades\\CartFacade"
}
}
}
}