Updated Rector to commit 0d1dbd737ce07c60ac5b206a7641a39118610b4c

0d1dbd737c Update developing with docker: Fix php version to 8.2. (#6490)
This commit is contained in:
Tomas Votruba 2024-11-23 18:21:44 +00:00
parent f65525c861
commit 01be6079e8
2 changed files with 8 additions and 5 deletions

View File

@ -56,13 +56,16 @@ above commands in a docker container:
```bash
# Build the docker image
docker compose build
docker compose build --pull
# Install dependencies
docker compose run --rm php composer install
# Run the entire CI suite
docker compose run php composer complete-check
docker compose run --rm php composer complete-check
# Fix the coding standards
docker compose run php composer fix-cs
docker compose run --rm php composer fix-cs
```
## TroubleShooting

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'b98a0e11fb1d037da71155a2a80704f1c2b11483';
public const PACKAGE_VERSION = '0d1dbd737ce07c60ac5b206a7641a39118610b4c';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-11-24 01:13:00';
public const RELEASE_DATE = '2024-11-24 01:19:23';
/**
* @var int
*/