Skip to content

Commit dd8d74c

Browse files
committed
feat!: require PHP 8.2 or higher
BREAKING CHANGE: Drop support for PHP 8.0 and 8.1. All packages now require PHP ^8.2.
1 parent 1ffdce2 commit dd8d74c

11 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php-version: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
11+
php-version: ['8.2', '8.3', '8.4', '8.5']
1212
dependency-version: [prefer-lowest, prefer-stable]
1313
steps:
1414
- name: 'Checkout'
@@ -40,7 +40,7 @@ jobs:
4040

4141
strategy:
4242
matrix:
43-
php-version: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
43+
php-version: ['8.2', '8.3', '8.4', '8.5']
4444
dependency-version: [ prefer-lowest, prefer-stable ]
4545

4646
steps:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Monorepo for Secretary's PHP implementation",
44
"type": "library",
55
"require-dev": {
6-
"php": "^8.0",
6+
"php": "^8.2",
77
"ext-json": "*",
88
"aws/aws-sdk-php": "^3.91",
99
"guzzlehttp/guzzle": "^7.0",

src/Adapter/AWS/SecretsManager/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"minimum-stability": "stable",
1919
"require": {
20-
"php": "^8.0",
20+
"php": "^8.2",
2121
"ext-json": "*",
2222
"aws/aws-sdk-php": "^3.0",
2323
"secretary/core": "self.version"

src/Adapter/Cache/PSR16Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"minimum-stability": "stable",
1919
"require": {
20-
"php": "^8.0",
20+
"php": "^8.2",
2121
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
2222
"secretary/core": "self.version"
2323
},

src/Adapter/Cache/PSR6Cache/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"minimum-stability": "stable",
1919
"require": {
20-
"php": "^8.0",
20+
"php": "^8.2",
2121
"psr/cache": "^1.0 || ^2.0 || ^3.0",
2222
"secretary/core": "self.version"
2323
},

src/Adapter/Chain/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"minimum-stability": "stable",
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^8.2",
2020
"secretary/core": "self.version"
2121
},
2222
"require-dev": {

src/Adapter/GCP/SecretsManager/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"minimum-stability": "stable",
2020
"require": {
21-
"php": "^8.0",
21+
"php": "^8.2",
2222
"ext-json": "*",
2323
"google/cloud-secret-manager": "^1.0",
2424
"secretary/core": "^3.0"

src/Adapter/Hashicorp/Vault/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"minimum-stability": "stable",
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^8.2",
2020
"ext-json": "*",
2121
"guzzlehttp/guzzle": "^7.0",
2222
"symfony/options-resolver": "^5.4 || ^6.0 || ^7.0 || ^8.0"

src/Adapter/Local/JSONFile/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"minimum-stability": "stable",
1818
"require": {
19-
"php": "^8.0",
19+
"php": "^8.2",
2020
"ext-json": "*",
2121
"secretary/core": "self.version"
2222
},

src/Bundle/SecretaryBundle/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"prefer-stable": true,
2020
"minimum-stability": "dev",
2121
"require": {
22-
"php": "^8.0",
22+
"php": "^8.2",
2323
"secretary/core": "self.version"
2424
},
2525
"require-dev": {

0 commit comments

Comments
 (0)