-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
43 lines (43 loc) · 1.17 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
{
"name": "vanilo/channel",
"description": "Vanilo Channel Module",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["channel", "ecommerce", "vanilo", "laravel"],
"support": {
"issues": "https://github.com/vanilophp/framework/issues",
"source": "https://github.com/vanilophp/channel"
},
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"require": {
"php": "^8.2",
"konekt/concord": "^1.13",
"cviebrock/eloquent-sluggable": "^10.0|^11.0",
"laravel/framework": "^10.43|^11.0",
"vanilo/support": "^4.2"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0|^9.0",
"laravel/legacy-factories": "^1.0",
"konekt/address": "^3.4.1"
},
"suggest": {
"konekt/address": "To support billing and shipping zones (^3.4)"
},
"autoload": {
"psr-4": { "Vanilo\\Channel\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "5.0.x-dev"
}
}
}