Skip to content

Commit

Permalink
Added support Laravel 6.0 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
pvsaintpe committed Oct 18, 2019
1 parent 74a6a0d commit 1716c6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ cache:
- $HOME/.composer/cache

before_install:
- wget -q -O - https://www.mongodb.org/static/pgp/server-3.2.pub | sudo apt-key add -
- phpenv config-rm xdebug.ini || true
- |
if [ "x$COVERAGE" == "xyes" ]; then
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "umbrellio/laravel-pg-extensions",
"type": "library",
"description": "Extensions for Postgres Laravel",
"minimum-stability": "stable",
"authors": [
{
Expand All @@ -11,7 +12,7 @@
"require": {
"php": "^7.2",
"doctrine/dbal": "^2.9",
"laravel/framework": "^5.8"
"laravel/framework": "^5.8|^6.0"
},
"require-dev": {
"umbrellio/code-style-php": "^1.0",
Expand Down
1 change: 1 addition & 0 deletions tests/travis/install-postgres-10.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
set -ex

echo "Installing Postgres 10"
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6B05F25D762E3157
sudo service postgresql stop
sudo apt-get remove -q 'postgresql-*'
sudo apt-get update -q
Expand Down

0 comments on commit 1716c6e

Please sign in to comment.