forked from renatofl/flowchart-to-png
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from marcoaraujojunior/develop
Develop
- Loading branch information
Showing
8 changed files
with
1,865 additions
and
29 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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*.swp | ||
*.sw* | ||
vendor/** | ||
tests/coverage/** | ||
/nbproject/** |
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,22 @@ | ||
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints | ||
language: php | ||
|
||
# list any PHP version you want to test against | ||
php: | ||
- 5.6 | ||
# aliased to a recent 7.x version | ||
|
||
# execute any number of scripts before the test run, custom env's are available as variables | ||
before_script: | ||
- travis_retry composer self-update | ||
- travis_retry composer install --no-interaction --prefer-source | ||
# - php -r "copy('.env.example', '.env');" | ||
# - php artisan key:generate | ||
|
||
# omitting "script:" will default to phpunit | ||
# use the $DB env variable to determine the phpunit.xml to use | ||
script: composer coverage | ||
|
||
after_script: | ||
- composer codacy | ||
|
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
Oops, something went wrong.