Skip to content

Commit 07bb362

Browse files
committed
chore(deps): dependencies 2025-11-24 (generated)
algolia/api-clients-automation#5653 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Algolia Bot <30854082+algolia-bot@users.noreply.github.com>
1 parent 239e2ed commit 07bb362

4 files changed

Lines changed: 494 additions & 482 deletions

File tree

.github/workflows/do-not-edit-this-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Close PR
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: Close PR
2020
env:

.php-cs-fixer.dist.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
use PhpCsFixer\Config;
6+
use PhpCsFixer\Finder;
7+
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
8+
9+
return (new Config())
10+
->setParallelConfig(ParallelConfigFactory::detect())
11+
->setRiskyAllowed(true)
12+
->setRules([
13+
'@PhpCsFixer' => true
14+
])
15+
->setUsingCache(false)
16+
->setFinder(
17+
(new Finder())
18+
->in(__DIR__)
19+
)
20+
;

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
2424
},
2525
"require-dev": {
26-
"friendsofphp/php-cs-fixer": "^3.80.0",
27-
"phpunit/phpunit": "^11.0",
26+
"friendsofphp/php-cs-fixer": "^3.91.3",
27+
"phpunit/phpunit": "^10.0",
2828
"vlucas/phpdotenv": "^5.4",
2929
"phpstan/phpstan": "^1.12"
3030
},

0 commit comments

Comments
 (0)