Skip to content

Commit

Permalink
#57 add support for PHP 8.3 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
khalyomede authored Nov 27, 2023
1 parent 5ab78f4 commit 65d59b6
Show file tree
Hide file tree
Showing 6 changed files with 300 additions and 234 deletions.
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

0 comments on commit 65d59b6

Please sign in to comment.