Skip to content

Commit

Permalink
Merge pull request #12 from lextira/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
kohlerdominik committed Dec 3, 2019
2 parents 1525fe8 + 6d1ec62 commit 0a31a63
Show file tree
Hide file tree
Showing 27 changed files with 1,418 additions and 825 deletions.
2 changes: 1 addition & 1 deletion development.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
depends_on:
- db
volumes:
- ${SOURCE_DIR}/src:/var/www
- ${SOURCE_DIR}/web/src:/var/www
environment:
- WEB_DOCUMENT_ROOT=/var/www/public
- WEB_DOCUMENT_INDEX=index.php
Expand Down
3 changes: 2 additions & 1 deletion web/src/app/Console/Commands/FtpKeyGenerateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use App\Data\Models\Domain;
use App\Data\Models\Key;
use Illuminate\Console\Command;
use Illuminate\Support\Str;

class FtpKeyGenerateCommand extends Command
{
Expand Down Expand Up @@ -56,7 +57,7 @@ public function handle()

$key = $this->key->create([
'domain_id' => $domain->id,
'token' => str_random(64),
'token' => Str::random(64),
'description' => $this->argument('description')
]);

Expand Down
9 changes: 4 additions & 5 deletions web/src/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@
"type": "project",
"require": {
"php": "^7.1.3",
"darkaonline/l5-swagger": "^5.7",
"darkaonline/l5-swagger": "^6.0",
"fideloper/proxy": "^4.0",
"jdavidbakr/laravel-cache-garbage-collector": "^1.0",
"laravel/framework": "5.6.*",
"laravel/framework": "^6.0",
"laravel/tinker": "^1.0",
"lucid-arch/laravel-console": "^5.6",
"lucid-arch/laravel-foundation": "^5.6",
"lucid-arch/laravel-console": "^6.0",
"lucid-arch/laravel-foundation": "^6.0",
"nicolab/php-ftp-client": "^1.4",
"prettus/l5-repository": "^2.6",
"spatie/ssl-certificate": "^1.12"
Expand Down
Loading

0 comments on commit 0a31a63

Please sign in to comment.