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
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ notifications:

php:
- nightly
- 8.0
- 7.4
- 8.3

Comment on lines 9 to 12
jobs:
allow_failures:
- php: nightly

install:
- rm composer.lock
- travis_retry composer update --no-interaction --prefer-dist --no-suggest --no-progress
- travis_retry composer install --no-interaction --prefer-dist --no-progress

script:
- composer test
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog][keepachangelog] and this project adher

## [Released]

## [1.0.3] - 2026-05-27

### Fixed

- Fix compatibility issues

## [1.0.2] - 2026-05-15

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4-cli
FROM php:8.3-cli

MAINTAINER devgeniem

Expand All @@ -9,4 +9,4 @@ RUN pip install pywatch

WORKDIR /opt

ENTRYPOINT ["pywatch"]
ENTRYPOINT ["pywatch"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ The plugin is tested locally with [PHPUnit](https://phpunit.de/) and automatical
# Install local composer packages.
composer install
# Build and tag the container.
docker build . -t phptest:7.4
docker build . -t phptest:8.3
# Run the container and watch changes.
docker run --rm -it -v $(pwd):/opt phptest:7.4 "php ./vendor/bin/phpunit" ./tests/*.php
docker run --rm -it -v $(pwd):/opt phptest:8.3 "php ./vendor/bin/phpunit" ./tests/*.php
```

## Contributors
Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
}
},
"require": {
"php": "^8.0",
"psr/log": "^1.1.3",
"psr/container": "^1.1.1"
"php": "^8.3",
"psr/log": "^3.0",
"psr/container": "^2.0"
},
Comment on lines 30 to 34
"require-dev": {
"roave/security-advisories": "dev-latest",
"devgeniem/geniem-rules-codesniffer": "^1",
"brainmaestro/composer-git-hooks": "^v2.8.5",
"brainmaestro/composer-git-hooks": "^3.0",
"phpunit/phpunit": "^9.6",
"10up/wp_mock": "^0.4.2",
"predis/predis": "^2.0",
Expand All @@ -58,6 +58,9 @@
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.3.0"
}
}
}
Loading
Loading