Skip to content

Commit

Permalink
Merge pull request #11 from reallyli/upgrade-support-laravel6.x
Browse files Browse the repository at this point in the history
Support Laravel6.x
  • Loading branch information
reallyli committed Nov 7, 2019
2 parents f382dad + 29f7d2f commit 841d257
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"php": "^7.1.3",
"deployer/deployer": "^6.1",
"deployer/recipes": "^6.0",
"illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*"
"illuminate/support": "^5.5"
},
"require-dev": {
"orchestra/testbench": "^3.5",
Expand Down
8 changes: 4 additions & 4 deletions src/LaravelDeployer/Commands/BaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
namespace Reallyli\LaravelDeployer\Commands;

use Illuminate\Console\Command;
use Symfony\Component\Yaml\Yaml;
use Symfony\Component\Process\Process;
use Reallyli\LaravelDeployer\ConfigFile;
use Reallyli\LaravelDeployer\Concerns\DeployBuilder;
use Reallyli\LaravelDeployer\LaravelDeployerException;
use Reallyli\LaravelDeployer\Concerns\ParsesCliParameters;
use Reallyli\LaravelDeployer\ConfigFile;
use Reallyli\LaravelDeployer\LaravelDeployerException;
use Symfony\Component\Process\Process;
use Symfony\Component\Yaml\Yaml;

class BaseCommand extends Command
{
Expand Down
6 changes: 3 additions & 3 deletions src/LaravelDeployer/ConfigFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

namespace Reallyli\LaravelDeployer;

use Symfony\Component\Yaml\Yaml;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Contracts\Support\Arrayable;
use Reallyli\LaravelDeployer\Concerns\RendersCode;
use Illuminate\Filesystem\Filesystem;
use Reallyli\LaravelDeployer\Concerns\DeployBuilder;
use Reallyli\LaravelDeployer\Concerns\RendersCode;
use Symfony\Component\Yaml\Yaml;

class ConfigFile implements Arrayable
{
Expand Down
2 changes: 1 addition & 1 deletion src/LaravelDeployer/DeployFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace Reallyli\LaravelDeployer;

use Illuminate\Filesystem\Filesystem;
use Reallyli\LaravelDeployer\Concerns\RendersCode;
use Reallyli\LaravelDeployer\Concerns\DeployBuilder;
use Reallyli\LaravelDeployer\Concerns\RendersCode;

class DeployFile
{
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

namespace Reallyli\LaravelDeployer\Tests;

use Symfony\Component\Yaml\Yaml;
use Illuminate\Filesystem\Filesystem;
use Orchestra\Testbench\TestCase as Orchestra;
use Reallyli\LaravelDeployer\Concerns\DeployBuilder;
use Symfony\Component\Yaml\Yaml;

/**
* Class TestCase.
Expand Down
2 changes: 1 addition & 1 deletion tests/YamlParseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Reallyli\LaravelDeployer\Tests;

use Symfony\Component\Yaml\Yaml;
use Illuminate\Filesystem\Filesystem;
use Reallyli\LaravelDeployer\ConfigFile;
use Symfony\Component\Yaml\Yaml;

/**
* Class YamlParseTest.
Expand Down

0 comments on commit 841d257

Please sign in to comment.