forked from vanilophp/cart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.21 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
{
"name": "vanilo/cart",
"description": "Vanilo Cart Module",
"type": "library",
"license": "MIT",
"keywords": ["cart", "ecommerce", "vanilo", "artkonekt", "laravel"],
"support": {
"source": "https://github.com/vanilophp/cart"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"require": {
"php": "^7.4|^8.0",
"konekt/concord": "^1.6",
"vanilo/contracts": "^2.2",
"vanilo/support": "^2.2"
},
"require-dev": {
"ext-sqlite3": "*",
"phpunit/phpunit": "~8.0|~9.0",
"orchestra/testbench": "~4.0|~5.0|~6.0",
"konekt/enum": "^3.0",
"laravel/legacy-factories": "^1.0"
},
"autoload": {
"psr-4": { "Vanilo\\Cart\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Cart\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"aliases": {
"Cart": "Vanilo\\Cart\\Facades\\Cart"
}
},
"branch-alias": {
"dev-master": "2.2.x-dev"
}
}
}