Skip to content

Commit 185995d

Browse files
authored
Merge pull request #45 from jakzal/drop-php-8.0
Drop PHP 8.0 support
2 parents 7ee959e + 66992a7 commit 185995d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build and test
1616
strategy:
1717
matrix:
18-
php: ['8.0', '8.1', '8.2']
18+
php: ['8.1', '8.2']
1919
deps: [high]
2020
include:
2121
- php: '8.2'
@@ -43,7 +43,7 @@ jobs:
4343

4444
- name: Upload the phar
4545
uses: actions/upload-artifact@v1
46-
if: matrix.php == '8.0' && matrix.deps == 'high'
46+
if: matrix.php == '8.1' && matrix.deps == 'high'
4747
with:
4848
name: zalas-phpunit-injector-extension.phar
4949
path: build/zalas-phpunit-injector-extension.phar

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ package: tools/box
8181

8282
cd build/phar && \
8383
composer remove phpunit/phpunit --no-update && \
84-
composer config platform.php 8.0 && \
84+
composer config platform.php 8.1 && \
8585
composer update --no-dev -o -a
8686

8787
tools/box compile
@@ -101,13 +101,13 @@ tools/php-cs-fixer:
101101
curl -Ls http://cs.symfony.com/download/php-cs-fixer-v3.phar -o tools/php-cs-fixer && chmod +x tools/php-cs-fixer
102102

103103
tools/deptrac:
104-
curl -Ls https://github.com/sensiolabs-de/deptrac/releases/download/0.24.0/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac
104+
curl -Ls https://github.com/sensiolabs-de/deptrac/releases/download/1.0.2/deptrac.phar -o tools/deptrac && chmod +x tools/deptrac
105105

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

109109
tools/infection.pubkey:
110-
curl -Ls https://github.com/infection/infection/releases/download/0.26.2/infection.phar.pubkey -o tools/infection.pubkey
110+
curl -Ls https://github.com/infection/infection/releases/download/0.26.16/infection.phar.pubkey -o tools/infection.pubkey
111111

112112
tools/box:
113113
curl -Ls https://github.com/humbug/box/releases/download/3.16.0/box.phar -o tools/box && chmod +x tools/box

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Injects services from a PSR-11 dependency injection container to PHPUnit test cases",
44
"type": "library",
55
"require": {
6-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
6+
"php": "~8.1.0 || ~8.2.0",
77
"phpunit/phpunit": "^9.0",
88
"psr/container": "^1.0 || ^2.0",
99
"zalas/injector": "^2.0"

manifest.xml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
</copyright>
1111

1212
<requires>
13-
<php version="^8.0"/>
13+
<php version="^8.1"/>
1414
</requires>
1515
</phar>

0 commit comments

Comments
 (0)