Skip to content

Commit 6cbcbbb

Browse files
authored
[Optimization] Update PHP to 8.2 (#60)
* final / non-empty-string * print runtime * add descriptions * final * update php to 8.2 * update php to 8.2 * update deps * readonly * readonly * readonly * readonly * readonly * non-empty-string * up version * up version
1 parent c6fda0f commit 6cbcbbb

File tree

122 files changed

+691
-757
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+691
-757
lines changed

.github/workflows/publish_docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup PHP with PECL extension
1414
uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: '8.1'
16+
php-version: '8.2'
1717
extensions: xdebug
1818

1919
- name: Cache Composer packages

.github/workflows/review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup PHP with PECL extension
2323
uses: shivammathur/setup-php@v2
2424
with:
25-
php-version: '8.1'
25+
php-version: '8.2'
2626
extensions: xdebug
2727

2828
- name: Cache Composer packages

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup PHP with PECL extension
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: '8.1'
20+
php-version: '8.2'
2121
extensions: xdebug
2222

2323
- name: Validate composer.json

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ This file contains changelogs.
66

77
-----------------------------------------------------------------
88

9+
## [v0.17.0 (2023-08-30)](https://github.com/ArtARTs36/php-merge-request-linter/compare/0.16.4..0.17.0)
10+
11+
## Optimized
12+
* Updated PHP to 8.2
13+
* Deleted unless dependency "jetbrains/phpstorm-attributes"
14+
15+
[💾 Assets](https://github.com/ArtARTs36/php-merge-request-linter/releases/tag/0.17.0)
16+
17+
-----------------------------------------------------------------
18+
919
## [v0.16.4 (2023-08-29)](https://github.com/ArtARTs36/php-merge-request-linter/compare/0.16.3..0.16.4)
1020

1121
## Added

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.1-alpine
1+
FROM php:8.2-alpine
22

33
RUN apk add --update git zip gcc libc-dev autoconf make && rm -rf /var/cache/apk/*
44

composer.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,10 @@
66
{
77
"url": "https://github.com/ArtARTs36/docs-retriever",
88
"type": "git"
9-
},
10-
{
11-
"url": "https://github.com/ArtARTs36/php-context-logger",
12-
"type": "git"
139
}
1410
],
1511
"require": {
16-
"php": "^8.1",
12+
"php": "^8.2",
1713
"artarts36/str": "^2.4.1",
1814
"symfony/console": "^4.0 | ^5.0 | ^6.0",
1915
"guzzlehttp/psr7": "^2",
@@ -36,7 +32,6 @@
3632
},
3733
"require-dev": {
3834
"phpunit/phpunit": "^9.5",
39-
"jetbrains/phpstorm-attributes": "^1.0",
4035
"artarts36/php-cs-fixer-good-fixers": "^0.1.2",
4136
"phpstan/phpstan": "^1.10",
4237
"qossmic/deptrac-shim": "^1.0",

0 commit comments

Comments
 (0)