-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
56 lines (56 loc) · 1.2 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
56
{
"name": "parcelpro/shipment",
"description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
"version": "2.18.1",
"keywords": [
"verzenden",
"pakket",
"verzendopties",
"postnl",
"dhl"
],
"type": "magento2-module",
"require": {
"php": ">=7.1",
"ext-json": "*",
"ext-curl": "*",
"ext-intl": "*"
},
"license": [
"OSL-3.0"
],
"authors": [
{
"name": "Parcel Pro",
"email": "[email protected]",
"homepage": "https://www.parcelpro.nl",
"role": "Developer"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Parcelpro\\Shipment\\": ""
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"magento/community-edition": "^2.4",
"phpmd/phpmd": "^2.15"
},
"config": {
"allow-plugins": {
"php-http/discovery": false,
"magento/magento-composer-installer": false,
"magento/composer-dependency-version-audit-plugin": false
}
},
"scripts": {
"cs:check": "phpcs",
"cs:fix": "phpcbf",
"md": "phpmd . ansi phpmd.xml --exclude vendor",
"md:text": "phpmd . text phpmd.xml --exclude vendor"
}
}