-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.48 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "vanilo/admin",
"description": "Admin Panel for the Vanilo E-commerce Framework",
"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/admin/issues"
},
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-pdo": "*",
"laravel/framework": "^10.48|^11.46.2|^12.38",
"konekt/address": "^3.5.1",
"konekt/appshell": ">=4.8,<4.16.0 || >=4.16.1",
"konekt/gears": "^1.13",
"konekt/concord": "^1.15",
"spatie/laravel-medialibrary": "^11.0",
"vanilo/framework": "^5.1"
},
"autoload": {
"psr-4": {
"Vanilo\\Admin\\": "src"
},
"files": [
"src/Support/helpers.php"
]
},
"suggest": {
"vanilo/advanced-pricing": "Use the Advanced Pricing Module for pricelist support"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit" : "^10.0|^11.0",
"laravel/legacy-factories": "^1.4"
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Admin\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "5.1.x-dev"
}
}
}