File tree Expand file tree Collapse file tree 6 files changed +240
-152
lines changed
Expand file tree Collapse file tree 6 files changed +240
-152
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11FROM php:8.4-cli
22WORKDIR "/opt/php"
33
4- ENV DEBIAN_FRONTEND noninteractive
4+ ENV DEBIAN_FRONTEND= noninteractive
55
66RUN apt-get update && \
77 apt-get install -y zip libzip-dev && \
@@ -11,7 +11,7 @@ RUN apt-get update && \
1111 docker-php-source delete && \
1212 rm -r /tmp/* /var/cache/*
1313
14- COPY ./.docker/php8.0 -cli/php-ini-overrides.ini /usr/local/etc/php/conf.d/99-overrides.ini
14+ COPY ./.docker/php8.4 -cli/php-ini-overrides.ini /usr/local/etc/php/conf.d/99-overrides.ini
1515
1616RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
1717 && php composer-setup.php \
Original file line number Diff line number Diff line change 1- build :
2- docker build -f .docker/php8.3 -cli/Dockerfile -t framework-8.3 .
1+ docker- build :
2+ docker build -f .docker/php8.4 -cli/Dockerfile -t framework-8.4 .
33composer-update :
4- docker run -v $(shell pwd) :/opt/php framework-8.3 sh -c ' composer update'
4+ docker run -v $(shell pwd) :/opt/php framework-8.4 sh -c ' composer update'
55run-tests :
6- docker run -v $(shell pwd) :/opt/php framework-8.3 sh -c ' ./vendor/bin/phpunit tests/'
6+ docker run -v $(shell pwd) :/opt/php framework-8.4 sh -c ' ./vendor/bin/phpunit tests/'
Original file line number Diff line number Diff line change 1111 }
1212 ],
1313 "require" : {
14- "php" : " ^8.2 " ,
15- "psr/http-message" : " ~1 .0" ,
14+ "php" : " >=8.4 " ,
15+ "psr/http-message" : " ^1.0|^2 .0" ,
1616 "psr/http-server-handler" : " ~1.0" ,
1717 "psr/http-server-middleware" : " ~1.0" ,
18- "psr/container" : " ^1.0" ,
18+ "psr/container" : " ^1.0|^2.0 " ,
1919 "psr/http-factory" : " ^1.0"
2020 },
2121 "require-dev" : {
2222 "phpunit/phpunit" : " ^11.0" ,
2323 "laminas/laminas-diactoros" : " ^3.3" ,
2424 "nikic/fast-route" : " ~1.3.0"
2525 },
26- "minimum-stability " : " stable" ,
26+ "minimum-stabildity " : " stable" ,
2727 "autoload" : {
2828 "psr-4" : {
2929 "Larium\\ Framework\\ " : " src/"
You can’t perform that action at this time.
0 commit comments