Skip to content

Commit

Permalink
✨ [NFE-180] Adicionando suporte ao PHP 8.2 e 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoapaes committed Nov 13, 2023
1 parent 02f3625 commit be32f2f
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,17 @@ RUN sh -c "$(wget -O- https://github.com/deluan/zsh-in-docker/releases/download/

ENV SHELL /bin/zsh

ENV PATH="$PATH:/root/.composer/vendor/bin"
ENV PATH="$PATH:/root/.composer/vendor/bin:/root/.config/composer/vendor/bin"
ENV COMPOSER_ALLOW_SUPERUSER=1

RUN composer global require friendsofphp/php-cs-fixer && php-cs-fixer --version
RUN composer global require phpstan/phpstan && phpstan -V
RUN composer global require "squizlabs/php_codesniffer=*" && phpcs -h && phpcbf -h
RUN composer global require friendsofphp/php-cs-fixer
RUN composer global require phpstan/phpstan
RUN composer global require "squizlabs/php_codesniffer=*"
RUN composer global require rector/rector
RUN composer global require symplify/easy-coding-standard

RUN PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --version && \
phpstan -V && \
phpcs -h && phpcbf -h \
rector --version \
ecs --version

0 comments on commit be32f2f

Please sign in to comment.