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
2 changes: 1 addition & 1 deletion .github/workflows/php-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
laravel: [9, 10, 11, 12]
laravel: [11, 12]
php: [8.2, 8.3, 8.4]

steps:
Expand Down
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
ARG PHP_VERSION=8.2
FROM php:$PHP_VERSION-cli-alpine

RUN apk add git zip unzip autoconf make g++
RUN apk add git zip unzip autoconf make g++ libxml2-dev

RUN docker-php-ext-install simplexml

# apparently newer xdebug needs these now?
RUN apk add --update linux-headers
Expand All @@ -21,8 +23,8 @@ USER dev

COPY --chown=dev composer.json ./

ARG LARAVEL=9
RUN composer require laravel/framework ^$LARAVEL.0
ARG LARAVEL=12
RUN composer require --no-interaction "laravel/framework:^${LARAVEL}.0"

COPY --chown=dev . .

Expand Down
Empty file added app/.gitkeep
Empty file.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
},
"require": {
"php": "^8.2",
"laravel/framework": ">=9.0"
"laravel/framework": "^11.0|^12.0"
},
"require-dev": {
"larastan/larastan": "^2.0|^3.0",
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
"orchestra/testbench": "^9.0|^10.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpstan/extension-installer": "^1.4",
"phpunit/phpunit": "^9.0|^10.0|^11.0",
Expand Down Expand Up @@ -79,4 +79,4 @@
"phpstan/extension-installer": true
}
}
}
}
Loading
Loading