Skip to content
This repository has been archived by the owner on Apr 7, 2021. It is now read-only.

Commit

Permalink
draft support for Laravel 5.8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
austinheap committed Nov 21, 2019
1 parent 9350dcc commit 7ed8757
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -61,13 +61,13 @@ script:
# Packages: Laravel 5.7.x
- if [ "$LARAVEL" = "57" ] ; then composer require "phpunit/phpunit:7.*" --no-update ; fi
- if [ "$LARAVEL" = "57" ] ; then composer require "laravel/framework:5.7.*" --no-update ; fi
- if [ "$LARAVEL" = "57" ] ; then composer require "orchestra/database:3.7.x-dev as 3.7" --no-update ; fi
- if [ "$LARAVEL" = "57" ] ; then composer require "orchestra/database:3.7.*" --no-update ; fi
- if [ "$LARAVEL" = "57" ] ; then composer require "orchestra/testbench:3.7.*" --no-update ; fi
# Packages: Laravel 5.8.x
- if [ "$LARAVEL" = "58" ] ; then composer require "phpunit/phpunit:7.*" --no-update ; fi
- if [ "$LARAVEL" = "58" ] ; then composer require "laravel/framework:5.8.*" --no-update ; fi
- if [ "$LARAVEL" = "58" ] ; then composer require "orchestra/database:3.7.x-dev as 3.7" --no-update ; fi
- if [ "$LARAVEL" = "58" ] ; then composer require "orchestra/testbench:3.7.*" --no-update ; fi
- if [ "$LARAVEL" = "58" ] ; then composer require "orchestra/database:3.8.*" --no-update ; fi
- if [ "$LARAVEL" = "58" ] ; then composer require "orchestra/testbench:3.8.*" --no-update ; fi
# Packages: Update
- composer update --prefer-source --no-interaction
# Tests: Run
Expand Down
8 changes: 4 additions & 4 deletions src/Console/Commands/MigrateEncryptionCommand.php
Expand Up @@ -9,13 +9,13 @@

namespace AustinHeap\Database\Encryption\Console\Commands;

use AustinHeap\Database\Encryption\EncryptionFacade as DatabaseEncryption;
use Exception;
use RuntimeException;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
use Illuminate\Encryption\Encrypter;
use Illuminate\Support\Facades\Config;
use AustinHeap\Database\Encryption\EncryptionFacade as DatabaseEncryption;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Log;
use RuntimeException;

/**
* Class MigrateEncryptionCommand.
Expand Down
2 changes: 1 addition & 1 deletion src/EncryptionHelper.php
Expand Up @@ -9,8 +9,8 @@

namespace AustinHeap\Database\Encryption;

use RuntimeException;
use Illuminate\Support\Facades\Config;
use RuntimeException;

/**
* EncryptionHelper.
Expand Down
6 changes: 3 additions & 3 deletions src/Traits/HasEncryptedAttributes.php
Expand Up @@ -9,11 +9,11 @@

namespace AustinHeap\Database\Encryption\Traits;

use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Crypt;
use AustinHeap\Database\Encryption\EncryptionFacade as DatabaseEncryption;
use Illuminate\Contracts\Encryption\DecryptException;
use Illuminate\Contracts\Encryption\EncryptException;
use AustinHeap\Database\Encryption\EncryptionFacade as DatabaseEncryption;
use Illuminate\Support\Facades\Crypt;
use Illuminate\Support\Facades\Log;

/**
* HasEncryptedAttributes.
Expand Down

0 comments on commit 7ed8757

Please sign in to comment.