From f9bb90abde2c7c7c740265ae5e3bab5cfa2d9ed4 Mon Sep 17 00:00:00 2001 From: Sakri Koskimies Date: Fri, 24 Nov 2023 15:50:50 +0200 Subject: [PATCH] Documentation & housekeeping --- CHANGELOG.md | 7 +++++++ README.md | 2 +- composer.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99c3f32..93a8fa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,16 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.4] - 2023-11-24 + ### Added - Add wiki repo as git submodule - Composer helper scripts +- Add throws section to output ### Changed - Set index Markdown file name to Home.md - Removed watermark from footer +### Fixed + +- Fixed issue with interface extends + ## [0.1.3] - 2022-04-20 ### Added diff --git a/README.md b/README.md index e505103..6fc6de2 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ composer install cp phpunit.xml.dist phpunit.xml # Run PHPUnit in project root directory -composer run-tests +composer test ``` ## Contributing diff --git a/composer.json b/composer.json index 1edd65e..44d2021 100644 --- a/composer.json +++ b/composer.json @@ -33,7 +33,7 @@ } }, "scripts": { - "run-tests": "vendor/bin/phpunit", + "test": "vendor/bin/phpunit", "create-docs": "phpdoc && cp -r example/* docs/.wiki" }, "license": "MIT"