-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
59 lines (58 loc) · 1.1 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
{
"name" : "avored/restapi",
"description" : "AvoRed Laravel Shopping Cart REST API",
"keywords" : [
"rest",
"api",
"cart",
"laravel",
"e commerce",
"laravel5",
"shop",
"shopping-cart",
"e-commerce",
"shopping cart",
"e commerce"
],
"license" : "MIT",
"authors" : [{
"name" : "Purvesh ",
"email" : "[email protected]"
}
],
"type" : "library",
"require" : {
"php" : ">=7.1.3",
"avored/framework": "3.*",
"laravel/passport": "^7.3"
},
"require-dev" : {
"phpunit/phpunit": "^7.5",
"orchestra/testbench" : "~3.7"
},
"autoload" : {
"psr-4" : {
"AvoRed\\RestApi\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"AvoRed\\RestApi\\Tests\\" : "tests/"
}
},
"extra" : {
"laravel" : {
"providers" : [
"AvoRed\\RestApi\\AvoRedRestApiProvider"
]
}
},
"homepage" : "https://www.avored.com",
"support" : {
"email" : "[email protected]",
"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"
}
}