Skip to content

Commit

Permalink
re-add php 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
garak committed Dec 10, 2023
1 parent 2f2149d commit 8a701c1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
container: [ "php81", "php82" ]
container: [ "php81", "php82", "php83" ]

runs-on: ubuntu-latest
container: pugx/poser:${{ matrix.container }}
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ composer behat

```bash
docker-compose up --build -d
docker-compose exec php82 composer install
docker-compose exec php82 composer phpspec
docker-compose exec php82 composer behat
docker-compose exec php82 composer php-cs-fixer
docker-compose exec php83 composer install
docker-compose exec php83 composer phpspec
docker-compose exec php83 composer behat
docker-compose exec php83 composer php-cs-fixer
```

or
Expand Down
8 changes: 8 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,11 @@ services:
stdin_open: true
volumes:
- .:/application:cached

php83:
build:
context: .docker/development/php83
working_dir: /application
stdin_open: true
volumes:
- .:/application:cached

0 comments on commit 8a701c1

Please sign in to comment.