forked from myparcelnl/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·55 lines (55 loc) · 1.32 KB
/
composer.json
File metadata and controls
executable file
·55 lines (55 loc) · 1.32 KB
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/sdk",
"version": "10.3.0",
"description": "This package is designed to send and receive data from MyParcel by means of an API.",
"keywords": [
"MyParcel",
"PostNL"
],
"homepage": "https://myparcelnl.github.io/sdk",
"license": "MIT",
"authors": [
{
"name": "Jochem Gravendeel",
"email": "support@myparcel.nl"
},
{
"name": "Joeri van Veen",
"email": "support@myparcel.nl"
},
{
"name": "Nabil Azahaf",
"email": "support@myparcel.nl"
},
{
"name": "Richard Perdaan",
"email": "support@myparcel.nl"
}
],
"scripts": {
"test": "phpunit",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit --coverage-html coverage"
]
},
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"fakerphp/faker": "^v1.16.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^9.6.22",
"psr/container": "~1.0.0"
},
"autoload": {
"psr-4": {
"MyParcelNL\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyParcelNL\\Sdk\\Test\\": "test/"
}
}
}