-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.29 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
{
"name": "vanilo/links",
"description": "Vanilo module for creating links between products, categories like upsell, variants, similar products, etc",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"keywords": ["ecommerce", "laravel", "vanilo", "variants", "upsell", "cross-sell", "products", "relations"],
"support": {
"issues": "https://github.com/vanilophp/framework/issues",
"source": "https://github.com/vanilophp/links"
},
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"require": {
"php": "^8.2",
"cviebrock/eloquent-sluggable": "^10.0|^11.0",
"illuminate/support": "^10.43|^11.0",
"konekt/concord": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Vanilo\\Links\\": ""
},
"files": [
"Support/helpers.php"
]
},
"suggest": {
"vanilo/properties": "Allows setting the differing property between linked models (^4.0)"
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}