-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.37 KB
/
composer.json
File metadata and controls
80 lines (80 loc) · 2.37 KB
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
78
79
80
{
"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": "^8.3",
"ext-json": "*",
"ext-pdo": "*",
"laravel/framework": "^10.48|^11.46.2|^12.50|^13.0",
"konekt/enum": "^4.2",
"konekt/concord": "^1.15",
"konekt/xtend": "^2.0",
"spatie/laravel-medialibrary": "^11.9",
"cviebrock/eloquent-sluggable": "^10.0|^11.0|^12.0|^13.0",
"konekt/laravel-migration-compatibility": "^1.9",
"konekt/address": "^3.6.0",
"konekt/customer": "^3.2",
"konekt/user": "^3.0",
"konekt/search": "^1.4",
"nette/schema": "^1.3.2"
},
"replace": {
"vanilo/adjustments": "self.version",
"vanilo/cart": "self.version",
"vanilo/category": "self.version",
"vanilo/channel": "self.version",
"vanilo/checkout": "self.version",
"vanilo/contracts": "self.version",
"vanilo/links": "self.version",
"vanilo/master-product": "self.version",
"vanilo/order": "self.version",
"vanilo/payment": "self.version",
"vanilo/product": "self.version",
"vanilo/promotion": "self.version",
"vanilo/properties": "self.version",
"vanilo/shipment": "self.version",
"vanilo/support": "self.version",
"vanilo/taxes": "self.version",
"vanilo/video": "self.version"
},
"autoload": {
"psr-4": {
"Vanilo\\": "src"
},
"files": [
"src/Links/Support/helpers.php",
"src/Translation/Support/helpers.php",
"src/Foundation/Support/helpers.php"
]
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0|^11.0",
"phpunit/phpunit" : "^10.0|^11.0"
},
"scripts": {
"test": "phpunit"
},
"extra": {
"laravel": {
"aliases": {
"Cart": "Vanilo\\Cart\\Facades\\Cart"
}
},
"branch-alias": {
"dev-master": "5.2.x-dev"
}
}
}