]> jfr.im git - uguu.git/blame - php_cs.dist
Update uguu.css
[uguu.git] / php_cs.dist
CommitLineData
1f745d39
GJ
1<?php
2/*
3 * Uguu
4 *
5 * @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
6 *
7 * Note that this was previously distributed under the MIT license 2015-2022.
8 *
9 * If you are a company that wants to use Uguu I urge you to contact me to
10 * solve any potential license issues rather then using pre-2022 code.
11 *
12 * A special thanks goes out to the open source community around the world
13 * for supporting and being the backbone of projects like Uguu.
14 *
15 * This project can be found at <https://github.com/nokonoko/Uguu>.
16 *
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <https://www.gnu.org/licenses/>.
29 */
30
31$finder = (new PhpCsFixer\Finder())
32 ->in(__DIR__)
33 ->exclude([
34 'dist',
35 'build',
36 'node_modules'
37 ])
38;
39
40return (new PhpCsFixer\Config())
41 ->setRules([
42 '@PSR12' => true,
43 'strict_param' => true,
44 ])
45 ->setFinder($finder)
46;