diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.md b/.github/ISSUE_TEMPLATE/1_Bug_report.md deleted file mode 100644 index ceb6ac7b..00000000 --- a/.github/ISSUE_TEMPLATE/1_Bug_report.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: "Bug report" -about: "Report something that's broken" ---- - - - - -- Laravel Actions Version: #.#.# -- Laravel/Lumen Version: #.#.# -- PHP Version: #.#.# -- Database: `mysql` / `pgsql` / `etc` -- Database Version: #.#.# - -### Description: - - -### Steps To Reproduce: diff --git a/.github/ISSUE_TEMPLATE/2_Feature_request.md b/.github/ISSUE_TEMPLATE/2_Feature_request.md deleted file mode 100644 index 68c41caa..00000000 --- a/.github/ISSUE_TEMPLATE/2_Feature_request.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -name: "Feature request" -about: "New functionality proposal." ---- - - - - -### Description: diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000..2d6ecf5f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,53 @@ +name: Bug +description: Report a bug or other issue + +labels: '👓 needs review' + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + ⚠️Review existing issues to see whether someone else has already reported your issue. + + - type: textarea + id: environment + attributes: + label: Envoronment + description: | + Tip: Use the `composer info dragon-code/laravel-migration-actions` command to get information for Laravel Lang. + Tip: Use the `php artisan --version` command to get information for Laravel Framework. + Tip: Use the `php -v` command to get information for PHP. + value: | + - Migration Actions Version: + - Laravel Version: + - PHP Version: + - Database Driver & Version: + validations: + required: true + + - type: textarea + id: description + attributes: + label: Issue description + description: | + Be as specific and detailed as possible to help us triaging your issue. Screenshots and/or animations can be very useful in helping to understand the issue you're facing. + + Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. + Tip: You can use https://www.screentogif.com to record animations and videos. + validations: + required: true + + - type: textarea + id: steps + attributes: + label: Steps to reproduce + description: Take some time to try and reproduce the issue, then explain how to do so here. + validations: + required: true + + - type: markdown + attributes: + value: | + ❤️ The Dragon Code? Please consider supporting our collective: https://opencollective.com/dragon-code diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..6b5c4bea --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Laravel issue + url: https://github.com/laravel/framework/issues + about: 'If you have a question about your Laravel implementation, ask it in your Laravel project.' diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 00000000..7411c6da --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,45 @@ +name: Feature Proposal +description: Propose a new feature + +labels: + - '💪 feature request' + +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + + ⚠️Review existing issues to see whether someone else has already reported your issue. + + - type: textarea + id: description + attributes: + label: Feature description + description: | + Think through your proposal and describe it clearly. + + Note that features are only added to the most recent version of Laravel Lang. + validations: + required: true + + - type: textarea + id: environment + attributes: + label: Envoronment + description: | + Tip: Use the `composer info dragon-code/laravel-migration-actions` command to get information for Laravel Lang. + Tip: Use the `php artisan --version` command to get information for your application. + Tip: Use the `php -v` command to get information for PHP. + value: | + - Migration Actions Version: + - Laravel Version: + - PHP Version: + - Database Driver & Version: + validations: + required: false + + - type: markdown + attributes: + value: | + ❤️ The Dragon Code? Please consider supporting our collective: https://opencollective.com/dragon-code diff --git a/.styleci.yml b/.styleci.yml deleted file mode 100644 index cb07b4b1..00000000 --- a/.styleci.yml +++ /dev/null @@ -1,67 +0,0 @@ -preset: psr12 - -risky: true - -enabled: - - align_double_arrow - - align_equals - - align_phpdoc - - alpha_ordered_imports - - binary_operator_spaces - - blank_line_before_continue - - blank_line_before_declare - - blank_line_before_return - - blank_line_before_throw - - blank_line_before_try - - cast_spaces - - combine_consecutive_issets - - const_separation - - dir_constant - - fully_qualified_strict_types - - logical_operators - - method_separation - - no_alias_functions - - no_blank_lines_after_phpdoc - - no_blank_lines_between_traits - - no_empty_comment - - no_empty_phpdoc - - no_extra_block_blank_lines - - no_extra_consecutive_blank_lines - - no_short_bool_cast - - no_trailing_comma_in_singleline_array - - no_unneeded_control_parentheses - - no_unused_imports - - ordered_class_elements - - php_unit_construct - - php_unit_fqcn_annotation - - phpdoc_indent - - phpdoc_inline_tag - - phpdoc_link_to_see - - phpdoc_no_access - - phpdoc_no_empty_return - - phpdoc_no_package - - phpdoc_no_useless_inheritdoc - - phpdoc_order - - phpdoc_property - - phpdoc_return_self_reference - - phpdoc_scalar - - phpdoc_separation - - phpdoc_summary - - phpdoc_to_comment - - phpdoc_trim - - phpdoc_type_to_var - - phpdoc_types - - phpdoc_types_order - - phpdoc_var_without_name - - property_separation - - self_accessor - - short_array_syntax - - short_list_syntax - - single_line_class_definition - - single_line_throw - - single_quote - - space_after_semicolon - - standardize_not_equals - - ternary_to_null_coalescing - - trailing_comma_in_multiline_array - - trim_array_spaces