Skip to content

Commit

Permalink
Added supporting of PHP 8.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bupy7 committed Dec 29, 2023
1 parent 5b8bb8f commit f21a847
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- 8.0
- 8.1
- 8.2
- 8.3
steps:
- uses: actions/checkout@v2

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
xml-constrcutor
===

v2.1.0 [2023-12-29]
---

- Supporting of PHP 8.3.

v2.0.2 [2023-01-07]
---

Expand Down
2 changes: 1 addition & 1 deletion phpcs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* Configuration of code style fixer and checker for this library.
* This configuration compatible with friendsofphp/php-cs-fixer "^3.13.0".
* This configuration compatible with friendsofphp/php-cs-fixer "^3.43.0".
*/

use PhpCsFixer\Finder;
Expand Down
4 changes: 2 additions & 2 deletions workenv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-cli-alpine
FROM php:8.3-cli-alpine

RUN apk add --no-cache $PHPIZE_DEPS && apk add --update --no-cache linux-headers

Expand All @@ -13,6 +13,6 @@ RUN if [ ${GITHUB_OAUTH_TOKEN} != false ]; then \
;fi
RUN export COMPOSER_DISABLE_XDEBUG_WARN=1

RUN composer global require friendsofphp/php-cs-fixer "^3.13.0"
RUN composer global require friendsofphp/php-cs-fixer "^3.43.1"

CMD ["php", "-a"]

0 comments on commit f21a847

Please sign in to comment.