Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ DotNotationParser is a simple parser that will parse `foo.bar.baz` into `[ 'foo'

## Requirements

- **php**: >=7.1
- **php**: >=7.2

## Installing

Expand Down Expand Up @@ -53,4 +53,4 @@ quoted keys.

##### Returns:

- ***string[]***
- ***string[]***
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"description": "Simple PHP Dot Notation Parser",
"type": "library",
"require": {
"php": ">=7.1"
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "~7.5 | ~9.5",
"phpunit/phpunit": "~8.5 | ~9.5",
"squizlabs/php_codesniffer": "^3.5",
"corpus/coding-standard": "~0.6.0",
"friendsofphp/php-cs-fixer": "^2.17"
Expand Down
Loading