-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small updates - Updated workflows - Updated composer.json
- Loading branch information
1 parent
4840f17
commit 3a6108a
Showing
9 changed files
with
213 additions
and
28 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,14 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "diff", | ||
"pattern": [ | ||
{ | ||
"regexp": "--- a/(.*)", | ||
"file": 1, | ||
"message": 1 | ||
} | ||
] | ||
} | ||
] | ||
} |
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,15 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "php -l", | ||
"pattern": [ | ||
{ | ||
"regexp": "^\\s*(PHP\\s+)?([a-zA-Z\\s]+):\\s+(.*)\\s+in\\s+(\\S+)\\s+on\\s+line\\s+(\\d+)$", | ||
"file": 4, | ||
"line": 5, | ||
"message": 3 | ||
} | ||
] | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Code Style | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.php' | ||
pull_request: | ||
paths: | ||
- '**.php' | ||
|
||
jobs: | ||
php: | ||
name: PHP | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup PHP with tools | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.1' | ||
extensions: json | ||
tools: cs2pr, phpcs, php-cs-fixer | ||
|
||
- name: phpcs | ||
run: phpcs -n -q --report=checkstyle | cs2pr | ||
|
||
- name: php-cs-fixer | ||
run: php-cs-fixer fix --dry-run --diff |
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,121 @@ | ||
<?php | ||
$finder = PhpCsFixer\Finder::create() | ||
->exclude('*/vendor/*') | ||
->exclude('node_modules') | ||
->in(__DIR__); | ||
|
||
return (new PhpCsFixer\Config()) | ||
->setRiskyAllowed(true) | ||
->setRules([ | ||
'@PSR1' => true, | ||
'@PSR2' => true, | ||
'@PSR12' => true, | ||
'@PER' => true, | ||
|
||
'array_push' => true, | ||
'backtick_to_shell_exec' => true, | ||
'no_alias_language_construct_call' => true, | ||
'no_mixed_echo_print' => true, | ||
'pow_to_exponentiation' => true, | ||
'random_api_migration' => true, | ||
|
||
'array_syntax' => ['syntax' => 'short'], | ||
'no_multiline_whitespace_around_double_arrow' => true, | ||
'no_trailing_comma_in_singleline_array' => true, | ||
'no_whitespace_before_comma_in_array' => true, | ||
'normalize_index_brace' => true, | ||
'whitespace_after_comma_in_array' => true, | ||
|
||
'non_printable_character' => ['use_escape_sequences_in_strings' => true], | ||
|
||
'magic_constant_casing' => true, | ||
'magic_method_casing' => true, | ||
'native_function_casing' => true, | ||
'native_function_type_declaration_casing' => true, | ||
|
||
'cast_spaces' => ['space' => 'none'], | ||
'no_unset_cast' => true, | ||
|
||
'class_attributes_separation' => true, | ||
'no_null_property_initialization' => true, | ||
'self_accessor' => true, | ||
'single_class_element_per_statement' => true, | ||
|
||
'no_empty_comment' => true, | ||
'single_line_comment_style' => ['comment_types' => ['hash']], | ||
|
||
'native_constant_invocation' => ['strict' => false], | ||
|
||
'no_alternative_syntax' => true, | ||
'no_trailing_comma_in_list_call' => true, | ||
'no_unneeded_control_parentheses' => ['statements' => ['break', 'clone', 'continue', 'echo_print', 'return', 'switch_case', 'yield', 'yield_from']], | ||
'no_unneeded_curly_braces' => ['namespaces' => true], | ||
'switch_continue_to_break' => true, | ||
'trailing_comma_in_multiline' => ['elements' => ['arrays']], | ||
|
||
'function_typehint_space' => true, | ||
'lambda_not_used_import' => true, | ||
'native_function_invocation' => ['include' => ['@internal']], | ||
'no_unreachable_default_argument_value' => true, | ||
'nullable_type_declaration_for_default_null_value' => true, | ||
'static_lambda' => true, | ||
|
||
'fully_qualified_strict_types' => true, | ||
'no_unused_imports' => true, | ||
|
||
'dir_constant' => true, | ||
'explicit_indirect_variable' => true, | ||
'function_to_constant' => true, | ||
'is_null' => true, | ||
'no_unset_on_property' => true, | ||
|
||
'list_syntax' => ['syntax' => 'short'], | ||
|
||
'clean_namespace' => true, | ||
'no_leading_namespace_whitespace' => true, | ||
|
||
'no_homoglyph_names' => true, | ||
|
||
'binary_operator_spaces' => true, | ||
'concat_space' => ['spacing' => 'one'], | ||
'increment_style' => ['style' => 'post'], | ||
'logical_operators' => true, | ||
'object_operator_without_whitespace' => true, | ||
'operator_linebreak' => true, | ||
'standardize_increment' => true, | ||
'standardize_not_equals' => true, | ||
'ternary_to_elvis_operator' => true, | ||
'ternary_to_null_coalescing' => true, | ||
'unary_operator_spaces' => true, | ||
|
||
'no_useless_return' => true, | ||
'return_assignment' => true, | ||
|
||
'multiline_whitespace_before_semicolons' => true, | ||
'no_empty_statement' => true, | ||
'no_singleline_whitespace_before_semicolons' => true, | ||
'space_after_semicolon' => ['remove_in_empty_for_expressions' => true], | ||
|
||
'escape_implicit_backslashes' => true, | ||
'explicit_string_variable' => true, | ||
'heredoc_to_nowdoc' => true, | ||
'no_binary_string' => true, | ||
'simple_to_complex_string_variable' => true, | ||
|
||
'array_indentation' => true, | ||
'blank_line_before_statement' => ['statements' => ['return', 'exit']], | ||
'method_chaining_indentation' => true, | ||
'no_extra_blank_lines' => ['tokens' => ['case', 'continue', 'curly_brace_block', 'default', 'extra', 'parenthesis_brace_block', 'square_brace_block', 'switch', 'throw', 'use']], | ||
'no_spaces_around_offset' => true, | ||
|
||
// SoftCreatR style | ||
'global_namespace_import' => [ | ||
'import_classes' => true, | ||
'import_constants' => true, | ||
'import_functions' => false, | ||
], | ||
'ordered_imports' => [ | ||
'imports_order' => ['class', 'function', 'const'], | ||
], | ||
]) | ||
->setFinder($finder); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "softcreatr/jsonpath", | ||
"description": "JSONPath implementation for parsing, searching and flattening arrays", | ||
"version": "0.8.1", | ||
"license": "MIT", | ||
"version": "0.8.2", | ||
"authors": [ | ||
{ | ||
"name": "Stephen Frank", | ||
|
@@ -17,22 +17,24 @@ | |
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "[email protected]", | ||
"issues": "https://github.com/SoftCreatR/JSONPath/issues", | ||
"forum": "https://github.com/SoftCreatR/JSONPath/discussions", | ||
"source": "https://github.com/SoftCreatR/JSONPath" | ||
}, | ||
"require": { | ||
"php": ">=8.0", | ||
"ext-json": "*" | ||
}, | ||
"replace": { | ||
"flow/jsonpath": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5", | ||
"roave/security-advisories": "dev-latest", | ||
"squizlabs/php_codesniffer": "^3.7" | ||
"phpunit/phpunit": "^9.6", | ||
"roave/security-advisories": "dev-latest" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist" | ||
"replace": { | ||
"flow/jsonpath": "*" | ||
}, | ||
"minimum-stability": "stable", | ||
"autoload": { | ||
"psr-4": { | ||
"Flow\\JSONPath\\": "src/" | ||
|
@@ -43,16 +45,11 @@ | |
"Flow\\JSONPath\\Test\\": "tests/" | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist" | ||
}, | ||
"scripts": { | ||
"cs-check": "phpcs", | ||
"cs-fix": "phpcbf", | ||
"test": "phpunit" | ||
}, | ||
"support": { | ||
"email": "[email protected]", | ||
"forum": "https://github.com/SoftCreatR/JSONPath/discussions", | ||
"issues": "https://github.com/SoftCreatR/JSONPath/issues", | ||
"source": "https://github.com/SoftCreatR/JSONPath" | ||
} | ||
} |
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