We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 9c17922Copy full SHA for 9c17922
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM jakzal/phpqa:alpine
2
+
3
+LABEL maintainer="tolgakaprol@gmail.com"
4
5
+RUN apk --update add wget curl git php php-curl php-openssl php-json php-phar php-dom && rm /var/cache/apk/*
6
7
+RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
8
9
+RUN composer global require "wp-coding-standards/wpcs"
10
11
+RUN phpcs --config-set installed_paths /tools/.composer/vendor/wp-coding-standards/wpcs
12
13
+RUN phpcs --config-set default_standard WordPress-Extra
14
15
+CMD php $TOOLBOX_TARGET_DIR/toolbox list-tools
0 commit comments