Skip to content

Commit

Permalink
Merge pull request #46 from grossmannmartin/php-83
Browse files Browse the repository at this point in the history
Added PHP 8.3 support
  • Loading branch information
jakzal committed Jan 24, 2024
2 parents 6be4d50 + f674f2a commit 7007cc1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
name: Build and test
strategy:
matrix:
php: ['8.1', '8.2']
php: ['8.1', '8.2', '8.3']
deps: [high]
include:
- php: '8.2'
deps: low
- php: '8.3'
deps: low

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ tools/deptrac:
curl -Ls https://github.com/sensiolabs-de/deptrac/releases/download/1.0.2/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac

tools/infection: tools/infection.pubkey
curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar -o tools/infection && chmod +x tools/infection
curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar -o tools/infection && chmod +x tools/infection

tools/infection.pubkey:
curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar.pubkey -o tools/infection.pubkey
curl -Ls https://github.com/infection/infection/releases/download/0.26.21/infection.phar.pubkey -o tools/infection.pubkey

tools/box:
curl -Ls https://github.com/humbug/box/releases/download/3.16.0/box.phar -o tools/box && chmod +x tools/box
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Injects services from a PSR-11 dependency injection container to PHPUnit test cases",
"type": "library",
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"phpunit/phpunit": "^9.0",
"psr/container": "^1.0 || ^2.0",
"zalas/injector": "^2.0"
Expand All @@ -14,7 +14,7 @@
"symfony/http-kernel": "^4.4.12 || ^5.3 || ^6.0",
"zalas/phpunit-globals": "^2.0",
"symfony/framework-bundle": "^4.4.12 || ^5.3 || ^6.0",
"zalas/phpunit-doubles": "^1.5",
"zalas/phpunit-doubles": "^1.9.2",
"phpspec/prophecy": "^1.9",
"phpspec/prophecy-phpunit": "^2.0"
},
Expand Down

0 comments on commit 7007cc1

Please sign in to comment.