Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
08c811efbe
Add funding. 2020-03-02 21:02:19 -06:00
Josh Sherman
c72e2b06e1 Updated homepage 2014-09-20 15:38:53 -04:00
Josh Sherman
4497b6c0b6 Updated test environments. 2014-09-20 01:57:08 -04:00
Josh Sherman
c4348eeb5d Updated CURL error test 2014-09-20 01:54:41 -04:00
4 changed files with 6 additions and 5 deletions

View file

@ -6,11 +6,11 @@ php:
- 5.5 - 5.5
- 5.6 - 5.6
- hhvm - hhvm
- hhvm-nightly
matrix: matrix:
allow_failures: allow_failures:
- php: 5.6 - php: hhvm-nightly
- php: hhvm
install: install:
- composer install - composer install

1
FUNDING.yml Normal file
View file

@ -0,0 +1 @@
github: joshtronic

View file

@ -9,7 +9,7 @@
"authors": [{ "authors": [{
"name": "Josh Sherman", "name": "Josh Sherman",
"email": "josh@gravityblvd.com", "email": "josh@gravityblvd.com",
"homepage": "https://github.com/joshtronic/php-googleplaces" "homepage": "http://joshtronic.com"
}], }],
"require": { "require": {
"php": ">=5.3.0" "php": ">=5.3.0"

View file

@ -352,12 +352,12 @@ class GooglePlacesTest extends PHPUnit_Framework_TestCase
/** /**
* @expectedException Exception * @expectedException Exception
* @expectedExceptionMessage CURL Error: Could not resolve host: bar * @expectedExceptionMessage CURL Error: Protocol yatp not supported or disabled in libcurl
*/ */
public function testClientError() public function testClientError()
{ {
$client = new joshtronic\GooglePlacesClient(); $client = new joshtronic\GooglePlacesClient();
$client->get('http://foo@bar:google.com'); $client->get('yatp://foo@bar');
} }
} }