Skip to content

Commit

Permalink
Upgrade pomo/pomo to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
J0WI committed Jan 8, 2019
1 parent 0770188 commit bd3ea1a
Show file tree
Hide file tree
Showing 58 changed files with 3,936 additions and 1,356 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"ozh/bookmarkletgen": "1.2",
"ozh/phpass": "1.2.0",
"rmccue/Requests" : "1.7",
"pomo/pomo" : "1.3.0",
"pomo/pomo" : "1.4.1",
"geoip2/geoip2" : "2.5.0",
"aura/sql": "~2.",
"jakeasmith/http_build_url": "1.0.1",
Expand Down
80 changes: 40 additions & 40 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions includes/vendor/aura/sql/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/composer.lock
/vendor
10 changes: 10 additions & 0 deletions includes/vendor/aura/sql/.scrutinizer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
filter:
paths: ["src/*"]
tools:
external_code_coverage: true
php_code_coverage: true
php_sim: true
php_mess_detector: true
php_pdepend: true
php_analyzer: true
php_cpd: true
40 changes: 40 additions & 0 deletions includes/vendor/aura/sql/.travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
language: php
sudo: false

matrix:
include:
- os: linux
dist: precise
php: 5.3
- os: linux
dist: precise
php: 5.4
- os: linux
dist: precise
php: 5.5
- os: linux
dist: precise
php: 5.6
env:
- TEST_COVERAGE=true
- os: linux
dist: trusty
php: 7
- os: linux
dist: trusty
php: 7.1
- os: linux
dist: trusty
php: 7.2
- os: linux
dist: trusty
php: nightly

before_script:
- composer self-update
- composer install
script:
- if [[ $TEST_COVERAGE == 'true' ]]; then vendor/bin/phpunit --coverage-clover=coverage.clover ; else vendor/bin/phpunit ; fi
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [[ $TEST_COVERAGE == 'true' ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover ; fi
Loading

0 comments on commit bd3ea1a

Please sign in to comment.