Skip to content
This repository was archived by the owner on Sep 21, 2023. It is now read-only.

Commit 451e5ff

Browse files
authored
Merge pull request #52 from Petschko/multi-labels
Multi label support
2 parents 0466104 + b240ba0 commit 451e5ff

31 files changed

+1789
-7453
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This *unofficial* library is wrapping some functions of the DHL SOAP API in orde
55
## Requirements
66

77
- You need a [DHL developer Account](https://entwickler.dhl.de/) and - as long as you want to use the API in production systems - a DHL Intraship Account.
8+
- PHP-Version 5.4 or higher _(It may work on older Versions, but I don't offer Support for these)_
89
- PHP-SOAP-Client installed + enabled on your Server. [More information on php.net](http://php.net/manual/en/soap.setup.php)
910

1011
## Installation

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=5.3.10",
13+
"php": ">=5.4.0",
1414
"ext-soap": "*",
1515
"ext-mbstring": "*"
1616
},

examples/getting-started.md

Lines changed: 205 additions & 98 deletions
Large diffs are not rendered by default.

includes/Address.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
/**
1717
* Class Address
18+
*
19+
* @package Petschko\DHL
1820
*/
1921
abstract class Address {
2022
/**

includes/BankData.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717

1818
/**
1919
* Class BankData
20+
*
21+
* @package Petschko\DHL
2022
*/
2123
class BankData {
2224
/**

0 commit comments

Comments
 (0)