Try to install composer dependenciese via docker command:
docker-compose run --rm backend composer install
This complains about a lot of missmatching dependencies.
Your lock file does not contain a compatible set of packages. Please run composer update.
Running ...composer update:
Problem 1
- Root composer.json requires codeception/module-filesystem ^3.0 || ^1.1 -> satisfiable by codeception/module-filesystem[3.0.0].
- codeception/module-filesystem 3.0.0 requires php ^8.0 -> your php version (7.4.30) does not satisfy that requirement.
What's expected?
Get composer dependencies installed properly.
What do you get instead?
Composer errors.
Additional info
You can get the composer install running by changing the yii2 Docker images to PHP 8.1
backend/Dockerfile:
FROM yiisoftware/yii2-php:8.1-apache
frontend/Dockerfile:
FROM yiisoftware/yii2-php:8.1-apache
I forked the repository and made a branche with the required changes.
I added a pull request with my branch to this repository.
This i smy first pull request, I hope I did it alright?.
What steps will reproduce the problem?
Try to install composer dependenciese via docker command:
This complains about a lot of missmatching dependencies.
Running ...composer update:
What's expected?
Get composer dependencies installed properly.
What do you get instead?
Composer errors.
Additional info
You can get the composer install running by changing the yii2 Docker images to PHP 8.1
backend/Dockerfile: FROM yiisoftware/yii2-php:8.1-apache
frontend/Dockerfile: FROM yiisoftware/yii2-php:8.1-apache