Skip to content

Instantly share code, notes, and snippets.

View lukaszzychal's full-sized avatar

Łukasz Zychal lukaszzychal

View GitHub Profile
@lukaszzychal
lukaszzychal / .gitignore
Created October 16, 2025 14:18
Complete production-ready configuration package for PHP quality tools including PHP CS Fixer, PHPStan, Psalm, PHPUnit, and GitHub Actions CI/CD pipeline
# Composer
/vendor/
composer.phar
composer.lock
# IDE
.vscode/
.idea/
*.swp
*.swo
@lukaszzychal
lukaszzychal / ext.txt
Created May 10, 2022 10:11 — forked from chronon/ext.txt
List of docker-php-ext-install extension names
Possible values for ext-name:
bcmath
bz2
calendar
ctype
curl
dba
dom
enchant
@lukaszzychal
lukaszzychal / php-docker-ext
Created February 5, 2022 13:43 — forked from hoandang/php-docker-ext
Complete list of php docker ext
RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite
RUN apt install -y libmcrypt-dev
RUN docker-php-ext-install mcrypt
RUN apt install -y libicu-dev
RUN docker-php-ext-install -j$(nproc) intl
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/