Skip to content

Commit

Permalink
Merge pull request #7 from darrynten/dev
Browse files Browse the repository at this point in the history
Release v1.0.3
  • Loading branch information
darrynten authored Feb 17, 2017
2 parents 2c71a94 + b4b8715 commit 393190b
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ composer.lock
/vendor/
/bin/
/tests/coverage/
clover.xml
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ before_script:
- travis_retry composer install --prefer-dist --no-interaction

script:
- bin/phpunit
- bin/phpunit --coverage-clover=coverage.xml

after_success:
- bash <(curl -s https://codecov.io/bash)
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ example, only the People, or only the Locations

## Acknowledgements

* Open a PR and put yourself here :)

* [Dmitry Semenov](https://github.com/mxnr) for being such a legend.
* [Bradley Weston](https://github.com/bweston92) for coming out of nowhere.

* Open a PR and put yourself here :)
1 change: 1 addition & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@

<logging>
<log type="coverage-html" target="./tests/coverage" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="clover.xml"/>
</logging>
</phpunit>
2 changes: 2 additions & 0 deletions src/GoogleNaturalLanguage.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
* @category Library
* @package GoogleNaturalLanguagePhp
* @author Darryn Ten <[email protected]>
* @author Dmitry Semenov <[email protected]>
* @author Bradley Weston <[email protected]>
* @license MIT <https://github.com/darrynten/google-natural-language-php/LICENSE>
* @link https://github.com/darrynten/google-natural-language-php
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function testGetSyntax()
if (getenv('DO_LIVE_API_TESTS') == "true") {
$config = [
'projectId' => 'project-id',
'cheapskate' => true,
'cheapskate' => false,
'cache' => true,
];

Expand Down

0 comments on commit 393190b

Please sign in to comment.