-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from viniciusgava/feature/refactory
Client refactory - version 2.0
- Loading branch information
Showing
21 changed files
with
2,726 additions
and
371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/vendor/ | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: php | ||
|
||
php: | ||
- 7.0 | ||
- 7.1 | ||
|
||
before_install: | ||
- composer self-update | ||
- composer clear-cache | ||
|
||
install: | ||
- composer install --prefer-source --no-interaction --dev | ||
|
||
script: | ||
- vendor/bin/phpcs | ||
- vendor/bin/phpunit --coverage-text |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Google Translate API PHP Client | ||
|
||
This project abstract the google translate api versio 2.0 in PHP. | ||
The lib has been refactored to support unit tests, composer, and a better architecture. |
Oops, something went wrong.