-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [7.3.0](v7.2.2...v7.3.0) (2022-06-16) ### ✨ New Features * add order status webhook and add shipments to order ([#414](#414)) ([ae89f92](ae89f92)) * add weight validation to consignment ([#411](#411)) ([d2cf46e](d2cf46e)) ### 🐛 Bug Fixes * adjust instabox shipment for ConsignmentAdapter usage ([#406](#406)) ([ab0e6c7](ab0e6c7)) * restore deprecated constant ([#416](#416)) ([ffffa0d](ffffa0d))
- Loading branch information
1 parent
bc5b3c7
commit f884e3a
Showing
2 changed files
with
55 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
{ | ||
"name": "myparcelnl/sdk", | ||
"version": "7.2.2", | ||
"description": "This package is designed to send and receive data from MyParcel by means of an API.", | ||
"keywords": [ | ||
"MyParcel", | ||
"Flespakket", | ||
"PostNL" | ||
], | ||
"homepage": "https://myparcelnl.github.io/sdk", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Reindert Vetter", | ||
"email": "[email protected]" | ||
"name": "myparcelnl/sdk", | ||
"version": "7.3.0", | ||
"description": "This package is designed to send and receive data from MyParcel by means of an API.", | ||
"keywords": [ | ||
"MyParcel", | ||
"Flespakket", | ||
"PostNL" | ||
], | ||
"homepage": "https://myparcelnl.github.io/sdk", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Reindert Vetter", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Richard Perdaan", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Edie Lemoine", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1.0" | ||
}, | ||
{ | ||
"name": "Richard Perdaan", | ||
"email": "[email protected]" | ||
"require-dev": { | ||
"fakerphp/faker": "^v1.16.0", | ||
"phpunit/phpunit": "^7.5.20", | ||
"psr/container": "~1.0.0" | ||
}, | ||
{ | ||
"name": "Edie Lemoine", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1.0" | ||
}, | ||
"require-dev": { | ||
"fakerphp/faker": "^v1.16.0", | ||
"phpunit/phpunit": "^7.5.20", | ||
"psr/container": "~1.0.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"MyParcelNL\\Sdk\\src\\": "src", | ||
"MyParcelNL\\Sdk\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"MyParcelNL\\Sdk\\Test\\": "test" | ||
"autoload": { | ||
"psr-4": { | ||
"MyParcelNL\\Sdk\\src\\": "src", | ||
"MyParcelNL\\Sdk\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"MyParcelNL\\Sdk\\Test\\": "test" | ||
} | ||
} | ||
} | ||
} | ||
} |