-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 779 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 779 Bytes
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": "salamek/ppl-my-api",
"description": "Professional Parcel Logistic MyApi client in PHP",
"keywords": [
"PPL",
"Professional Parcel Logistic",
"api"
],
"homepage": "https://github.com/Salamek/PplMyApi",
"license": [
"LGPL-3.0-only"
],
"authors": [
{
"name": "Adam Schubert",
"homepage": "http://www.salamek.cz"
}
],
"autoload": {
"classmap": [
"src/"
]
},
"require": {
"php": ">=7.3.0",
"tecnickcom/tcpdf": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "vendor/bin/phpunit",
"post-install-cmd": [
"mkdir ./tmp",
"chmod -R 777 ./tmp"
],
"post-update-cmd": [
"mkdir ./tmp",
"chmod -R 777 ./tmp"
]
}
}