Skip to content

Commit 9847ed3

Browse files
authored
Merge pull request #27 from devgeniem/fix-delete-post-param-type
Fix delete_post() param type hint
2 parents 49e5392 + aed0c7d commit 9847ed3

File tree

6 files changed

+1138
-636
lines changed

6 files changed

+1138
-636
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88

99
## [Released]
1010

11+
## [1.3.3] - 2024-05-06
12+
13+
### Changed
14+
- Update Composer dependencies.
15+
- Setup PHPCS rules.
16+
- Change Storage::delete_post() parameter type hint.
17+
1118
## [1.3.2] - 2024-04-15
1219

1320
### Changed

composer.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"license": "GPL-3.0-or-later",
2626
"minimum-stability": "stable",
2727
"require": {
28-
"php": ">=7.4 || ^8.0 || ^8.1",
28+
"php": ">=7.4 || ^8.0 || ^8.1 || ^8.2",
2929
"composer/installers": "^1.0.12 || ^2"
3030
},
3131
"autoload": {
@@ -36,11 +36,13 @@
3636
"require-dev": {
3737
"roave/security-advisories": "dev-latest",
3838
"10up/wp_mock": "^0.4.2",
39-
"phpunit/phpunit": "^9"
39+
"phpunit/phpunit": "^9",
40+
"devgeniem/geniem-rules-codesniffer": "^1.2"
4041
},
4142
"config": {
4243
"allow-plugins": {
43-
"composer/installers": true
44+
"composer/installers": true,
45+
"dealerdirect/phpcodesniffer-composer-installer": true
4446
}
4547
}
4648
}

0 commit comments

Comments
 (0)