-
-
Notifications
You must be signed in to change notification settings - Fork 998
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 #430 from jeremykenedy/laravel-10
Laravel 10
- Loading branch information
Showing
207 changed files
with
55,124 additions
and
65,968 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
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,14 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
extends: ["plugin:vue/vue3-essential", "airbnb-base"], | ||
overrides: [], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
plugins: ["vue"], | ||
rules: {}, | ||
}; |
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,5 +1,11 @@ | ||
* text=auto | ||
*.css linguist-vendored | ||
*.scss linguist-vendored | ||
*.js linguist-vendored | ||
* text=auto eol=lf | ||
|
||
*.blade.php diff=html | ||
*.css diff=css | ||
*.html diff=html | ||
*.md diff=markdown | ||
*.php diff=php | ||
|
||
/.github export-ignore | ||
CHANGELOG.md export-ignore | ||
.styleci.yml export-ignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 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://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
# Enable version updates for npm | ||
- package-ecosystem: "npm" | ||
# Look for `package.json` and `lock` files in the `root` directory | ||
directory: "/" | ||
# Check the npm registry for updates every day (weekdays) | ||
schedule: | ||
interval: "weekly" |
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,125 @@ | ||
# Add 'repo' label to any root file changes | ||
repo: | ||
- "*" | ||
|
||
frontend-core: | ||
- any: ["resources/js/app.js", "resources/js/bootstrap.js"] | ||
|
||
# Add 'frontend` label to any change to *.js files as long as the `app.js` hasn't changed | ||
frontend: | ||
- any: ["resources/js/**/*.js", "resources/css/**/*.css"] | ||
all: ["!resources/js/app.js"] | ||
|
||
backend: | ||
- any: ["app/**/*.php"] | ||
|
||
models: | ||
- any: ["app/Models/**/*.php"] | ||
|
||
notifications: | ||
- any: ["app/Notifications/**/*.php"] | ||
|
||
providers: | ||
- any: ["app/Providers/**/*.php"] | ||
|
||
controllers: | ||
- any: ["app/Http/Controllers/**/*.php"] | ||
|
||
app-middleware: | ||
- any: ["app/Http/Middleware/**/*.php", "app/Http/Kernel.php"] | ||
|
||
commands-and-crons: | ||
- any: ["app/Console/**/*.php"] | ||
|
||
app-requests: | ||
- any: ["app/Http/Requests/**/*.php"] | ||
|
||
app-resource-collections: | ||
- any: ["app/Http/Resources/**/*.php"] | ||
|
||
config: | ||
- any: ["config/**/*.php", ".env.example"] | ||
|
||
database: | ||
- any: ["database/**/*.php"] | ||
|
||
migrations: | ||
- any: ["database/migrations/**/*.php"] | ||
|
||
seeders: | ||
- any: ["database/seeders/**/*.php"] | ||
|
||
core-routing: | ||
- any: ["routes/**/*.php"] | ||
|
||
framework: | ||
- any: ["bootstrap/**/*.php"] | ||
|
||
tests: | ||
- any: ["tests/**/*.php"] | ||
|
||
language: | ||
- any: ["resources/lang/**/*.php"] | ||
|
||
css: | ||
- any: ["resources/css/**/*.css"] | ||
|
||
images: | ||
- any: ["resources/img/**/*.*"] | ||
|
||
storage: | ||
- any: ["storage/**/*.*"] | ||
|
||
workflow: | ||
- any: [".github/**/*.*"] | ||
|
||
build: | ||
- any: ["*.js", "*.yml", "*.json", "*.ts", "*.xml", "*.travis"] | ||
|
||
linting: | ||
- any: | ||
[ | ||
".browserslistrc", | ||
".eslintrc.js", | ||
".editorconfig", | ||
".prettierignore", | ||
"prettierrc.json", | ||
] | ||
|
||
documentation: | ||
- any: ["*.md", "LICENSE", ".example"] | ||
|
||
tailwindcss: | ||
- any: | ||
[ | ||
"tailwindcss-perspective.js", | ||
"tailwind.config.js", | ||
"resources/css/**/*.css", | ||
] | ||
|
||
vite: | ||
- any: ["vite.config.ts", "tsconfig.vite-config.json", "tsconfig.json"] | ||
|
||
vue-components: | ||
- any: ["resources/js/components/**/*.vue"] | ||
|
||
vue-layouts: | ||
- any: ["resources/js/layouts/**/*.vue"] | ||
|
||
vue-routing: | ||
- any: ["resources/js/router/**/*.js"] | ||
|
||
vue-store: | ||
- any: ["resources/js/store/**/*.js"] | ||
|
||
vue-middleware: | ||
- any: ["resources/js/middleware/**/*.js"] | ||
|
||
vue-services: | ||
- any: ["resources/js/services/**/*.js"] | ||
|
||
vue-views: | ||
- any: ["resources/js/views/**/*.vue"] | ||
|
||
vue-admin: | ||
- any: ["resources/js/views/admin/**/*.vue"] |
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,22 @@ | ||
name: Generate changelog | ||
on: | ||
release: | ||
types: [created, edited] | ||
|
||
jobs: | ||
generate-changelog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: BobAnkh/[email protected] | ||
with: | ||
REPO_NAME: "jeremykenedy/laravel-spa" | ||
ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
PATH: "CHANGELOG.md" | ||
COMMIT_MESSAGE: "docs(CHANGELOG): update release notes" | ||
TYPE: "feat:Feature,fix:Bug Fixes,docs:Documentation,refactor:Refactor,perf:Performance Improvements" | ||
REGENERATE_COUNT: -1 | ||
PULL_REQUEST: true | ||
BRANCH: "master" |
Oops, something went wrong.