Merge branch 'feature-improvements'

This commit is contained in:
Dmitry Khomutov 2017-11-11 19:29:48 +07:00
commit 82e356f0f8
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
6 changed files with 59 additions and 1 deletions

18
.editorconfig Normal file
View file

@ -0,0 +1,18 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
[*.yml]
indent_size = 2
[*.md]
trim_trailing_whitespace = false

View file

@ -27,7 +27,10 @@ before_script:
- if [[ "$TYPE" == "pgsql" ]]; then psql -c 'create database b8_test;' -U postgres; fi
script:
- vendor/bin/phpunit --configuration phpunit.$TYPE.xml --coverage-text
- vendor/bin/phpunit --configuration phpunit.$TYPE.xml --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email:

8
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,8 @@
Contribution Guidelines
=======================
Coding Standards
----------------
The code is written to follow
[PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md) standards.

19
ISSUE_TEMPLATE.md Normal file
View file

@ -0,0 +1,19 @@
Expected behaviour
------------------
*Please describe what you're expecting to see happen.*
Actual behaviour
----------------
*Please describe what you're actually seeing happen.*
Steps to reproduce
------------------
*If your issue requires any specific steps to reproduce, please outline them here.*
Environment info
----------------
*OS, PHP version, MySQL/PostgreSQL version.*

9
PULL_REQUEST_TEMPLATE.md Normal file
View file

@ -0,0 +1,9 @@
Contribution Typ
----------------
*Bug fix, new plugin, feature, ui etc.*
Description of change
---------------------
*Detailed description of change.*

1
VERSION.md Normal file
View file

@ -0,0 +1 @@
0.18.0