Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,8 @@ jobs:
- name: Install dependencies
run: composer update --prefer-dist --no-interaction

- name: Audit dependencies
run: composer audit || true

- name: Running unit tests
run: php vendor/bin/phpunit --configuration tests-resources/phpunit.dist.xml --testsuite unit
9 changes: 1 addition & 8 deletions build/php-7.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:7.1-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-2.9.8 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 1 addition & 8 deletions build/php-7.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:7.2-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-2.9.8 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 1 addition & 8 deletions build/php-7.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:7.3-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-2.9.8 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 1 addition & 8 deletions build/php-7.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:7.4-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-2.9.8 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 1 addition & 8 deletions build/php-8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:8.0-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-3.1.6 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
9 changes: 1 addition & 8 deletions build/php-8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@ FROM php:8.1-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make

RUN pecl install xdebug-3.1.6 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
10 changes: 1 addition & 9 deletions build/php-8.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ FROM php:8.2-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make \
linux-headers

RUN pecl install xdebug-3.2.2 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
10 changes: 1 addition & 9 deletions build/php-8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ FROM php:8.3-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make \
linux-headers

RUN pecl install xdebug-3.3.1 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
10 changes: 1 addition & 9 deletions build/php-8.4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,7 @@ FROM php:8.4-cli-alpine

RUN apk update && \
apk upgrade && \
apk add --no-cache \
autoconf \
g++ \
make \
linux-headers

RUN pecl install xdebug-3.4.4 && \
pecl clear-cache && \
docker-php-ext-enable xdebug
apk add --no-cache make

COPY --from=composer /usr/bin/composer /usr/bin/composer

Expand Down
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
"phpdocumentor/reflection-docblock": "^4.3 || ^5.2.0",
"phpdocumentor/type-resolver": "^0.5 || ^1.3.0",
"guzzlehttp/psr7": "^1 || ^2",
"ext-curl": "*",
"roave/security-advisories": "dev-latest"
"ext-curl": "*"
},
"suggest": {
"ext-curl": "To use Curl HttpClient",
Expand Down
Loading