Skip to content

Commit

Permalink
Merge pull request #11 from smoench/php83
Browse files Browse the repository at this point in the history
indicate PHP 8.3 support
  • Loading branch information
smoench authored Dec 1, 2023
2 parents d35c515 + d687eda commit 5c5f004
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:

steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and configure PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: 8.2
php-version: 8.3

- name: Get composer cache directory
id: composer-cache-dir
Expand All @@ -45,13 +45,13 @@ jobs:

steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and configure PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: 8.2
php-version: 8.3

- name: Get composer cache directory
id: composer-cache-dir
Expand Down Expand Up @@ -79,11 +79,11 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ '8.1', '8.2' ]
php-version: [ '8.1', '8.2', '8.3' ]

steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and configure PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -127,13 +127,13 @@ jobs:

steps:
- name: Checkout project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install and configure PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: 8.2
php-version: 8.3

- name: Get composer cache directory
id: composer-cache-dir
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
}
],
"require": {
"php": "8.1.* || 8.2.*",
"php": "8.1.* || 8.2.* || 8.3.*",
"opensearch-project/opensearch-php": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4.1",
"phpstan/phpstan": "1.10.38",
"phpunit/phpunit": "^10.4.2",
"phpstan/phpstan": "1.10.46",
"phpstan/phpstan-phpunit": "1.3.15",
"rector/rector": "^0.18.5",
"symplify/easy-coding-standard": "^12.0.8"
"rector/rector": "^0.18.11",
"symplify/easy-coding-standard": "^12.0.9"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 5c5f004

Please sign in to comment.