|
40 | 40 | "minimum-stability": "stable", |
41 | 41 | "extra": { |
42 | 42 | "branch-alias": { |
43 | | - "dev-master": "5.x-dev" |
| 43 | + "dev-master": "6.x-dev" |
44 | 44 | } |
45 | 45 | }, |
46 | 46 | "require": { |
47 | | - "php": ">=7.4", |
| 47 | + "php": ">=8.2", |
48 | 48 | "ext-json": "*", |
49 | 49 | "nikic/php-parser": "^4.19 || ^5.0", |
50 | 50 | "phpstan/phpdoc-parser": "^2.0", |
51 | 51 | "psr/log": "^1.1 || ^2.0 || ^3.0", |
| 52 | + "radebatz/type-info-extras": "^1.0.2", |
52 | 53 | "symfony/deprecation-contracts": "^2 || ^3", |
53 | 54 | "symfony/finder": "^5.0 || ^6.0 || ^7.0", |
54 | 55 | "symfony/yaml": "^5.4 || ^6.0 || ^7.0" |
|
73 | 74 | "doctrine/annotations": "^2.0", |
74 | 75 | "friendsofphp/php-cs-fixer": "^3.62.0", |
75 | 76 | "phpstan/phpstan": "^1.6 || ^2.0", |
76 | | - "phpunit/phpunit": "^9.0", |
77 | | - "rector/rector": "^1.0 || ^2.0", |
78 | | - "vimeo/psalm": "^4.30 || ^5.0" |
| 77 | + "phpunit/phpunit": "^10.5", |
| 78 | + "rector/rector": "^1.0 || ^2.0" |
79 | 79 | }, |
80 | 80 | "conflict": { |
81 | 81 | "symfony/process": ">=6, <6.4.14" |
82 | 82 | }, |
83 | 83 | "suggest": { |
84 | | - "radebatz/type-info-extras": "^1.0.2", |
85 | 84 | "doctrine/annotations": "^2.0" |
86 | 85 | }, |
87 | 86 | "scripts-descriptions": { |
88 | 87 | "cs": "Fix all codestyle issues", |
89 | 88 | "rector": "Automatic refactoring", |
90 | 89 | "lint": "Test codestyle", |
91 | 90 | "test": "Run all PHP, codestyle and rector tests", |
92 | | - "analyse": "Run static analysis (phpstan/psalm)", |
| 91 | + "analyse": "Run static analysis (phpstan)", |
93 | 92 | "spectral-examples": "Run spectral lint over all .yaml files in the docs/examples folder", |
94 | 93 | "spectral-scratch": "Run spectral lint over all .yaml files in the tests/Fixtures/Scratch folder", |
95 | 94 | "spectral": "Run all spectral tests", |
|
112 | 111 | "@lint" |
113 | 112 | ], |
114 | 113 | "analyse": [ |
115 | | - "export XDEBUG_MODE=off && phpstan analyse --memory-limit=2G", |
116 | | - "export XDEBUG_MODE=off && psalm --threads=1" |
| 114 | + "export XDEBUG_MODE=off && phpstan analyse --memory-limit=3G" |
117 | 115 | ], |
118 | 116 | "spectral-examples": "for ff in `find docs/examples -name '*.yaml'`; do npm run spectral lint $ff; done", |
119 | 117 | "spectral-scratch": "for ff in `find tests/Fixtures/Scratch -name '*.yaml'`; do npm run spectral lint $ff; done", |
|
0 commit comments