Skip to content

Commit

Permalink
pull changes from parent
Browse files Browse the repository at this point in the history
  • Loading branch information
LonnyX committed Mar 31, 2019
2 parents 46ec373 + 3ea849b commit f98087b
Show file tree
Hide file tree
Showing 65 changed files with 920 additions and 3,678 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
* text=auto

/docker export-ignore
/tests export-ignore
.codecov.yml export-ignore
.editorconfig export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.styleci.yml export-ignore
_config.yml export-ignore
phpunit.xml export-ignore
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: 🐛 Bug report
about: Report a bug related to scout-elastic-driver. Please ensure you are using the latest version.

---

<!--
Please fill up this template in order to help us to reproduce,
investigate and possibly fix your bug report. Issues that doesn't
follow this template will be closed.
-->

**Versions**

- scout-elastic-driver: #.#.#
- laravel/framwork: #.#.#
- php: #.#.#
- elasticsearch: #.#.#

**Description**

<!-- Describe the bug you are reporting. Try to do your best here -->

**Steps to reproduce**

<!--
Describe the steps to reproduce the bug. Remember that if we can't reproduce,
we will not be able to fix the issue. So this step is also very important.
-->
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 💡 Feature request
about: Ask for features.

---

<!--
Please fill up this template in order to help us to understand
your feature request.
-->

**Short Description**

<!-- Describe the feature you are requesting in a few words. Try to do your best here -->

**Use cases**

<!--
Describe some sittuation that this is helpful.
-->
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/help_wanted.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: "🧐 Help question"
about: 'Questions about usage of this package.'

---

<!--
Use this template for questions about this package usage, they will receive the `help wanted`
and `question` tags, and the community can help you here.
Also, if the problem is related to the Elasticsearch itself, eg. index mapping, search rules
and environment setup, please try to search first on the official elasticsearch docs and on
Stack Overflow community:
- https://stackoverflow.com/questions/tagged/elasticsearch
- https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html
If you decide to create your question here, please try do your best to explain your question,
and if possible provide some code samples. When the question is answered, fell free to close
the issue yourself.
-->
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea
vendor
!.gitkeep
!.gitkeep
composer.lock
phpunit.xml
1 change: 1 addition & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
preset: laravel
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ before_script:
- sh ./travis/dependencies_check.sh

script:
- docker-compose -f docker-compose.yml exec php /app/driver/vendor/bin/phpunit -c /app/driver/phpunit.xml
- docker-compose -f docker-compose.yml exec php /app/driver/vendor/bin/phpunit -c /app/driver/phpunit.xml.dist
Loading

0 comments on commit f98087b

Please sign in to comment.