Skip to content

Commit

Permalink
Prepare Release v3.0.x (#2)
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael Esayeas <nathanael.esayeas@protonmail.com>
  • Loading branch information
ghostwriter committed Jan 17, 2024
2 parents 60617f8 + b0e1bee commit a6c3ead
Show file tree
Hide file tree
Showing 17 changed files with 168 additions and 165 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.php-cs-fixer.dist.php export-ignore
/infection.json.dist export-ignore
/phpbench.json.dist export-ignore
/phpunit.xml.dist export-ignore
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.0.0] - 2024-01-16

### Added

- Interface Ghostwriter\Clock\Interface\ClockExceptionInterface has been added

### Removed

- Interface Ghostwriter\Clock\Interface\ExceptionInterface has been deleted

## [2.0.0] - 2023-12-16

### Added
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ You can install the package via composer:
composer require ghostwriter/clock
```

### Star ⭐️ this repo if you find it useful

You can also star (🌟) this repo to find it easier later.

### Usage

``` php
Expand Down
9 changes: 3 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
}
],
"require": {
"php": ">=8.2"
"php": "^8.3"
},
"require-dev": {
"ghostwriter/coding-standard": "dev-main",
Expand All @@ -45,15 +45,12 @@
},
"autoload-dev": {
"psr-4": {
"Ghostwriter\\Clock\\Tests\\": "tests"
"Ghostwriter\\ClockTests\\": "tests"
}
},
"config": {
"discard-changes": true,
"optimize-autoloader": true,
"platform": {
"php": "8.2.999"
},
"preferred-install": "dist",
"prepend-autoloader": true,
"process-timeout": 5000,
Expand All @@ -76,7 +73,7 @@
"@infection"
],
"fix": "vendor/ghostwriter/coding-standard/tools/php-cs-fixer fix --diff --using-cache=no --allow-risky=yes",
"infection": "vendor/ghostwriter/coding-standard/tools/infection --ansi --verbose",
"infection": "vendor/ghostwriter/coding-standard/tools/infection --show-mutations --ansi --verbose",
"missing-returntypes": "vendor/bin/psalm --alter --issues=MissingReturnType",
"phpunit": "vendor/bin/phpunit --do-not-cache-result --colors=always --testdox --stop-on-failure",
"phpunit:migrate": "vendor/bin/phpunit --migrate-configuration",
Expand Down

0 comments on commit a6c3ead

Please sign in to comment.