-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1021 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1021 Bytes
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
{
"name": "vanilo/address",
"description": "Vanilo Address Module",
"type": "library",
"license": "MIT",
"keywords": ["address", "ecommerce", "vanilo", "artkonekt", "laravel"],
"support": {
"source": "https://github.com/artkonekt/address"
},
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"require": {
"php": ">=7.0.0",
"konekt/address": ">=0.9.6",
"vanilo/contracts": "0.4.*",
"vanilo/support": "0.4.*"
},
"require-dev": {
"phpunit/phpunit": "6.2 - 7.3",
"orchestra/testbench": "^3.4.2"
},
"autoload": {
"psr-4": { "Vanilo\\Address\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Vanilo\\Address\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}