v1.0 Initial commit of project

This commit is contained in:
2026-01-01 10:54:18 +01:00
commit 768cf78b57
990 changed files with 241213 additions and 0 deletions

8
vendor/bacon/bacon-qr-code/Dockerfile vendored Normal file
View File

@@ -0,0 +1,8 @@
FROM php:8.1-cli
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
RUN apt-get update && apt-get install -y libmagickwand-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN pecl install imagick && docker-php-ext-enable imagick
RUN alias composer='php /usr/bin/composer'
WORKDIR /app