xref: /plugin/aichat/vendor/mehrab-wj/tiktoken-php/.php-cs-fixer.dist.php (revision 8817535b0c67f8b10e9b8c05dcdf58fc17827423)
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