xref: /plugin/aichat/vendor/mehrab-wj/tiktoken-php/.php-cs-fixer.dist.php (revision b377ce304285b5412c94485f5787a3079515ddd9)
1<?php
2
3$finder = PhpCsFixer\Finder::create()
4    ->in(__DIR__)
5;
6
7return (new PhpCsFixer\Config())
8    ->setRules([
9        '@Symfony' => true,
10        '@PHP81Migration' => true
11    ])
12    ->setFinder($finder)
13;
14