Skip to content

Commit ad3391b

Browse files
committedAug 8, 2023
Add xdebug recursion nesting level fix
1 parent 2f121b4 commit ad3391b

File tree

75 files changed

+92
-781
lines changed

Some content is hidden

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

75 files changed

+92
-781
lines changed
 

‎composer.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
}
1919
],
2020
"require": {
21-
"php": ">=7.4",
21+
"php": "^7.4|^8.0",
2222
"ffi/preprocessor-contracts": "^1.0",
2323
"psr/log": "^1.0|^2.0|^3.0",
24-
"phplrt/parser": "^3.1",
25-
"phplrt/lexer": "^3.1",
26-
"symfony/polyfill-php80": "^1.24",
27-
"symfony/polyfill-ctype": "^1.24"
24+
"phplrt/parser": "^3.2",
25+
"phplrt/lexer": "^3.2",
26+
"symfony/polyfill-php80": "^1.27",
27+
"symfony/polyfill-ctype": "^1.27"
2828
},
2929
"autoload": {
3030
"psr-4": {
@@ -33,11 +33,11 @@
3333
},
3434
"require-dev": {
3535
"jetbrains/phpstorm-attributes": "^1.0",
36-
"phpunit/phpunit": "^9.5",
37-
"monolog/monolog": "^2.3",
38-
"phplrt/phplrt": "^3.1",
39-
"vimeo/psalm": "^4.21",
40-
"squizlabs/php_codesniffer": "^3.6"
36+
"phpunit/phpunit": "^9.6",
37+
"monolog/monolog": "^2.9|^3.0",
38+
"phplrt/phplrt": "^3.2",
39+
"vimeo/psalm": "^5.14",
40+
"squizlabs/php_codesniffer": "^3.7"
4141
},
4242
"autoload-dev": {
4343
"psr-4": {

‎psalm.xml

+7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
<?xml version="1.0"?>
22
<psalm
33
errorLevel="1"
4+
resolveFromConfigFile="true"
5+
findUnusedCode="false"
6+
findUnusedBaselineEntry="true"
7+
findUnusedPsalmSuppress="true"
8+
cacheDirectory="vendor/.psalm.cache"
49
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
510
xmlns="https://getpsalm.org/schema/config"
611
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
712
>
813
<projectFiles>
914
<directory name="src" />
15+
1016
<ignoreFiles>
17+
<!-- vendor -->
1118
<directory name="vendor" />
1219
</ignoreFiles>
1320
</projectFiles>

0 commit comments

Comments
 (0)