diff --git a/.travis.yml b/.travis.yml index 7fc36a0..70a6fed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,11 +6,11 @@ php: - 5.5 - 5.6 - hhvm + - hhvm-nightly matrix: allow_failures: - - php: 5.6 - - php: hhvm + - php: hhvm-nightly install: - composer install diff --git a/FUNDING.yml b/FUNDING.yml new file mode 100644 index 0000000..9396c28 --- /dev/null +++ b/FUNDING.yml @@ -0,0 +1 @@ +github: joshtronic diff --git a/composer.json b/composer.json index a0b6730..148b173 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "authors": [{ "name": "Josh Sherman", "email": "josh@gravityblvd.com", - "homepage": "https://github.com/joshtronic/php-googleplaces" + "homepage": "http://joshtronic.com" }], "require": { "php": ">=5.3.0" diff --git a/tests/GooglePlacesTest.php b/tests/GooglePlacesTest.php index 7393ada..2d0b401 100644 --- a/tests/GooglePlacesTest.php +++ b/tests/GooglePlacesTest.php @@ -352,12 +352,12 @@ class GooglePlacesTest extends PHPUnit_Framework_TestCase /** * @expectedException Exception - * @expectedExceptionMessage CURL Error: Could not resolve host: bar + * @expectedExceptionMessage CURL Error: Protocol yatp not supported or disabled in libcurl */ public function testClientError() { $client = new joshtronic\GooglePlacesClient(); - $client->get('http://foo@bar:google.com'); + $client->get('yatp://foo@bar'); } }