File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11.PHONY : all build lint lint-fix test test-integration test-unit test-static repl generate-fixtures process-reports compile clean help
22
33IMAGE? =latest
4- PHP =docker- compose run --rm php
4+ PHP =docker compose run --rm php
55
66all : test
77
Original file line number Diff line number Diff line change 3939 "require-dev" : {
4040 "phpunit/phpunit" : " ^9.5.20" ,
4141 "squizlabs/php_codesniffer" : " 3.*" ,
42- "phpstan/phpstan" : " ^1.5.6 " ,
43- "psy/psysh" : " ^0.11.2 "
42+ "phpstan/phpstan" : " ^1.12.11 " ,
43+ "psy/psysh" : " ^0.12.4 "
4444 },
4545 "scripts" : {
4646 "test" : [
Original file line number Diff line number Diff line change 1- version : ' 3'
2-
31services :
42 php :
53 build : ./docker/${IMAGE:-latest}
Original file line number Diff line number Diff line change 1- FROM php:8.1 -cli
1+ FROM php:8.4 -cli
22
33RUN apt-get update && apt-get install -y \
44 bash \
@@ -9,12 +9,13 @@ RUN apt-get update && apt-get install -y \
99
1010RUN docker-php-ext-install zip
1111
12- RUN pecl install xdebug
12+ RUN pecl install xdebug-3.4.0beta1
1313
1414RUN docker-php-ext-enable xdebug
1515
16- COPY --from=composer /usr/bin/composer /usr/bin/composer
16+ COPY --from=composer:2.8 /usr/bin/composer /usr/bin/composer
1717
1818ENV COMPOSER_ALLOW_SUPERUSER 1
19+ ENV COMPOSER_ROOT_VERSION dev-master
1920
2021WORKDIR /app
You can’t perform that action at this time.
0 commit comments