Skip to content

Commit 64fd1e2

Browse files
authoredOct 28, 2022
Bump dependencies (#31)
1 parent 7de4181 commit 64fd1e2

File tree

3 files changed

+83
-105
lines changed

3 files changed

+83
-105
lines changed
 

‎.github/workflows/branch-validations.yaml

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
19-
- uses: symfonycorp/security-checker-action@v2
19+
- uses: symfonycorp/security-checker-action@v3
2020

2121
composer:
2222
runs-on: ubuntu-latest
@@ -27,16 +27,19 @@ jobs:
2727
with:
2828
php-version: '8.1'
2929
tools: composer:v2
30+
3031
- name: Composer cache
3132
uses: actions/cache@v2
3233
with:
3334
key: composer-${{ hashFiles('**/composer.lock') }}
3435
path: ${{ github.workspace }}/.cache
36+
3537
- name: Vendor cache
3638
uses: actions/cache@v2
3739
with:
3840
key: vendor-${{ hashFiles('**/composer.lock') }}
3941
path: ${{ github.workspace }}/vendor
42+
4043
- name: Tools cache
4144
uses: actions/cache@v2
4245
with:
@@ -68,16 +71,19 @@ jobs:
6871
with:
6972
php-version: '8.1'
7073
tools: composer:v2
74+
7175
- name: Composer cache
7276
uses: actions/cache@v2
7377
with:
7478
key: composer-${{ hashFiles('**/composer.lock') }}
7579
path: ${{ github.workspace }}/.cache
80+
7681
- name: Vendor cache
7782
uses: actions/cache@v2
7883
with:
7984
key: vendor-${{ hashFiles('**/composer.lock') }}
8085
path: ${{ github.workspace }}/vendor
86+
8187
- name: Tools cache
8288
uses: actions/cache@v2
8389
with:

‎composer.lock

+76-95
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎phpstan.neon.dist

-9
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,9 @@ parameters:
1616
missingCheckedExceptionInThrows: true
1717
tooWideThrowType: true
1818
ignoreErrors:
19-
-
20-
path: src/Dfa/DFA.php
21-
message: '#^Property Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\:\:\$edges \(SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|null\) does not accept SplFixedArray\<mixed\>.$#'
22-
-
23-
path: src/Atn/ParserATNSimulator.php
24-
message: '#^Property Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\:\:\$edges \(SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|null\) does not accept SplFixedArray\<mixed\>.$#'
2519
-
2620
path: src/Atn/ParserATNSimulator.php
2721
message: '#^Property Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\:\:\$edges \(SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|null\) does not accept non\-empty\-array\<int\<0, max\>, Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\.$#'
28-
-
29-
path: src/Atn/LexerATNSimulator.php
30-
message: '#^Property Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\:\:\$edges \(SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|null\) does not accept SplFixedArray\<mixed\>\.$#'
3122
-
3223
path: src/Atn/LexerATNSimulator.php
3324
message: '#^Property Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\:\:\$edges \(SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|null\) does not accept non\-empty\-array\<int\<0, 127\>, Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\|SplFixedArray\<Antlr\\Antlr4\\Runtime\\Dfa\\DFAState\>\.$#'

0 commit comments

Comments
 (0)
Please sign in to comment.