Compare commits
No commits in common. "26abaeb7399ceaa3c41dc1fd1cf26901c8bea282" and "921c1e640144156b6b8198dadf830d5dc3aad197" have entirely different histories.
26abaeb739
...
921c1e6401
3 changed files with 0 additions and 30 deletions
|
|
@ -1,28 +0,0 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use PhpCsFixer\Config;
|
||||
use PhpCsFixer\Finder;
|
||||
|
||||
return (new Config())
|
||||
->setRiskyAllowed(false)
|
||||
->setRules([
|
||||
'@auto' => true
|
||||
])
|
||||
// 💡 by default, Fixer looks for `*.php` files excluding `./vendor/` - here, you can groom this config
|
||||
->setFinder(
|
||||
(new Finder())
|
||||
// 💡 root folder to check
|
||||
->in(__DIR__)
|
||||
// 💡 additional files, eg bin entry file
|
||||
// ->append([__DIR__.'/bin-entry-file'])
|
||||
// 💡 folders to exclude, if any
|
||||
// ->exclude([/* ... */])
|
||||
// 💡 path patterns to exclude, if any
|
||||
// ->notPath([/* ... */])
|
||||
// 💡 extra configs
|
||||
// ->ignoreDotFiles(false) // true by default in v3, false in v4 or future mode
|
||||
// ->ignoreVCS(true) // true by default
|
||||
)
|
||||
;
|
||||
|
|
@ -18,7 +18,6 @@
|
|||
"serve": "php -S localhost:8080 -t public/"
|
||||
},
|
||||
"require": {
|
||||
"php": "8.5.4",
|
||||
"slim/slim": "4.*",
|
||||
"slim/psr7": "^1.8",
|
||||
"php-di/slim-bridge": "^3.4"
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
cypress
|
||||
php85
|
||||
php85Packages.composer
|
||||
php85Packages.php-cs-fixer
|
||||
phpunit
|
||||
];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue