Skip to content

Commit 86c547d

Browse files
Merge pull request #20 from codenamephp/update/php
Minimal PHP Version is now 8.2
2 parents 94ead95 + 4e7e0be commit 86c547d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
ci:
2020
uses: codenamephp/workflows.php/.github/workflows/ci.yml@1
2121
with:
22-
php-versions: '["8.0", "8.1", "8.2", "8.3"]'
22+
php-versions: '["8.2", "8.3"]'

.idea/php.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^8.0",
13+
"php": "^8.2",
1414
"twig/twig": "^3.0",
1515
"symfony/filesystem": "^6.0"
1616
},
@@ -41,8 +41,8 @@
4141
"phpunit": "XDEBUG_MODE=coverage tools/phpunit.phar -c test/phpunit.dist.xml test/",
4242
"psalm": "XDEBUG_MODE=off tools/psalm --threads=10 --long-progress",
4343
"composer-unused": "XDEBUG_MODE=off tools/composer-unused --no-progress --no-interaction",
44-
"composer-require-checker": "php -r 'exit((int) !(PHP_VERSION_ID >= 80400));' && XDEBUG_MODE=off tools/composer-require-checker --no-interaction || echo 'Skipping composer-require-checker because it needs PHP8.2 or higher'",
45-
"infection": "php -r 'exit((int) !(PHP_VERSION_ID >= 80100));' && XDEBUG_MODE=coverage tools/infection --min-msi=100 --min-covered-msi=100 --threads=4 --no-progress --show-mutations || echo 'Skipping infection because it needs PHP8.1 or higher'",
44+
"composer-require-checker": "XDEBUG_MODE=off tools/composer-require-checker --no-interaction",
45+
"infection": "XDEBUG_MODE=coverage tools/infection --min-msi=100 --min-covered-msi=100 --threads=4 --no-progress --show-mutations",
4646
"phive:update": "XDEBUG_MODE=off phive update && git add tools/* phive.xml && git commit tools/* -m 'Updated phive dependencies'",
4747
"ci-all": [
4848
"composer validate",

0 commit comments

Comments
 (0)