Skip to content

Commit

Permalink
Update PHP version and composer dependencies
Browse files Browse the repository at this point in the history
The PHP version for different GitHub workflows is updated to 8.2 for better stability and performance. Composer dependencies, including qossmic/deptrac-shim, friendsofphp/php-cs-fixer, and nikic/php-parser, have also been updated to the latest compatible versions, ensuring smoother integration within the project.
  • Loading branch information
kpeu3u committed Dec 11, 2023
1 parent aecaf16 commit cc7b0f8
Show file tree
Hide file tree
Showing 10 changed files with 907 additions and 800 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deduplicate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.2'
tools: phpcpd
extensions: dom, mbstring

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/inspect.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
tools: phive
extensions: intl, json, mbstring, xml
coverage: none
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2']

steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"codeigniter4/framework": "^4.2",
"codeigniter4/framework": "^4.4",
"components/font-awesome": "^6.2",
"codeigniter4/shield": "dev-develop",
"roave/security-advisories": "dev-latest",
Expand All @@ -27,7 +27,7 @@
"phpstan/phpstan": "^1.1",
"phpunit/phpunit": "^9.1",
"psr/container": "^1.0",
"qossmic/deptrac-shim": "^0.24.0"
"qossmic/deptrac-shim": "^1.0.2"
},
"suggest": {
"ext-fileinfo": "Improves mime type detection for files"
Expand Down
1,144 changes: 426 additions & 718 deletions composer.lock

Large diffs are not rendered by default.

Loading

0 comments on commit cc7b0f8

Please sign in to comment.