Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

57-support-for-php-8-3 #58

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest

Expand Down Expand Up @@ -46,3 +46,30 @@ jobs:

- name: Package version check
run: docker-compose run --rm composer run updates

test_82:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install
run: docker-compose run --rm composer82 install

- name: Test
run: docker-compose run --rm composer82 run test

- name: Static analysis
run: docker-compose run --rm composer82 run analyse

- name: Formatting
run: docker-compose run --rm composer82 run lint

- name: Modern code check
run: docker-compose run --rm composer82 run scan

- name: Package security
run: docker-compose run --rm composer82 run security

- name: Package version check
run: docker-compose run --rm composer82 run updates
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Support for PHP 8.3 ([#57](https://github.com/khalyomede/laravel-translate/issues/57)).

## [0.2.0] - 2023-11-03

### Added
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@
"stillat/blade-parser": "1.*"
},
"require-dev": {
"orchestra/testbench": "8.14.0",
"orchestra/testbench": "8.15.0",
"nunomaduro/collision": "7.10.0",
"rector/rector": "0.18.6",
"rector/rector": "0.18.11",
"driftingly/rector-laravel": "0.26.2",
"phpstan/phpstan": "1.10.40",
"phpstan/phpstan": "1.10.45",
"nunomaduro/larastan": "2.6.4",
"friendsofphp/php-cs-fixer": "3.37.1"
"friendsofphp/php-cs-fixer": "3.40.0"
},
"scripts": {
"test": "testbench package:test",
Expand All @@ -61,4 +61,4 @@
]
}
}
}
}
Loading
Loading