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": {} }