Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,10 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ '7.4', '8.0', '8.1' ]
php: [ '8.3' ]
stability: [ prefer-stable ]
include:
- php: '7.4'
composer: '1'
- php: '8.0'
composer: '2'
- php: '8.1'
- php: '8.3'
composer: '2'

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
Expand All @@ -44,7 +40,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}-${{ matrix.prefer }}-
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog][keepachangelog] and this project adher

## [Unreleased]

## [1.0.2] - 2026-05-15

### Changed

- Updated plugin to be compatible with PHP 8.3.

## [Released]

## [1.0.1] - 2023-02-01
Expand Down
14 changes: 10 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,18 @@
}
},
"require": {
"php": "^7.4 || ^8.0 || ^8.1",
"php": "^8.0",
"psr/log": "^1.1.3",
"psr/container": "^1.1.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"devgeniem/geniem-rules-codesniffer": "^1",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Eikö tää ja lint-skripti kannattaisi säilyttää? Vai miksei voi käyttää?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restored in 02a7c2bdevgeniem/geniem-rules-codesniffer, brainmaestro/composer-git-hooks, lint scripts, and pre-commit hooks are all back.

"brainmaestro/composer-git-hooks": "^v2.8.5",
"phpunit/phpunit": "^9",
"phpunit/phpunit": "^9.6",
"10up/wp_mock": "^0.4.2",
"m6web/redis-mock": "^5",
"predis/predis": "2.0.x-dev as 2.0.0.0"
"predis/predis": "^2.0",
"m6web/redis-mock": "^5.6"
},
"scripts": {
"test": "vendor/bin/phpunit",
Expand All @@ -53,5 +53,11 @@
"composer lint-without-warnings"
]
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
Loading
Loading