Skip to content

Commit

Permalink
Merge pull request #15 from sirn-se/http-support
Browse files Browse the repository at this point in the history
Adding support for http(s) connections.
  • Loading branch information
sirn-se authored Jul 6, 2016
2 parents 0e368ae + 7ff53df commit ebc6e43
Show file tree
Hide file tree
Showing 7 changed files with 400 additions and 231 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
language: php

php:
- 5.6
- 5.5
- 5.4
- 5.3

script:
- make test
- make update test

after_script:
- php vendor/bin/coveralls -v
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
install: composer.phar
./composer.phar install

update:
update: composer.phar
./composer.phar update

test: vendor/bin/phpunit build
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ in your projects composer.json.
Changelog
---------

0.2.5

* Adding support for http(s) connections (wss as default)

0.2.1

* Using tivoka 3.4.*, avoiding stability-level dev for dependencies.
Expand Down
7 changes: 6 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,21 @@
{
"name": "Fredrik Liljegren",
"email": "[email protected]"
},
{
"name": "Sören Jensen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Textalk\\WebshopClient\\": "lib"}
},
"require": {
"php": ">=5.3",
"tivoka/tivoka": "3.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.1.*",
"satooshi/php-coveralls": "dev-master"
"satooshi/php-coveralls": "1.0.*"
}
}
Loading

0 comments on commit ebc6e43

Please sign in to comment.