Skip to content

Commit 5c5f004

Browse files
authored
Merge pull request #11 from smoench/php83
indicate PHP 8.3 support
2 parents d35c515 + d687eda commit 5c5f004

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/test-application.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
steps:
1515
- name: Checkout project
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Install and configure PHP
1919
uses: shivammathur/setup-php@v2
2020
with:
2121
coverage: none
22-
php-version: 8.2
22+
php-version: 8.3
2323

2424
- name: Get composer cache directory
2525
id: composer-cache-dir
@@ -45,13 +45,13 @@ jobs:
4545

4646
steps:
4747
- name: Checkout project
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949

5050
- name: Install and configure PHP
5151
uses: shivammathur/setup-php@v2
5252
with:
5353
coverage: none
54-
php-version: 8.2
54+
php-version: 8.3
5555

5656
- name: Get composer cache directory
5757
id: composer-cache-dir
@@ -79,11 +79,11 @@ jobs:
7979
strategy:
8080
fail-fast: false
8181
matrix:
82-
php-version: [ '8.1', '8.2' ]
82+
php-version: [ '8.1', '8.2', '8.3' ]
8383

8484
steps:
8585
- name: Checkout project
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787

8888
- name: Install and configure PHP
8989
uses: shivammathur/setup-php@v2
@@ -127,13 +127,13 @@ jobs:
127127

128128
steps:
129129
- name: Checkout project
130-
uses: actions/checkout@v3
130+
uses: actions/checkout@v4
131131

132132
- name: Install and configure PHP
133133
uses: shivammathur/setup-php@v2
134134
with:
135135
coverage: none
136-
php-version: 8.2
136+
php-version: 8.3
137137

138138
- name: Get composer cache directory
139139
id: composer-cache-dir

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
}
2020
],
2121
"require": {
22-
"php": "8.1.* || 8.2.*",
22+
"php": "8.1.* || 8.2.* || 8.3.*",
2323
"opensearch-project/opensearch-php": "^1.0 || ^2.0"
2424
},
2525
"require-dev": {
26-
"phpunit/phpunit": "^10.4.1",
27-
"phpstan/phpstan": "1.10.38",
26+
"phpunit/phpunit": "^10.4.2",
27+
"phpstan/phpstan": "1.10.46",
2828
"phpstan/phpstan-phpunit": "1.3.15",
29-
"rector/rector": "^0.18.5",
30-
"symplify/easy-coding-standard": "^12.0.8"
29+
"rector/rector": "^0.18.11",
30+
"symplify/easy-coding-standard": "^12.0.9"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)