408 Star 2.1K Fork 471

GVPyansongda / easyPay

Create your Gitee Account
Explore and code with more than 8 million developers,Free private repositories !:)
Sign up
Clone or Download
.php-cs-fixer.php 809 Bytes
Copy Edit Web IDE Raw Blame History
yansongda authored 2022-11-01 16:15 . styles: fix code styles (#701)
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('tests')
->exclude('vendor')
->in(__DIR__);
return (new PhpCsFixer\Config())
->setUsingCache(false)
->setRules([
'@Symfony' => true,
'class_attributes_separation' => true,
'ordered_class_elements' => true,
'ordered_imports' => ['sort_algorithm' => 'alpha'],
'line_ending' => true,
'single_quote' => true,
'array_syntax' => ['syntax' => 'short'],
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => true,
'import_functions' => null,
],
'general_phpdoc_annotation_remove' => [
'annotations' => [
'author'
],
],
])
->setFinder($finder);
PHP
1
https://gitee.com/yansongda/pay.git
git@gitee.com:yansongda/pay.git
yansongda
pay
easyPay
master

Search