Skip to content

Commit 4d33125

Browse files
committed
Support Laravel 11
1 parent b36dce3 commit 4d33125

File tree

4 files changed

+5
-21
lines changed

4 files changed

+5
-21
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [ 8.3, 8.2, 8.1 ]
11+
php: [ 8.3, 8.2 ]
1212
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv ]
1313
release: [ stable, lowest ]
1414
include:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
}
1010
],
1111
"require": {
12-
"php": "^8.1",
13-
"illuminate/database": "^10.0",
12+
"php": "^8.2",
13+
"illuminate/database": "^11.0",
1414
"staudenmeir/eloquent-param-limit-fix": "^v1.1.1",
15-
"staudenmeir/laravel-adjacency-list": "^1.13.1"
15+
"staudenmeir/laravel-adjacency-list": "^1.20"
1616
},
1717
"require-dev": {
1818
"phpstan/phpstan": "^1.10",
19-
"phpunit/phpunit": "^10.1"
19+
"phpunit/phpunit": "^10.5"
2020
},
2121
"autoload": {
2222
"psr-4": {

docker-compose.ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
version: '3.8'
22

33
services:
4-
php8.1:
5-
image: ghcr.io/staudenmeir/php:8.1
6-
working_dir: /var/www/html
7-
networks:
8-
- test
9-
volumes:
10-
- .:/var/www/html:delegated
11-
- ~/.cache/composer/files:/root/.composer/cache/files
124
php8.2:
135
image: ghcr.io/staudenmeir/php:8.2
146
working_dir: /var/www/html

docker-compose.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
version: '3.8'
22

33
services:
4-
php8.1:
5-
image: ghcr.io/staudenmeir/php:8.1
6-
working_dir: /var/www/html
7-
networks:
8-
- test
9-
volumes:
10-
- .:/var/www/html:delegated
11-
- .docker/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
124
php8.2:
135
image: ghcr.io/staudenmeir/php:8.2
146
working_dir: /var/www/html

0 commit comments

Comments
 (0)