forked from vanilophp/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.28 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
50
51
52
53
54
{
"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": ">=7.0.0",
"konekt/appshell": ">=0.9.6",
"vanilo/address": "0.3.*",
"vanilo/contracts": "0.3.*",
"vanilo/support": "0.3.*",
"vanilo/product": "0.3.*",
"vanilo/cart": "0.3.*",
"vanilo/checkout": "0.3.*",
"vanilo/order": "0.3.*"
},
"autoload": {
"psr-4": {
"Vanilo\\Framework\\": "src"
},
"files": [
"src/Support/helpers.php"
]
},
"require-dev": {
"monolog/monolog": "^1.22",
"orchestra/testbench": "^3.4.2",
"phpunit/phpunit" : "6.2 - 7.0"
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Framework\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "0.3-dev"
}
}
}