Skip to content

Commit

Permalink
Give the project some initial shape and add some test files.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Feb 26, 2018
1 parent 854fa14 commit 5a20310
Show file tree
Hide file tree
Showing 259 changed files with 7,789 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .bettercodehub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
component_depth: 1
languages:
- php
exclude:
- /docs/.*
- /docs/src/.*
3 changes: 3 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
service_name: travis-ci
coverage_clover: tests/report/clover.xml
json_path: tests/report/coveralls-upload.json
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.dockerignore
.DS_Store
.editorconfig
.git*
19 changes: 19 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8

# 4 space indentation
[*.{php,xml,yml,json,dist}]
indent_style = space
indent_size = 4

# Tab indentation (no size specified)
[Makefile]
indent_style = tab
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.php_cs.cache
.phpintel/
bin/
docs/_build/
docs/_cache/
reports/
sandbox.php
tests/report/
vendor/
Loading

0 comments on commit 5a20310

Please sign in to comment.