Skip to content

Commit

Permalink
Merge pull request #8 from didoda/dependencies/composer-php-greater-e…
Browse files Browse the repository at this point in the history
…qual-7.4

Composer dependency php >= 7.4
  • Loading branch information
didoda authored Apr 17, 2024
2 parents 125ee0c + c9db4dc commit 12b9fb9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ on:

jobs:
cs:
uses: bedita/github-workflows/.github/workflows/php-cs.yml@v1
uses: bedita/github-workflows/.github/workflows/php-cs.yml@v2
with:
php_versions: '["7.4", "8.1", "8.2"]'
php_versions: '["7.4", "8.1", "8.2", "8.3"]'

stan:
uses: bedita/github-workflows/.github/workflows/php-stan.yml@v1
uses: bedita/github-workflows/.github/workflows/php-stan.yml@v2
with:
php_versions: '["7.4", "8.1", "8.2"]'
php_versions: '["7.4", "8.1", "8.2", "8.3"]'

unit:
name: 'Run unit tests'
Expand All @@ -30,7 +30,7 @@ jobs:

strategy:
matrix:
php-version: [7.4, 8.1, 8.2]
php-version: [7.4, 8.1, 8.2, 8.3]

steps:
- name: 'Checkout current revision'
Expand Down Expand Up @@ -72,8 +72,9 @@ jobs:
filename: 'clover.xml'

- name: 'Export coverage results'
uses: 'codecov/codecov-action@v3'
uses: 'codecov/codecov-action@v4'
with:
token: ${{ secrets.CODECOV_TOKEN }} # Required
files: './clover.xml'
env_vars: PHP_VERSION

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
release-job:
uses: bedita/github-workflows/.github/workflows/release.yml@v1
uses: bedita/github-workflows/.github/workflows/release.yml@v2
with:
main_branch: 'main'
dist_branches: '["main"]'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The recommended way to install composer packages is:
composer require bedita/i18n-deepl
```

Note: php version supported is >= 7.4 and < 8.3.
Note: php version supported is >= 7.4.

## DeepL Translator

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "bedita/i18n-deepl",
"description": "BEdita I18n Deepl plugin supporting PHP >= 7.3 && PHP <= 8.1",
"description": "BEdita I18n Deepl plugin supporting PHP >= 7.4",
"license": "MIT",
"require": {
"php": ">=7.4 <8.3",
"php": ">=7.4",
"bedita/i18n": "^4.4.3",
"cakephp/utility": "^4.4",
"deeplcom/deepl-php": "^1.6",
Expand All @@ -12,7 +12,7 @@
"require-dev": {
"phpunit/phpunit": "^9.3",
"phpstan/phpstan": "^1.10",
"cakephp/cakephp-codesniffer": "^5.1",
"cakephp/cakephp-codesniffer": "~4.7.0",
"cakephp/cakephp": "^4.4"
},
"autoload": {
Expand Down

0 comments on commit 12b9fb9

Please sign in to comment.