Skip to content

Commit f436559

Browse files
authored
Use PHP 8.4 by default (#12)
1 parent 36cc6c1 commit f436559

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We accept contributions via Pull Requests on [GitHub](https://github.com/stauden
2323
## Running Tests & Static Analysis
2424

2525
```
26-
docker compose run --rm php8.3 composer install
27-
docker compose run --rm php8.3 vendor/bin/phpunit
28-
docker compose run --rm php8.3 vendor/bin/phpstan analyse --memory-limit=-1
26+
docker compose run --rm php8.4 composer install
27+
docker compose run --rm php8.4 vendor/bin/phpunit
28+
docker compose run --rm php8.4 vendor/bin/phpstan analyse --memory-limit=-1
2929
```

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
database: [ mysql, mariadb, pgsql, sqlite, sqlsrv ]
1717
release: [ stable, lowest ]
1818
include:
19-
- php: 8.3
19+
- php: 8.4
2020
release: stable
2121
coverage: true
2222

.github/workflows/static-analysis.yml

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

1313
strategy:
1414
matrix:
15-
php: [ 8.3 ]
15+
php: [ 8.4 ]
1616
release: [ stable ]
1717

1818
steps:

docker-compose.ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@ services:
1515
volumes:
1616
- .:/var/www/html:delegated
1717
- ~/.cache/composer/files:/root/.composer/cache/files
18-
php8.3-xdebug:
19-
image: ghcr.io/staudenmeir/php:8.3
18+
php8.4:
19+
image: ghcr.io/staudenmeir/php:8.4
2020
working_dir: /var/www/html
2121
networks:
2222
- test
2323
volumes:
2424
- .:/var/www/html:delegated
25-
- .docker/xdebug.ci.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
2625
- ~/.cache/composer/files:/root/.composer/cache/files
27-
php8.4:
26+
php8.4-xdebug:
2827
image: ghcr.io/staudenmeir/php:8.4
2928
working_dir: /var/www/html
3029
networks:
3130
- test
3231
volumes:
3332
- .:/var/www/html:delegated
33+
- .docker/xdebug.ci.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
3434
- ~/.cache/composer/files:/root/.composer/cache/files

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ services:
2222
- test
2323
volumes:
2424
- .:/var/www/html:delegated
25-
#- .docker/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
25+
- .docker/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
2626
mysql:
2727
image: 'mysql:latest'
2828
environment:

0 commit comments

Comments
 (0)