From 4381f7a7ba28b01f8e28ca15cba1d3efb31dd6bb Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Fri, 15 May 2026 04:44:26 -0500 Subject: [PATCH 1/3] Update PHP version requirements in composer.json --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3b5abe4..11ed291 100644 --- a/composer.json +++ b/composer.json @@ -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" From 07f1dc1b136b3d8e2d83ec4c9114f6ac972510d1 Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Fri, 15 May 2026 04:45:00 -0500 Subject: [PATCH 2/3] Update PHP versions in CI workflow Removed PHP version 7.1 from the CI workflow. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 405987f..51b50ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} From 335f3f69fdda26d51c97c585766ebd3694396418 Mon Sep 17 00:00:00 2001 From: Jesse Donat Date: Fri, 15 May 2026 04:45:16 -0500 Subject: [PATCH 3/3] Update PHP requirement from 7.1 to 7.2 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43883b9..f1f32ed 100644 --- a/README.md +++ b/README.md @@ -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 @@ -53,4 +53,4 @@ quoted keys. ##### Returns: -- ***string[]*** \ No newline at end of file +- ***string[]***