-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 972 Bytes
/
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
{
"name": "vilkas/vg_postnord",
"description": "Postnord integration for prestashop",
"type": "prestashop-module",
"require": {
"php": ">=7.2.0",
"symfony/http-client": "^5.0",
"monolog/monolog": "^2.3",
"symfony/http-foundation": "^5.4",
"iio/libmergepdf": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "7.0.2",
"prestashop/php-dev-tools": "^4.2"
},
"autoload": {
"psr-4": {
"Vilkas\\Postnord\\": "src/"
},
"classmap": [
"vg_postnord.php"
],
"exclude-from-classmap": []
},
"config": {
"prepend-autoloader": false,
"preferred-install": "dist"
},
"scripts": {
"test": "./vendor/bin/phpunit --debug --verbose tests"
},
"authors": [
{
"name": "Tatu Wikman",
"email": "tatu.wikman@gmail.com"
},
{
"name": "Sauli Maijala",
"email": "sauli@vilkas.fi"
},
{
"name": "Dat Nguyen",
"email": "dat.nguyen@vilkas.fi"
}
]
}