forked from vanilophp/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.61 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
{
"name": "vanilo/framework",
"description": "E-commerce Framework for Laravel",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"support": {
"issues": "https://github.com/vanilophp/framework/issues"
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-pdo": "*",
"laravel/framework": "^6.18|^7.0|^8.0",
"konekt/appshell": "^2.2",
"konekt/concord": "^1.10",
"spatie/laravel-medialibrary": "^8.0|^9.0",
"vanilo/contracts": "^2.2",
"vanilo/support": "^2.2",
"vanilo/category": "^2.2",
"vanilo/product": "^2.2",
"vanilo/cart": "^2.2",
"vanilo/checkout": "^2.2",
"vanilo/order": "^2.2",
"vanilo/properties": "^2.2",
"vanilo/channel": "^2.2",
"vanilo/payment": "^2.2",
"vanilo/shipping": "^2.2"
},
"autoload": {
"psr-4": {
"Vanilo\\Framework\\": "src"
},
"files": [
"src/Support/helpers.php"
]
},
"require-dev": {
"orchestra/testbench": "~4.0|~5.0|~6.0",
"phpunit/phpunit" : "~8.0|~9.0",
"laravel/legacy-factories": "^1.0.4"
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Framework\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}