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