-
Notifications
You must be signed in to change notification settings - Fork 5
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 #6 from kblais/add-github-workflows
Bump minimum PHP and Laravel versions, and run tests with Github Action
- Loading branch information
Showing
14 changed files
with
279 additions
and
47 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,23 @@ | ||
name: Check & fix styling | ||
|
||
on: [push] | ||
|
||
jobs: | ||
php-cs-fixer: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- name: Run PHP CS Fixer | ||
uses: docker://oskarstark/php-cs-fixer-ga | ||
with: | ||
args: --config=.php_cs.dist --allow-risky=yes | ||
|
||
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Fix styling |
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,52 @@ | ||
name: Tests | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
php: [8.0, 7.4, 7.3, 7.2] | ||
laravel: [8.*, 7.*, 6.*] | ||
stability: [prefer-lowest, prefer-stable] | ||
include: | ||
- laravel: 8.* | ||
testbench: 6.* | ||
- laravel: 7.* | ||
testbench: 5.* | ||
- laravel: 6.* | ||
testbench: 4.* | ||
exclude: | ||
- laravel: 6.* | ||
php: 8.0 | ||
- laravel: 8.* | ||
php: 7.2 | ||
|
||
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | ||
coverage: none | ||
|
||
- name: Setup problem matchers | ||
run: | | ||
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
- name: Install dependencies | ||
run: | | ||
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | ||
composer update --${{ matrix.stability }} --prefer-dist --no-interaction | ||
- name: Execute tests | ||
run: vendor/bin/phpunit |
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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
composer.lock | ||
|
||
.phpunit.result.cache | ||
.php_cs.cache |
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,182 @@ | ||
<?php | ||
/* | ||
* This document has been generated with | ||
* https://mlocati.github.io/php-cs-fixer-configurator/?version=2.14#configurator | ||
* you can change this configuration by importing this file. | ||
*/ | ||
|
||
return PhpCsFixer\Config::create() | ||
->setRiskyAllowed(true) | ||
->setRules([ | ||
'align_multiline_comment' => true, | ||
'array_indentation' => true, | ||
'array_syntax' => ['syntax' => 'short'], | ||
'binary_operator_spaces' => true, | ||
'blank_line_after_namespace' => true, | ||
'blank_line_after_opening_tag' => true, | ||
'blank_line_before_statement' => true, | ||
'braces' => true, | ||
'cast_spaces' => true, | ||
'class_attributes_separation' => ['elements' => ['method']], | ||
'class_definition' => true, | ||
'combine_consecutive_issets' => true, | ||
'combine_consecutive_unsets' => true, | ||
'comment_to_phpdoc' => true, | ||
'compact_nullable_typehint' => true, | ||
'concat_space' => ['spacing' => 'none'], | ||
'declare_equal_normalize' => true, | ||
'dir_constant' => true, | ||
'elseif' => true, | ||
'encoding' => true, | ||
'ereg_to_preg' => true, | ||
'error_suppression' => true, | ||
'escape_implicit_backslashes' => true, | ||
'explicit_indirect_variable' => true, | ||
'explicit_string_variable' => true, | ||
'final_internal_class' => true, | ||
'fopen_flag_order' => true, | ||
'fopen_flags' => ['b_mode' => false], | ||
'full_opening_tag' => true, | ||
'fully_qualified_strict_types' => true, | ||
'function_declaration' => true, | ||
'function_to_constant' => ['functions' => ['get_called_class', 'get_class', 'php_sapi_name', 'phpversion', 'pi']], | ||
'function_typehint_space' => true, | ||
'heredoc_to_nowdoc' => true, | ||
'implode_call' => true, | ||
'include' => true, | ||
'increment_style' => true, | ||
'indentation_type' => true, | ||
'is_null' => true, | ||
'line_ending' => true, | ||
'logical_operators' => true, | ||
'lowercase_cast' => true, | ||
'lowercase_constants' => true, | ||
'lowercase_keywords' => true, | ||
'lowercase_static_reference' => true, | ||
'magic_constant_casing' => true, | ||
'magic_method_casing' => true, | ||
'method_argument_space' => ['on_multiline' => 'ensure_fully_multiline'], | ||
'method_chaining_indentation' => true, | ||
'modernize_types_casting' => true, | ||
'multiline_comment_opening_closing' => true, | ||
'multiline_whitespace_before_semicolons' => ['strategy' => 'new_line_for_chained_calls'], | ||
'native_constant_invocation' => ['fix_built_in' => false, 'include' => ['DIRECTORY_SEPARATOR', 'PHP_SAPI', 'PHP_VERSION_ID'], 'scope' => 'namespaced'], | ||
'native_function_casing' => true, | ||
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced', 'strict' => true], | ||
'new_with_braces' => true, | ||
'no_alias_functions' => true, | ||
'no_alternative_syntax' => true, | ||
'no_binary_string' => true, | ||
'no_blank_lines_after_class_opening' => true, | ||
'no_blank_lines_after_phpdoc' => true, | ||
'no_break_comment' => true, | ||
'no_closing_tag' => true, | ||
'no_empty_comment' => true, | ||
'no_empty_phpdoc' => true, | ||
'no_empty_statement' => true, | ||
'no_extra_blank_lines' => ['tokens' => ['break', 'continue', 'curly_brace_block', 'extra', 'parenthesis_brace_block', 'return', 'square_brace_block', 'throw', 'use']], | ||
'no_homoglyph_names' => true, | ||
'no_leading_import_slash' => true, | ||
'no_leading_namespace_whitespace' => true, | ||
'no_mixed_echo_print' => ['use' => 'echo'], | ||
'no_multiline_whitespace_around_double_arrow' => true, | ||
'no_null_property_initialization' => true, | ||
'no_short_bool_cast' => true, | ||
'no_short_echo_tag' => true, | ||
'no_singleline_whitespace_before_semicolons' => true, | ||
'no_spaces_after_function_name' => true, | ||
'no_spaces_around_offset' => true, | ||
'no_spaces_inside_parenthesis' => true, | ||
'no_superfluous_elseif' => true, | ||
'no_trailing_comma_in_list_call' => true, | ||
'no_trailing_comma_in_singleline_array' => true, | ||
'no_trailing_whitespace' => true, | ||
'no_trailing_whitespace_in_comment' => true, | ||
'no_unneeded_control_parentheses' => true, | ||
'no_unneeded_curly_braces' => true, | ||
'no_unneeded_final_method' => true, | ||
'no_unreachable_default_argument_value' => true, | ||
'no_unset_cast' => true, | ||
'no_unset_on_property' => true, | ||
'no_unused_imports' => true, | ||
'no_useless_else' => true, | ||
'no_useless_return' => true, | ||
'no_whitespace_before_comma_in_array' => true, | ||
'no_whitespace_in_blank_line' => true, | ||
'non_printable_character' => ['use_escape_sequences_in_strings' => false], | ||
'normalize_index_brace' => true, | ||
'object_operator_without_whitespace' => true, | ||
'ordered_class_elements' => true, | ||
'ordered_imports' => true, | ||
'php_unit_construct' => true, | ||
'php_unit_fqcn_annotation' => true, | ||
'php_unit_internal_class' => true, | ||
'php_unit_method_casing' => true, | ||
'php_unit_ordered_covers' => true, | ||
'php_unit_set_up_tear_down_visibility' => true, | ||
'php_unit_strict' => true, | ||
'php_unit_test_annotation' => true, | ||
'php_unit_test_case_static_method_calls' => ['call_type' => 'this'], | ||
'php_unit_test_class_requires_covers' => true, | ||
'phpdoc_add_missing_param_annotation' => true, | ||
'phpdoc_align' => ['tags' => ['method', 'param', 'property', 'return', 'throws', 'type', 'var']], | ||
'phpdoc_annotation_without_dot' => true, | ||
'phpdoc_indent' => true, | ||
'phpdoc_inline_tag' => true, | ||
'phpdoc_no_access' => true, | ||
'phpdoc_no_alias_tag' => true, | ||
'phpdoc_no_empty_return' => true, | ||
'phpdoc_no_package' => true, | ||
'phpdoc_no_useless_inheritdoc' => true, | ||
'phpdoc_order' => true, | ||
'phpdoc_return_self_reference' => true, | ||
'phpdoc_scalar' => true, | ||
'phpdoc_separation' => true, | ||
'phpdoc_single_line_var_spacing' => true, | ||
'phpdoc_summary' => true, | ||
'phpdoc_to_comment' => true, | ||
'phpdoc_trim' => true, | ||
'phpdoc_trim_consecutive_blank_line_separation' => true, | ||
'phpdoc_types' => true, | ||
'phpdoc_types_order' => true, | ||
'phpdoc_var_annotation_correct_order' => true, | ||
'phpdoc_var_without_name' => true, | ||
'protected_to_private' => true, | ||
'psr4' => true, | ||
'return_assignment' => true, | ||
'return_type_declaration' => true, | ||
'self_accessor' => true, | ||
'semicolon_after_instruction' => true, | ||
'set_type_to_cast' => true, | ||
'short_scalar_cast' => true, | ||
'single_blank_line_at_eof' => true, | ||
'single_blank_line_before_namespace' => true, | ||
'single_class_element_per_statement' => ['elements' => ['property']], | ||
'single_import_per_statement' => true, | ||
'single_line_after_imports' => true, | ||
'single_line_comment_style' => true, | ||
'single_quote' => true, | ||
'space_after_semicolon' => ['remove_in_empty_for_expressions' => true], | ||
'standardize_increment' => true, | ||
'standardize_not_equals' => true, | ||
'strict_comparison' => true, | ||
'strict_param' => true, | ||
'string_line_ending' => true, | ||
'switch_case_semicolon_to_colon' => true, | ||
'switch_case_space' => true, | ||
'ternary_operator_spaces' => true, | ||
'trailing_comma_in_multiline_array' => true, | ||
'trim_array_spaces' => true, | ||
'unary_operator_spaces' => true, | ||
'visibility_required' => true, | ||
'whitespace_after_comma_in_array' => true, | ||
'yoda_style' => true, | ||
]) | ||
->setFinder(PhpCsFixer\Finder::create() | ||
->exclude('vendor') | ||
->exclude('bootstrap/cache') | ||
->exclude('storage') | ||
->exclude('*.blade.php') | ||
->in(__DIR__) | ||
) | ||
; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,13 +2,14 @@ | |
"name": "kblais/laravel-uuid", | ||
"description": "A simple library to use UUIDs as your Eloquent model's primary key.", | ||
"require": { | ||
"php": ">=7.1", | ||
"php": "^7.2|^8.0", | ||
"ramsey/uuid": "^3.4|^4.0", | ||
"illuminate/database": "^5.6|^6.0|^7.0|^8.0" | ||
"illuminate/database": "^6.0|^7.0|^8.0" | ||
}, | ||
"require-dev": { | ||
"orchestra/testbench": "^3.6|^4.0|^5.0|^6.0", | ||
"squizlabs/php_codesniffer": "^3.1" | ||
"orchestra/testbench": "^4.0|^5.0|^6.0", | ||
"mockery/mockery": "^1.3.2", | ||
"friendsofphp/php-cs-fixer": "^2.17" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
@@ -26,5 +27,8 @@ | |
"name": "Killian Blais", | ||
"email": "[email protected]" | ||
} | ||
] | ||
], | ||
"config": { | ||
"sort-packages": 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
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.