-
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.
- Loading branch information
Showing
9 changed files
with
123 additions
and
116 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 |
---|---|---|
@@ -1,46 +1,5 @@ | ||
# This is a comment. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# @global-owner1 and @global-owner2 will be requested for | ||
# review when someone opens a pull request. | ||
|
||
* @onairmarc | ||
|
||
# *.js @js-owner #This is an inline comment. | ||
|
||
/composer.json @EncoreDigitalGroup/dependency-management | ||
/package.json @EncoreDigitalGroup/dependency-management | ||
|
||
/.github/ @onairmarc | ||
/.github/dependabot.yml @EncoreDigitalGroup/dependency-management | ||
|
||
# The `docs/*` pattern will match files like | ||
# `docs/getting-started.md` but not further nested files like | ||
# `docs/build-app/troubleshooting.md`. | ||
# bdocs/* [email protected] | ||
|
||
# In this example, @octocat owns any file in an apps directory | ||
# anywhere in your repository. | ||
# apps/ @octocat | ||
|
||
# In this example, @doctocat owns any file in the `/docs` | ||
# directory in the root of your repository and any of its | ||
# subdirectories. | ||
# /docs/ @doctocat | ||
|
||
# In this example, any change inside the `/scripts` directory | ||
# will require approval from @doctocat or @octocat. | ||
# /scripts/ @doctocat @octocat | ||
|
||
# In this example, @octocat owns any file in a `/logs` directory such as | ||
# `/build/logs`, `/scripts/logs`, and `/deeply/nested/logs`. Any changes | ||
# in a `/logs` directory will require approval from @octocat. | ||
# **/logs @octocat | ||
|
||
# In this example, @octocat owns any file in the `/apps` | ||
# directory in the root of your repository except for the `/apps/github` | ||
# subdirectory, as its owners are left empty. | ||
# /apps/ @octocat | ||
# /apps/github | ||
/.github/dependabot.yml @EncoreDigitalGroup/dependency-management |
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,16 +1,9 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "composer" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: weekly | ||
day: wednesday | ||
time: "12:00" | ||
timezone: America/Chicago | ||
reviewers: | ||
- "EncoreDigitalGroup/dependency-management" | ||
- package-ecosystem: "composer" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: weekly | ||
day: wednesday | ||
time: "12:00" | ||
timezone: America/Chicago |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,51 +1,51 @@ | ||
{ | ||
"preset": "laravel", | ||
"rules": { | ||
"blank_line_between_import_groups": true, | ||
"class_attributes_separation": { | ||
"elements": { | ||
"const": "none", | ||
"method": "one", | ||
"property": "none", | ||
"trait_import": "none", | ||
"case": "none" | ||
} | ||
}, | ||
"concat_space": { | ||
"spacing": "one" | ||
}, | ||
"explicit_string_variable": true, | ||
"global_namespace_import": { | ||
"import_classes": true, | ||
"import_constants": true, | ||
"import_functions": true | ||
}, | ||
"ordered_imports": { | ||
"sort_algorithm": "alpha" | ||
}, | ||
"php_unit_test_annotation": { | ||
"style": "annotation" | ||
}, | ||
"simple_to_complex_string_variable": true, | ||
"blank_line_after_namespace": true, | ||
"array_push": true, | ||
"cast_spaces": true, | ||
"braces_position": true, | ||
"constant_case": true, | ||
"indentation_type": true, | ||
"line_ending": true, | ||
"linebreak_after_opening_tag": true, | ||
"lowercase_static_reference": true, | ||
"method_argument_space": true, | ||
"no_closing_tag": true, | ||
"no_empty_comment": true, | ||
"no_empty_phpdoc": true, | ||
"no_spaces_after_function_name": true, | ||
"no_useless_return": true, | ||
"no_whitespace_in_blank_line": true, | ||
"new_with_parentheses": true, | ||
"new_with_braces": true, | ||
"not_operator_with_successor_space": false, | ||
"ternary_to_null_coalescing": true | ||
} | ||
"preset": "laravel", | ||
"rules": { | ||
"blank_line_between_import_groups": true, | ||
"class_attributes_separation": { | ||
"elements": { | ||
"const": "none", | ||
"method": "one", | ||
"property": "none", | ||
"trait_import": "none", | ||
"case": "none" | ||
} | ||
}, | ||
"concat_space": { | ||
"spacing": "one" | ||
}, | ||
"explicit_string_variable": true, | ||
"global_namespace_import": { | ||
"import_classes": true, | ||
"import_constants": true, | ||
"import_functions": true | ||
}, | ||
"ordered_imports": { | ||
"sort_algorithm": "alpha" | ||
}, | ||
"php_unit_test_annotation": { | ||
"style": "annotation" | ||
}, | ||
"simple_to_complex_string_variable": true, | ||
"blank_line_after_namespace": true, | ||
"array_push": true, | ||
"cast_spaces": true, | ||
"braces_position": true, | ||
"constant_case": true, | ||
"indentation_type": true, | ||
"line_ending": true, | ||
"linebreak_after_opening_tag": true, | ||
"lowercase_static_reference": true, | ||
"method_argument_space": true, | ||
"no_closing_tag": true, | ||
"no_empty_comment": true, | ||
"no_empty_phpdoc": true, | ||
"no_spaces_after_function_name": true, | ||
"no_useless_return": true, | ||
"no_whitespace_in_blank_line": true, | ||
"new_with_parentheses": true, | ||
"new_with_braces": true, | ||
"not_operator_with_successor_space": false, | ||
"ternary_to_null_coalescing": 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