Skip to content

Commit 6df9fa0

Browse files
committed
dropping php 8.0
1 parent 7b25712 commit 6df9fa0

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
operating-system: [ubuntu-latest]
16-
php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4', "8.5"]
16+
php-versions: ['8.1', '8.2', '8.3', '8.4', "8.5"]
1717
composer-args: ['', '--prefer-lowest']
1818
runs-on: ${{ matrix.operating-system }}
1919
steps:

.php-cs-fixer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
'array_syntax' => array('syntax' => 'long'),
1717
'concat_space' => array('spacing' => 'one'),
1818
'psr_autoloading' => array('dir' => 'src'),
19+
'short_scalar_cast' => true,
1920
))
2021
->setUsingCache(true)
2122
->setFinder($finder);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": "BSD-3-Clause",
1111
"prefer-stable": true,
1212
"require": {
13-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
13+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
1414
},
1515
"autoload": {
1616
"classmap": [

0 commit comments

Comments
 (0)