forked from avored/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (76 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name" : "avored/framework",
"description" : "AvoRed Laravel E commerce Framework",
"keywords" : [
"framework",
"cart",
"laravel",
"e commerce",
"laravel5",
"shop",
"shopping-cart",
"e-commerce",
"shopping cart",
"e commerce"
],
"license" : "MIT",
"authors" : [{
"name" : "Purvesh ",
"email" : "ind.purvesh@gmail.com"
}
],
"type" : "library",
"require" : {
"php" : ">=7.2",
"symfony/yaml": "^4.2",
"laravel/passport": "^7.4",
"barryvdh/laravel-dompdf": "^0.8.4",
"laravel/helpers": "^1.1",
"spatie/laravel-view-models": "^1.2",
"laravel/framework" : "^5.8|^6.0|^6.1|^6.2"
},
"require-dev" : {
"phpunit/phpunit": "^7.5",
"orchestra/testbench" : "~3.7",
"mockery/mockery" : "1.2.*"
},
"autoload" : {
"classmap": [
"database/factories"
],
"psr-4" : {
"AvoRed\\Framework\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"AvoRed\\Framework\\Tests\\" : "tests/"
}
},
"extra" : {
"laravel" : {
"providers" : [
"AvoRed\\Framework\\AvoRedProvider"
],
"aliases" : {
"Breadcrumb" : "AvoRed\\Framework\\Support\\Facades\\Breadcrumb",
"Cart" : "AvoRed\\Framework\\Support\\Facades\\Cart",
"Menu" : "AvoRed\\Framework\\Support\\Facades\\Menu",
"Module" : "AvoRed\\Framework\\Support\\Facades\\Module",
"Payment" : "AvoRed\\Framework\\Support\\Facades\\Payment",
"Permission" : "AvoRed\\Framework\\Support\\Facades\\Permission",
"Shipping" : "AvoRed\\Framework\\Support\\Facades\\Shipping",
"Tab" : "AvoRed\\Framework\\Support\\Facades\\Tab",
"Widget" : "AvoRed\\Framework\\Support\\Facades\\Widget"
}
}
},
"homepage" : "https://www.avored.com",
"support" : {
"email" : "ind.purvesh@gmail.com",
"issues" : "https://www.avored.com/discussion",
"forum" : "https://www.avored.com/discussion",
"wiki" : "https://www.avored.com/docs",
"source" : "https://www.github.com/avored/framework"
}
}