Skip to content

Commit d890b4a

Browse files
authored
Update PHP version requirements in composer.json (#16)
* Update PHP version requirements in composer.json * Update PHP versions in CI workflow Removed older PHP versions from CI workflow. * Update PHP version requirement to >=7.2.0
1 parent 671dadf commit d890b4a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
operating-system: [ubuntu-latest]
14-
php-versions: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
14+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1515

1616
runs-on: ${{ matrix.operating-system }}
1717

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A collection of global `array_*` functions appending to the native PHP set.
99

1010
## Requirements
1111

12-
- **php**: >=5.3.0
12+
- **php**: >=7.2.0
1313

1414
## Installing
1515

@@ -105,4 +105,4 @@ function array_key_refill(array $array, array $keys [, $fill = array()])
105105

106106
- ***array***
107107

108-
Given a keyed array, fills any missing values.
108+
Given a keyed array, fills any missing values.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
}
2222
],
2323
"require": {
24-
"php" : ">=5.3.0"
24+
"php" : ">=7.2.0"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "~4.8|~9|~11"
27+
"phpunit/phpunit": "~8|~9|~11"
2828
},
2929
"autoload" : {
3030
"files": ["src/array.php"]

0 commit comments

Comments
 (0)