Skip to content

Commit ebc6e43

Browse files
authored
Merge pull request #15 from sirn-se/http-support
Adding support for http(s) connections.
2 parents 0e368ae + 7ff53df commit ebc6e43

File tree

7 files changed

+400
-231
lines changed

7 files changed

+400
-231
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
language: php
22

33
php:
4+
- 5.6
45
- 5.5
56
- 5.4
67
- 5.3
78

89
script:
9-
- make test
10+
- make update test
1011

1112
after_script:
1213
- php vendor/bin/coveralls -v

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
install: composer.phar
22
./composer.phar install
33

4-
update:
4+
update: composer.phar
55
./composer.phar update
66

77
test: vendor/bin/phpunit build

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ in your projects composer.json.
133133
Changelog
134134
---------
135135

136+
0.2.5
137+
138+
* Adding support for http(s) connections (wss as default)
139+
136140
0.2.1
137141

138142
* Using tivoka 3.4.*, avoiding stability-level dev for dependencies.

composer.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,21 @@
66
{
77
"name": "Fredrik Liljegren",
88
"email": "[email protected]"
9+
},
10+
{
11+
"name": "Sören Jensen",
12+
"email": "[email protected]"
913
}
1014
],
1115
"autoload": {
1216
"psr-4": {"Textalk\\WebshopClient\\": "lib"}
1317
},
1418
"require": {
19+
"php": ">=5.3",
1520
"tivoka/tivoka": "3.4.*"
1621
},
1722
"require-dev": {
1823
"phpunit/phpunit": "4.1.*",
19-
"satooshi/php-coveralls": "dev-master"
24+
"satooshi/php-coveralls": "1.0.*"
2025
}
2126
}

0 commit comments

Comments
 (0)