diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 0000000000..846a1bb99d
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,8 @@
+version: 2
+updates:
+- package-ecosystem: composer
+ directory: "/"
+ schedule:
+ interval: daily
+ time: "21:00"
+ open-pull-requests-limit: 10
diff --git a/.github/stale.yml b/.github/stale.yml
new file mode 100644
index 0000000000..dc90e5a1c3
--- /dev/null
+++ b/.github/stale.yml
@@ -0,0 +1,17 @@
+# Number of days of inactivity before an issue becomes stale
+daysUntilStale: 60
+# Number of days of inactivity before a stale issue is closed
+daysUntilClose: 7
+# Issues with these labels will never be considered stale
+exemptLabels:
+ - pinned
+ - security
+# Label to use when marking an issue as stale
+staleLabel: wontfix
+# Comment to post when marking an issue as stale. Set to `false` to disable
+markComment: >
+ This issue has been automatically marked as stale because it has not had
+ recent activity. It will be closed if no further activity occurs. Thank you
+ for your contributions.
+# Comment to post when closing a stale issue. Set to `false` to disable
+closeComment: false
diff --git a/.gitignore b/.gitignore
index 9d4b362308..e4dff10943 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,6 @@ phpunit.phar
composer.phar
composer.lock
*.project
-.idea/
\ No newline at end of file
+.idea/
+.php_cs.cache
+.vscode/
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 5dcb00714f..0bea289fc2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,10 @@
language: php
php:
- - 7
+ - 7.2
+ - 7.3
+ - 7.4
+ - 8.0
matrix:
fast_finish: true
@@ -14,9 +17,9 @@ services:
- mysql
before_script:
- - mysql -e 'create database laravel_admin;'
+ - mysql -e 'create database if not exists laravel_admin_test;'
- travis_retry composer self-update
- travis_retry composer install --no-interaction
script:
- - vendor/bin/phpunit
\ No newline at end of file
+ - composer test
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000000..a9a999ffc7
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,2 @@
+# Changelog
+See https://laravel-admin.org/docs/
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000000..e29c564687
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,67 @@
+# Contribute
+
+## Introduction
+
+First, thank you for considering contributing to laravel-admin! It's people like you that make the open source community such a great community! 😊
+
+We welcome any type of contribution, not only code. You can help with
+- **QA**: file bug reports, the more details you can give the better (e.g. screenshots with the console open)
+- **Marketing**: writing blog posts, howto's, printing stickers, ...
+- **Community**: presenting the project at meetups, organizing a dedicated meetup for the local community, ...
+- **Code**: take a look at the [open issues](issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them.
+- **Money**: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/laravel-admin).
+
+## Your First Contribution
+
+Working on your first Pull Request? You can learn how from this *free* series, [How to Contribute to an Open Source Project on GitHub](https://app.egghead.io/playlists/how-to-contribute-to-an-open-source-project-on-github).
+
+## Submitting code
+
+Any code change should be submitted as a pull request. The description should explain what the code does and give steps to execute it. The pull request should also contain tests.
+
+## Code review process
+
+The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge.
+It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you?
+
+## Financial contributions
+
+We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/laravel-admin).
+Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
+
+## Questions
+
+If you have any questions, create an [issue](issue) (protip: do a quick search first to see if someone else didn't ask the same question before!).
+You can also reach us at hello@laravel-admin.opencollective.com.
+
+## Credits
+
+### Contributors
+
+Thank you to all the people who have already contributed to laravel-admin!
+
+
+
+### Backers
+
+Thank you to all our backers! [[Become a backer](https://opencollective.com/laravel-admin#backer)]
+
+
+
+
+### Sponsors
+
+Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/laravel-admin#sponsor))
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/FUNDING.yml b/FUNDING.yml
new file mode 100644
index 0000000000..667b984853
--- /dev/null
+++ b/FUNDING.yml
@@ -0,0 +1,4 @@
+# These are supported funding model platforms
+
+open_collective: laravel-admin
+custom: http://laravel-admin.org/donate
diff --git a/README.md b/README.md
index 3da55c33d9..ea74e82ec4 100644
--- a/README.md
+++ b/README.md
@@ -1,32 +1,64 @@
-laravel-admin
-=====
-
-[](https://travis-ci.org/z-song/laravel-admin)
-[](https://styleci.io/repos/48796179)
-[](https://scrutinizer-ci.com/g/z-song/laravel-admin/?branch=master)
-[](https://packagist.org/packages/encore/laravel-admin)
-[](https://packagist.org/packages/encore/laravel-admin)
-[](https://github.com/z-song/laravel-admin)
-
-`laravel-admin` is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code.
-
-[Demo](http://laravel-admin.org/demo)
-
-Inspired by [SleepingOwlAdmin](https://github.com/sleeping-owl/admin) and [rapyd-laravel](https://github.com/zofe/rapyd-laravel).
+
+
+
+
+
+
⛵laravel-admin
is administrative interface builder for laravel which can help you build CRUD backends just with few lines of code.
+Documentation | +中文文档 | +Demo | +Demo source code | +Extensions +
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Inspired by SleepingOwlAdmin and rapyd-laravel. +
+ +Sponsor +------------ -[Documentation](http://laravel-admin.org/docs) | [中文文档](http://laravel-admin.org/docs/#/zh/) + +{!! old($column, $value) !!}
+