forked from mnabialek/laravel-eloquent-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mnabialek#6 from mnabialek/changes
Changes
- Loading branch information
Showing
19 changed files
with
187 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
service_name: travis-ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,96 @@ | ||
<?php | ||
|
||
$finder = Symfony\CS\Finder\DefaultFinder::create() | ||
->in([__DIR__ . '/src']); | ||
$rules = [ | ||
'blank_line_after_opening_tag' => true, | ||
'braces' => true, | ||
'concat_space' => ['spacing' => 'one'], | ||
'no_multiline_whitespace_around_double_arrow' => true, | ||
'no_empty_statement' => true, | ||
'elseif' => true, | ||
'encoding' => true, | ||
'single_blank_line_at_eof' => true, | ||
'no_spaces_after_function_name' => true, | ||
'function_declaration' => true, | ||
'include' => true, | ||
'indentation_type' => true, | ||
'no_alias_functions' => true, | ||
'blank_line_after_namespace' => true, | ||
'line_ending' => true, | ||
'no_trailing_comma_in_list_call' => true, | ||
'not_operator_with_successor_space' => true, | ||
'lowercase_constants' => true, | ||
'lowercase_keywords' => true, | ||
'method_argument_space' => true, | ||
'trailing_comma_in_multiline_array' => true, | ||
'no_multiline_whitespace_before_semicolons' => true, | ||
'single_import_per_statement' => true, | ||
'no_leading_namespace_whitespace' => true, | ||
'no_blank_lines_after_class_opening' => true, | ||
'no_blank_lines_after_phpdoc' => true, | ||
'object_operator_without_whitespace' => true, | ||
'no_spaces_inside_parenthesis' => true, | ||
'phpdoc_indent' => true, | ||
'phpdoc_inline_tag' => true, | ||
'phpdoc_no_access' => true, | ||
'phpdoc_no_package' => true, | ||
'phpdoc_scalar' => true, | ||
'phpdoc_summary' => true, | ||
'phpdoc_to_comment' => true, | ||
'phpdoc_trim' => true, | ||
'phpdoc_no_alias_tag' => ['type' => 'var'], | ||
'phpdoc_var_without_name' => true, | ||
'no_leading_import_slash' => true, | ||
'no_extra_consecutive_blank_lines' => ['extra', 'use'], | ||
'blank_line_before_return' => true, | ||
'array_syntax' => ['syntax' => 'short'], | ||
'no_short_echo_tag' => true, | ||
'full_opening_tag' => true, | ||
'no_trailing_comma_in_singleline_array' => true, | ||
'single_blank_line_before_namespace' => true, | ||
'single_line_after_imports' => true, | ||
'single_quote' => true, | ||
'no_singleline_whitespace_before_semicolons' => true, | ||
'cast_spaces' => true, | ||
'standardize_not_equals' => true, | ||
'ternary_operator_spaces' => true, | ||
'no_trailing_whitespace' => true, | ||
'trim_array_spaces' => true, | ||
'binary_operator_spaces' => ['align_equals' => false, 'align_double_arrow' => false], | ||
'unary_operator_spaces' => true, | ||
'no_unused_imports' => true, | ||
'visibility_required' => true, | ||
'no_whitespace_in_blank_line' => true, | ||
'new_with_braces' => true, | ||
'mb_str_functions' => true, | ||
'class_definition' => true, | ||
'combine_consecutive_unsets' => true, | ||
'dir_constant' => true, | ||
'function_typehint_space' => true, | ||
'hash_to_slash_comment' => true, | ||
'is_null' => true, | ||
'lowercase_cast' => true, | ||
'method_separation' => true, | ||
'modernize_types_casting' => true, | ||
'no_php4_constructor' => true, | ||
'no_short_bool_cast' => true, | ||
'no_useless_else' => true, | ||
'non_printable_character' => true, | ||
'normalize_index_brace' => true, | ||
'ordered_class_elements' => true, | ||
'phpdoc_no_useless_inheritdoc' => true, | ||
'pow_to_exponentiation' => true, | ||
'psr4' => true, | ||
'short_scalar_cast' => true, | ||
]; | ||
|
||
return Symfony\CS\Config\Config::create() | ||
->level(Symfony\CS\FixerInterface::PSR2_LEVEL) | ||
->fixers([ | ||
'short_array_syntax', | ||
'duplicate_semicolon', | ||
'return', | ||
'single_quote', | ||
'standardize_not_equal', | ||
'new_with_braces', | ||
'multiline_array_trailing_comma', | ||
'phpdoc_scalar', | ||
'remove_leading_slash_use', | ||
'blankline_after_open_tag', | ||
'single_blank_line_before_namespace', | ||
'trailing_spaces', | ||
'-psr0', | ||
]) | ||
->setUsingCache(true) | ||
->finder($finder); | ||
$finder = PhpCsFixer\Finder::create() | ||
->in([ | ||
__DIR__ . '/src', | ||
__DIR__ . '/tests', | ||
]); | ||
|
||
return PhpCsFixer\Config::create() | ||
->setRules($rules) | ||
->setFinder($finder) | ||
->setRiskyAllowed(true) | ||
->setUsingCache(true); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
preset: laravel | ||
|
||
enabled: | ||
- concat_with_spaces | ||
|
||
disabled: | ||
- phpdoc_summary | ||
- unary_operator_spaces | ||
- cast_spaces | ||
- concat_without_spaces | ||
- not_operator_with_successor_space |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: php | ||
php: | ||
- 7.0 | ||
- 7.1 | ||
|
||
# Commands to be run before your environment runs. | ||
before_script: | ||
- composer self-update | ||
- composer install --no-interaction | ||
|
||
script: | ||
- mkdir -p build/logs | ||
- phpunit --coverage-clover build/logs/clover.xml | ||
|
||
after_script: | ||
- php vendor/bin/coveralls -v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.