Skip to content

Commit

Permalink
Merge pull request #39 from WarriorXK/release/1.8.0
Browse files Browse the repository at this point in the history
Release/1.8.0
  • Loading branch information
WarriorXK authored Apr 12, 2017
2 parents 8cf471b + 17f2b8d commit 550c3b4
Show file tree
Hide file tree
Showing 26 changed files with 727 additions and 250 deletions.
4 changes: 4 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ engines:
enabled: false
CleanCode/StaticAccess:
enabled: false
CyclomaticComplexity:
enabled: false
Design/NpathComplexity:
enabled: false
ratings:
paths:
- "**.php.inc"
Expand Down
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = false
63 changes: 63 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,66 @@ composer.lock
vendor/*
.DS_Store
._*

# Created by https://www.gitignore.io/api/phpstorm

### PhpStorm ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff:
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/dictionaries

# Sensitive or high-churn files:
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.xml
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml

# Gradle:
.idea/**/gradle.xml
.idea/**/libraries

# Mongo Explorer plugin:
.idea/**/mongoSettings.xml

## File-based project format:
*.iws

## Plugin-specific files:

# IntelliJ
/out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

### PhpStorm Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721

# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr

# Sonarlint plugin
.idea/sonarlint

# End of https://www.gitignore.io/api/phpstorm
10 changes: 10 additions & 0 deletions .idea/PHPWebSockets.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ disabled:
- no_blank_lines_after_class_opening
- single_class_element_per_statement
- simplified_null_return
- alpha_ordered_imports

finder:
name:
Expand Down
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,24 @@ php:
- '7.0'
- '7.1'
env:
- TESTTYPE=server
- TESTTYPE=client
- TESTTYPE=server BUFFERTPE=memory
- TESTTYPE=server BUFFERTPE=tmpfile
- TESTTYPE=client BUFFERTPE=memory
- TESTTYPE=client BUFFERTPE=tmpfile
before_script:
- sudo apt-get update
- sudo apt-get install python-pip
- sudo -H pip install -U pip wheel
- sudo -H pip install autobahntestsuite
- phpenv config-rm xdebug.ini
script:
- php Tests/runner.php $TESTTYPE
- php Tests/runner.php $TESTTYPE $BUFFERTPE
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
# addons:
# artifacts:
# paths: /tmp/reports/
Loading

0 comments on commit 550c3b4

Please sign in to comment.