diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..adb6719 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +## [1.3.7](https://github.com/WebFiori/file/compare/v1.3.6...v1.3.7) (2024-12-22) + + +### Bug Fixes + +* Casting to Integer ([cc3215d](https://github.com/WebFiori/file/commit/cc3215d23b852f8ed3678bcb25a0998863f928b6)) +* Fix New Null Syntax ([3ce5995](https://github.com/WebFiori/file/commit/3ce599576607b07853e0385103c8e7371f30dceb)) +* Small Fix to Last Modified ([51ab42a](https://github.com/WebFiori/file/commit/51ab42a4c30dd893577238139feffbd7a6a47425)) + + +### Miscellaneous Chores + +* Added Additional Test Case ([ffc2260](https://github.com/WebFiori/file/commit/ffc22603ea10ce5d79c09773fb4822e255c32fda)) +* Code Cleanup ([e9e1724](https://github.com/WebFiori/file/commit/e9e1724397187e46c0302a85db0dae8b5d63e5d3)) diff --git a/composer.json b/composer.json index 807edab..2322ca6 100644 --- a/composer.json +++ b/composer.json @@ -1,21 +1,21 @@ { "name": "webfiori/file", "description": "Basic class library to read, write and view files using PHP.", - "type":"library", - "version":"1.3.6", + "type": "library", + "version": "1.3.7", "authors": [ { "name": "Ibrahim BinAlshikh", "email": "ibrahim@webfiori.com" } ], - "license":"MIT", + "license": "MIT", "require": { "php": ">=7.0", - "webfiori/jsonx":"3.3.x" + "webfiori/jsonx": "3.3.x" }, "require-dev": { - "webfiori/http":"*" + "webfiori/http": "*" }, "keywords": [ "php", @@ -24,9 +24,9 @@ "upload", "uploading" ], - "autoload" :{ - "psr-4":{ - "webfiori\\file\\":"webfiori/file/" + "autoload": { + "psr-4": { + "webfiori\\file\\": "webfiori/file/" } } }