-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
executable file
·55 lines (55 loc) · 1.08 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
55
{
"name": "myparcelnl/magento",
"version": "4.18.0",
"description": "A Magento 2 module that creates MyParcel labels",
"keywords": [
"myparcel",
"postnl",
"magento2"
],
"homepage": "https://www.myparcel.nl",
"license": "MIT",
"authors": [
{
"name": "Edie Lemoine",
"email": "[email protected]"
},
{
"name": "Joeri van Veen",
"email": "[email protected]"
},
{
"name": "Mark Ernst",
"email": "[email protected]"
},
{
"name": "Richard Perdaan",
"email": "[email protected]"
}
],
"type": "magento2-module",
"require": {
"php": "^7.1 || ^8.0",
"myparcelnl/sdk": "~v7.19",
"magento/framework": ">=101.0.8 <102 || >=102.0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MyParcelNL\\Magento\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"scripts": {
"pre-package-uninstall": "MyParcelNL\\Magento\\Setup\\Uninstall::uninstall"
}
}