Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
staudenmeir committed Mar 9, 2024
1 parent e2f1524 commit 79667db
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [ 8.3, 8.2, 8.1 ]
php: [ 8.3, 8.2 ]
release: [ stable, lowest ]
include:
- php: 8.3
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Expand Up @@ -13,14 +13,14 @@
}
],
"require": {
"php": "^8.1",
"illuminate/database": "^10.0"
"php": "^8.2",
"illuminate/database": "^11.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"orchestra/testbench": "^8.17",
"barryvdh/laravel-ide-helper": "^3.0",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1"
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 0 additions & 6 deletions docker-compose.ci.yml
@@ -1,12 +1,6 @@
version: '3.8'

services:
php8.1:
image: ghcr.io/staudenmeir/php:8.1
working_dir: /var/www/html
volumes:
- .:/var/www/html:delegated
- ~/.cache/composer/files:/root/.composer/cache/files
php8.2:
image: ghcr.io/staudenmeir/php:8.2
working_dir: /var/www/html
Expand Down
6 changes: 0 additions & 6 deletions docker-compose.yml
@@ -1,12 +1,6 @@
version: '3.8'

services:
php8.1:
image: ghcr.io/staudenmeir/php:8.1
working_dir: /var/www/html
volumes:
- .:/var/www/html:delegated
- .docker/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
php8.2:
image: ghcr.io/staudenmeir/php:8.2
working_dir: /var/www/html
Expand Down

0 comments on commit 79667db

Please sign in to comment.