forked from myparcelnl/magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.13 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
{
"name": "myparcelnl/magento",
"description": "A Magento 2 module that creates MyParcel labels",
"type": "magento2-module",
"version": "3.3.0",
"homepage": "https://www.myparcel.nl",
"keywords": ["MyParcel", "My Parcel", "Post NL", "PostNL", "Magento 2"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Reindert Vetter",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
},
{
"name": "Richard Perdaan",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
}
],
"require": {
"php": "~5.6.5 || ^7.0",
"myparcelnl/sdk": "~3.1",
"magento/product-community-edition": "~2.3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"files": [ "registration.php" ],
"psr-4" : {
"MyParcelNL\\Magento\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
}
}