Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated relevant dependencies and tests #24

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Updated the two files
sturkel89 committed Oct 21, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit d336e75767f5166736b62349353181878aa84730
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -24,14 +24,13 @@
"symfony/console": "^5.3||^6||^7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.51.0",
"friendsofphp/php-cs-fixer": "3.64.0",
"guzzlehttp/guzzle": "^7.8.1",
"pear/http_request2": "2.6.0",
"phpmd/phpmd": "2.15.0",
"phpstan/phpstan": "1.10.59",
"phpunit/phpunit": "10.5.11",
"phing/phing": "3.0",
"squizlabs/php_codesniffer": "3.9.0"
"phpstan/phpstan": "1.12.7",
"phpunit/phpunit": "10.5.36",
"phing/phing": "3.0"
sturkel89 marked this conversation as resolved.
Show resolved Hide resolved
},
"autoload": {
"psr-4": {
3 changes: 2 additions & 1 deletion tests/vufind.php-cs-fixer.php
Original file line number Diff line number Diff line change
@@ -76,4 +76,5 @@
return $config->setCacheFile($cacheDir . '/.code.cache')
->setRiskyAllowed(true)
->setRules($rules)
->setFinder($finder);
->setFinder($finder)
->setParallelConfig(\PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect());