File Manager Lite
Dir:
/home/u540325668/domains/mccsociety.org/Composer.error.public_html/vendor/scrivo/highlight.php
Upload
[..]
.php-cs-fixer.dist.php (1.11 KB)
Edit
Rename
Del
AUTHORS.txt (11.84 KB)
Edit
Rename
Del
CONTRIBUTING.md (5.38 KB)
Edit
Rename
Del
Highlight/
Rename
Del
HighlightUtilities/
Rename
Del
LICENSE.md (1.64 KB)
Edit
Rename
Del
README.md (7.84 KB)
Edit
Rename
Del
composer.json (1.68 KB)
Edit
Rename
Del
styles/
Rename
Del
Edit: .php-cs-fixer.dist.php
<?php $finder = PhpCsFixer\Finder::create() ->in('demo') ->in('Highlight') ->in('HighlightUtilities') ->in('test') ->in('tools') ->exclude('lib_dojo') ->exclude('lib_highlight') ; $config = new PhpCsFixer\Config(); return $config ->setRules([ '@PSR1' => true, '@PSR2' => true, '@Symfony' => true, 'array_indentation' => true, 'array_syntax' => ['syntax' => 'long'], 'concat_space' => ['spacing' => 'one'], 'echo_tag_syntax' => ['format' => 'short'], 'no_alias_language_construct_call' => false, 'no_alternative_syntax' => false, 'no_useless_else' => true, 'no_useless_return' => true, 'phpdoc_align' => true, 'phpdoc_order' => true, 'phpdoc_trim_consecutive_blank_line_separation' => true, 'single_quote' => false, 'ternary_to_null_coalescing' => false, 'trailing_comma_in_multiline' => true, 'visibility_required' => false, 'yoda_style' => [ 'equal' => false, 'identical' => false, ], ]) ->setFinder($finder) ;
Simpan