We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d607f39 commit 08cf657Copy full SHA for 08cf657
Dockerfile82
@@ -0,0 +1,17 @@
1
+FROM php:8.2-cli
2
+
3
+RUN apt-get update && \
4
+ apt-get install -y --no-install-recommends zip libzip-dev libpspell-dev && \
5
+ docker-php-ext-install zip pspell
6
7
+RUN curl --silent --show-error https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
8
9
+RUN mkdir -p /app
10
11
+COPY ./ /app
12
13
+RUN composer --working-dir=/app install
14
15
+RUN cd /app && SKIP_TEST=1 ./vendor/bin/phpunit -d memory_limit=1G
16
17
+CMD ["/bin/sh"]
composer.json
@@ -20,7 +20,7 @@
20
"files": ["tests/TestBaseCase.php"]
21
},
22
"require" : {
23
- "php": "~7.4|~8.0",
+ "php": ">=7.4",
24
"yooper/stop-words": "~1",
25
"symfony/console": ">= 4.4",
26
"wamania/php-stemmer": "~1",
0 commit comments