File tree Expand file tree Collapse file tree 5 files changed +13
-1
lines changed Expand file tree Collapse file tree 5 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 1111/.phplint-cache
1212/.phplint.cache
1313
14+ # Ignore PHPStan files.
15+ /phpstan.neon
16+
1417# Ignore Docker files
1518/Dockerfile
1619/Dockerfile.tpl
Original file line number Diff line number Diff line change 1818
1919 - name : Run Syntax Checks
2020 run : |
21+ set -ex
2122 if [[ ${{ matrix.php }} == '7.0' ]] || [[ ${{ matrix.php }} == '7.3' ]] ; then
2223 docker run -q --rm -v "$(pwd)/src:/data" -i cytopia/phplint:${{ matrix.php }}
2324 else
Original file line number Diff line number Diff line change 1818/.phplint-cache
1919/.phplint.cache
2020
21+ # Ignore PHPStan files.
22+ /phpstan.neon
23+
2124# Ignore Composer files
2225/composer.lock
2326/composer.phar
Original file line number Diff line number Diff line change 1+ # 1.0.2 (2023-12-12)
2+
3+ ## Changed
4+ - Throw unique exceptions instead of general ones. ( PR #1 by @daniel-glu )
5+
16# 1.0.1 (2019-01-14)
27
38## Added
Original file line number Diff line number Diff line change 11FROM php:%%PHP_VERSION%%-fpm
22
33COPY . /var/www/html
4+ COPY --from=composer:2 /usr/bin/composer /usr/local/bin/
45
56RUN \
67 apt-get update && \
1011 docker-php-ext-install zip && \
1112 yes '' | pecl install apcu && \
1213 docker-php-ext-enable apcu && \
13- curl -sfL http://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
1414 composer update -nq --no-progress
You can’t perform that action at this time.
0 commit comments