diff --git a/CHANGELOG.md b/CHANGELOG.md index 49242d601..9c95725a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.2.0](https://github.com/myparcelnl/pdk/compare/v1.1.0...v1.2.0) (2022-07-04) + + +### :sparkles: New Features + +* add repositories and requests ([#5](https://github.com/myparcelnl/pdk/issues/5)) ([03b23f1](https://github.com/myparcelnl/pdk/commit/03b23f1710f36984497c0ad2ade7bb0c68b2a14a)) + ## [1.1.0](https://github.com/myparcelnl/pdk/compare/v1.0.1...v1.1.0) (2022-05-31) diff --git a/composer.json b/composer.json index 1c7172ab7..162c3af5d 100644 --- a/composer.json +++ b/composer.json @@ -1,41 +1,41 @@ { - "name": "myparcelnl/pdk", - "version": "1.1.0", - "description": "MyParcel Plugin Development Kit", - "type": "library", - "homepage": "https://www.myparcel.nl", - "require": { - "myparcelnl/sdk": "^7.1", - "php": ">=7.1.0", - "php-di/php-di": "~6.0.0", - "guzzlehttp/guzzle": "^7.4" - }, - "require-dev": { - "pestphp/pest": "^1.21", - "pestphp/pest-plugin-watch": "^1.x-dev", - "pestphp/pest-plugin-faker": "^1.x-dev" - }, - "license": "MIT", - "autoload": { - "psr-4": { - "MyParcelNL\\Pdk\\": "src/" + "name": "myparcelnl/pdk", + "version": "1.2.0", + "description": "MyParcel Plugin Development Kit", + "type": "library", + "homepage": "https://www.myparcel.nl", + "require": { + "myparcelnl/sdk": "^7.1", + "php": ">=7.1.0", + "php-di/php-di": "~6.0.0", + "guzzlehttp/guzzle": "^7.4" + }, + "require-dev": { + "pestphp/pest": "^1.21", + "pestphp/pest-plugin-watch": "^1.x-dev", + "pestphp/pest-plugin-faker": "^1.x-dev" + }, + "license": "MIT", + "autoload": { + "psr-4": { + "MyParcelNL\\Pdk\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "MyParcelNL\\Pdk\\": "tests/Unit", + "MyParcelNL\\Pdk\\Tests\\": "tests" + } + }, + "authors": [ + { + "name": "Edie Lemoine", + "email": "edie@myparcel.nl" + } + ], + "config": { + "allow-plugins": { + "pestphp/pest-plugin": true + } } - }, - "autoload-dev": { - "psr-4": { - "MyParcelNL\\Pdk\\": "tests/Unit", - "MyParcelNL\\Pdk\\Tests\\": "tests" - } - }, - "authors": [ - { - "name": "Edie Lemoine", - "email": "edie@myparcel.nl" - } - ], - "config": { - "allow-plugins": { - "pestphp/pest-plugin": true - } - } -} +} \ No newline at end of file