From 410e07b6e1cf7b9ee7c485dc762339520fb580ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 20:39:37 +0000 Subject: [PATCH] chore(master): release 3.3.15 --- CHANGELOG.md | 13 +++++++++++++ composer.json | 21 +++++++++++++-------- 2 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..def29c6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +## [3.3.15](https://github.com/WebFiori/http/compare/v3.3.14...v3.3.15) (2024-11-20) + + +### Bug Fixes + +* Add Missing Query String to URI ([fc69e5e](https://github.com/WebFiori/http/commit/fc69e5e317b63b543f92477502ee37fa768acfd2)) + + +### Miscellaneous Chores + +* Added Release Please to Workflow ([4db2020](https://github.com/WebFiori/http/commit/4db202003e771f0b50a0a28807719d023d0e70c6)) diff --git a/composer.json b/composer.json index 5eaa8ee..c87eba2 100644 --- a/composer.json +++ b/composer.json @@ -3,21 +3,26 @@ "type": "library", "description": "Basic library that can help in creating RESTful APIs using PHP.", "keywords": [ - "JSON","PHP","API","Web APIs","Library","HTTP","PSR-7", "JSONx" + "JSON", + "PHP", + "API", + "Web APIs", + "Library", + "HTTP", + "PSR-7", + "JSONx" ], "license": "MIT", "require": { "php": ">=7.0", - "webfiori/jsonx":"3.3.x", + "webfiori/jsonx": "3.3.x", "ext-json": "*", "ext-mbstring": "*" }, - "autoload" :{ - "psr-4":{ - "webfiori\\http\\":"webfiori\\http" + "autoload": { + "psr-4": { + "webfiori\\http\\": "webfiori\\http" } }, - "require-dev": { - - } + "require-dev": {} }