Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 381abb8

Browse files
committedNov 30, 2024
PHP 8.3 => 8.4.
1 parent 9de7b30 commit 381abb8

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed
 

‎CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
### Changed
9+
- PHP 8.3 => 8.4.
10+
711
## [5.5.0] - 2024-11-30
812
### Changed
913
- cyril-verloop/codingame-configuration 1.8.0 => 1.9.0.

‎Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM php:8.3-cli-alpine
1+
FROM php:8.4-cli-alpine
22
RUN apk update \
33
&& apk add gpg linux-headers oniguruma-dev $PHPIZE_DEPS \
44
&& docker-php-ext-install pcntl mbstring \
5-
&& pecl install xdebug-3.3.1 \
5+
&& pecl install xdebug-3.4.0 \
66
&& docker-php-ext-enable mbstring pcntl xdebug \
77
&& wget -O /usr/local/bin/phive https://phar.io/releases/phive.phar \
88
&& chmod +x /usr/local/bin/phive \

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ A project to test your [CodinGame](https://www.codingame.com/) PHP code. It is n
44
It only contains PHPUnit tests to let you code in your favorite IDE, outside of the CodinGame web site.
55

66
[![License](https://img.shields.io/github/license/cyrilverloop/codingame-php-tests)](https://github.com/cyrilverloop/codingame-php-tests/blob/trunk/LICENSE)
7-
[![PHP version](https://img.shields.io/badge/php-%3D8.3-%23777BB4?logo=php&style=flat)](https://www.php.net/)
7+
[![PHP version](https://img.shields.io/badge/php-%3D8.4-%23777BB4?logo=php&style=flat)](https://www.php.net/)
88

9-
**This project now uses PHP 8.3+.
9+
**This project now uses PHP 8.4.
1010
Unfortunaly, CodinGame is still on PHP 7.3
1111
which is not [supported](https://www.php.net/supported-versions.php) anymore.
1212
If you want to run your code on PHP 7.3,

‎composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "8.3.*",
23+
"php": "8.4.*",
2424
"twig/twig": "^3.7",
2525
"twig/string-extra": "^3.7",
2626
"cyril-verloop/iterator": "^3.1",

‎composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.