Commit 9c33c597 authored by cygnet's avatar cygnet

Resolved merge conflict by incorporating changes

parents 99ac8f95 1cb96da9
...@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Permission\PermissionRepository; ...@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Permission\PermissionRepository;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Validator; use Validator;
class PermissionController extends APIController class PermissionController extends APIController
{ {
protected $repository; protected $repository;
...@@ -50,7 +49,7 @@ class PermissionController extends APIController ...@@ -50,7 +49,7 @@ class PermissionController extends APIController
} }
/** /**
* Creates the Resourse for Role * Creates the Resourse for Role.
* *
* @param Request $request * @param Request $request
* *
...@@ -65,10 +64,10 @@ class PermissionController extends APIController ...@@ -65,10 +64,10 @@ class PermissionController extends APIController
$this->repository->create($request->all()); $this->repository->create($request->all());
$permission = Permission::orderBy('created_at', 'desc')->first(); $permission = Permission::orderBy('created_at', 'desc')->first();
return new PermissionResource($permission); return new PermissionResource($permission);
} }
/** /**
* @param Role $role * @param Role $role
* @param UpdateRoleRequest $request * @param UpdateRoleRequest $request
...@@ -77,7 +76,6 @@ class PermissionController extends APIController ...@@ -77,7 +76,6 @@ class PermissionController extends APIController
*/ */
public function update(Request $request, Permission $permission) public function update(Request $request, Permission $permission)
{ {
$validation = $this->valiatingRequest($request); $validation = $this->valiatingRequest($request);
if ($validation->fails()) { if ($validation->fails()) {
...@@ -93,13 +91,14 @@ class PermissionController extends APIController ...@@ -93,13 +91,14 @@ class PermissionController extends APIController
public function valiatingRequest(Request $request) public function valiatingRequest(Request $request)
{ {
$validation = Validator::make($request->all(),[ $validation = Validator::make($request->all(), [
'name' => 'required|max:191', 'name' => 'required|max:191',
'display_name' => 'required|max:191', 'display_name' => 'required|max:191',
]); ]);
return $validation; return $validation;
} }
/** /**
* @param Role $role * @param Role $role
* @param DeleteRoleRequest $request * @param DeleteRoleRequest $request
...@@ -110,6 +109,6 @@ class PermissionController extends APIController ...@@ -110,6 +109,6 @@ class PermissionController extends APIController
{ {
$this->repository->delete($permission); $this->repository->delete($permission);
return ["message"=>"success"]; return ['message'=>'success'];
} }
} }
...@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Role\RoleRepository; ...@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Role\RoleRepository;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Validator; use Validator;
class RolesController extends APIController class RolesController extends APIController
{ {
protected $repository; protected $repository;
...@@ -50,7 +49,7 @@ class RolesController extends APIController ...@@ -50,7 +49,7 @@ class RolesController extends APIController
} }
/** /**
* Creates the Resourse for Role * Creates the Resourse for Role.
* *
* @param Request $request * @param Request $request
* *
...@@ -65,11 +64,9 @@ class RolesController extends APIController ...@@ -65,11 +64,9 @@ class RolesController extends APIController
$this->repository->create($request->all()); $this->repository->create($request->all());
return new RoleResource(Role::orderBy('created_at', 'desc')->first()); return new RoleResource(Role::orderBy('created_at', 'desc')->first());
} }
/** /**
* @param Role $role * @param Role $role
* @param UpdateRoleRequest $request * @param UpdateRoleRequest $request
...@@ -78,7 +75,6 @@ class RolesController extends APIController ...@@ -78,7 +75,6 @@ class RolesController extends APIController
*/ */
public function update(Request $request, Role $role) public function update(Request $request, Role $role)
{ {
$validation = $this->valiatingRequest($request); $validation = $this->valiatingRequest($request);
if ($validation->fails()) { if ($validation->fails()) {
...@@ -87,7 +83,7 @@ class RolesController extends APIController ...@@ -87,7 +83,7 @@ class RolesController extends APIController
$this->repository->update($role, $request->all()); $this->repository->update($role, $request->all());
$role= Role::findOrfail($role->id); $role = Role::findOrfail($role->id);
return new RoleResource($role); return new RoleResource($role);
} }
...@@ -96,7 +92,7 @@ class RolesController extends APIController ...@@ -96,7 +92,7 @@ class RolesController extends APIController
{ {
$permissions = ''; $permissions = '';
if ($request->post("associated_permissions") != 'all') { if ($request->post('associated_permissions') != 'all') {
$permissions = 'required'; $permissions = 'required';
} }
...@@ -107,6 +103,7 @@ class RolesController extends APIController ...@@ -107,6 +103,7 @@ class RolesController extends APIController
return $validation; return $validation;
} }
/** /**
* @param Role $role * @param Role $role
* @param DeleteRoleRequest $request * @param DeleteRoleRequest $request
...@@ -117,6 +114,6 @@ class RolesController extends APIController ...@@ -117,6 +114,6 @@ class RolesController extends APIController
{ {
$this->repository->delete($role); $this->repository->delete($role);
return ["message"=>"success"]; return ['message'=>'success'];
} }
} }
...@@ -6,7 +6,6 @@ use App\Http\Resources\UserResource; ...@@ -6,7 +6,6 @@ use App\Http\Resources\UserResource;
use App\Models\Access\User\User; use App\Models\Access\User\User;
use App\Repositories\Backend\Access\User\UserRepository; use App\Repositories\Backend\Access\User\UserRepository;
use Illuminate\Http\Request; use Illuminate\Http\Request;
use Illuminate\Validation\Rule;
use Validator; use Validator;
class UsersController extends APIController class UsersController extends APIController
...@@ -47,9 +46,10 @@ class UsersController extends APIController ...@@ -47,9 +46,10 @@ class UsersController extends APIController
public function show(User $user) public function show(User $user)
{ {
$data = new UserResource($user); $data = new UserResource($user);
$history["history"] = history()->renderEntity('User', $user->id); $history['history'] = history()->renderEntity('User', $user->id);
$maindata = $data->toArray($user); $maindata = $data->toArray($user);
$maindata = array_merge($maindata, $history); $maindata = array_merge($maindata, $history);
return $maindata; return $maindata;
} }
...@@ -79,7 +79,6 @@ class UsersController extends APIController ...@@ -79,7 +79,6 @@ class UsersController extends APIController
public function deleteUserList(Request $request) public function deleteUserList(Request $request)
{ {
$limit = $request->get('paginate') ? $request->get('paginate') : 25; $limit = $request->get('paginate') ? $request->get('paginate') : 25;
return UserResource::collection( return UserResource::collection(
$this->repository->getForDataTable(0, true)->paginate($limit) $this->repository->getForDataTable(0, true)->paginate($limit)
); );
...@@ -90,7 +89,7 @@ class UsersController extends APIController ...@@ -90,7 +89,7 @@ class UsersController extends APIController
*/ */
public function update(Request $request, User $user) public function update(Request $request, User $user)
{ {
$validation = $this->valiatingRequest($request,"edit",$user->id); $validation = $this->valiatingRequest($request, 'edit', $user->id);
if ($validation->fails()) { if ($validation->fails()) {
return $this->throwValidation($validation->messages()->first()); return $this->throwValidation($validation->messages()->first());
...@@ -114,14 +113,16 @@ class UsersController extends APIController ...@@ -114,14 +113,16 @@ class UsersController extends APIController
return $this->throwValidation($validation->messages()->first()); return $this->throwValidation($validation->messages()->first());
} }
$this->repository->create($request); $this->repository->create($request);
return new UserResource(User::orderBy('created_at', 'desc')->first()); return new UserResource(User::orderBy('created_at', 'desc')->first());
} }
/** /**
* Validation function to validate user input * Validation function to validate user input.
*/ */
public function valiatingRequest(Request $request,$string="",$id=0) public function valiatingRequest(Request $request, $string = '', $id = 0)
{ {
$password = ($string=="edit")?"":"required|min:6|confirmed"; $password = ($string == 'edit') ? '' : 'required|min:6|confirmed';
$validation = Validator::make($request->all(), [ $validation = Validator::make($request->all(), [
'first_name' => 'required|max:255', 'first_name' => 'required|max:255',
'last_name' => 'required|max:255', 'last_name' => 'required|max:255',
...@@ -135,7 +136,8 @@ class UsersController extends APIController ...@@ -135,7 +136,8 @@ class UsersController extends APIController
} }
/** /**
* Api to delete the resource * Api to delete the resource.
*
* @param Role $role * @param Role $role
* @param DeleteRoleRequest $request * @param DeleteRoleRequest $request
* *
...@@ -145,6 +147,6 @@ class UsersController extends APIController ...@@ -145,6 +147,6 @@ class UsersController extends APIController
{ {
$this->repository->delete($user); $this->repository->delete($user);
return ["message" => "success"]; return ['message' => 'success'];
} }
} }
<?php
namespace App\Http\Middleware;
use Fideloper\Proxy\TrustProxies as Middleware;
use Illuminate\Http\Request;
/**
* Class TrustProxies.
*/
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array
*/
protected $proxies;
/**
* The headers that should be used to detect proxies.
*
* @var string
*/
protected $headers = Request::HEADER_X_FORWARDED_ALL;
}
...@@ -18,9 +18,9 @@ class RoleResource extends Resource ...@@ -18,9 +18,9 @@ class RoleResource extends Resource
return [ return [
'id' => $this->id, 'id' => $this->id,
'name' => $this->name, 'name' => $this->name,
"permission" => ($this->all)? "All": optional($this->permissions)->pluck("display_name"), 'permission' => ($this->all) ? 'All' : optional($this->permissions)->pluck('display_name'),
"noofuses" => $this->users->count(), 'noofuses' => $this->users->count(),
"sort" => $this->sort, 'sort' => $this->sort,
]; ];
} }
} }
...@@ -25,7 +25,6 @@ class UserResource extends Resource ...@@ -25,7 +25,6 @@ class UserResource extends Resource
'registered_at' => $this->created_at->toIso8601String(), 'registered_at' => $this->created_at->toIso8601String(),
'last_updated_at' => $this->updated_at->toIso8601String(), 'last_updated_at' => $this->updated_at->toIso8601String(),
]; ];
} }
} }
...@@ -11,31 +11,31 @@ ...@@ -11,31 +11,31 @@
"license": "MIT", "license": "MIT",
"type": "project", "type": "project",
"require": { "require": {
"php": ">=7.0.0", "php": ">=7.1.3",
"arcanedev/log-viewer": "^4.4", "arcanedev/log-viewer": "^4.5",
"arcanedev/no-captcha": "^5.0", "arcanedev/no-captcha": "^5.0",
"codedungeon/phpunit-result-printer": "0.4.4",
"creativeorange/gravatar": "~1.0", "creativeorange/gravatar": "~1.0",
"davejamesmiller/laravel-breadcrumbs": "^4.1", "davejamesmiller/laravel-breadcrumbs": "^5.0",
"doctrine/dbal": "^2.6", "doctrine/dbal": "^2.6",
"fideloper/proxy": "~3.3", "fideloper/proxy": "~4.0",
"hieu-le/active": "^3.5", "hieu-le/active": "^3.5",
"laravel/framework": "5.5.*", "laravel/framework": "5.6.*",
"laravel/socialite": "^3.0", "laravel/socialite": "^3.0",
"laravel/tinker": "~1.0", "laravel/tinker": "~1.0",
"laravelcollective/html": "^5.5.0", "laravelcollective/html": "^5.4.0",
"tymon/jwt-auth": "dev-develop", "tymon/jwt-auth": "dev-develop",
"unisharp/laravel-filemanager": "~1.8", "unisharp/laravel-filemanager": "~1.8",
"yajra/laravel-datatables-oracle": "~8.0" "yajra/laravel-datatables-oracle": "~8.0"
}, },
"require-dev": { "require-dev": {
"barryvdh/laravel-debugbar": "^3.0", "barryvdh/laravel-debugbar": "^3.0",
"codedungeon/phpunit-result-printer": "^0.6.0",
"bvipul/generator": "^0.9.1", "bvipul/generator": "^0.9.1",
"filp/whoops": "~2.0", "filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4", "fzaninotto/faker": "~1.4",
"laravel/browser-kit-testing": "^2.0", "laravel/browser-kit-testing": "^4.0.0",
"mockery/mockery": "0.9.*", "mockery/mockery": "0.9.*",
"phpunit/phpunit": "~6.0", "phpunit/phpunit": "~7.0",
"xethron/migrations-generator": "2.0.2" "xethron/migrations-generator": "2.0.2"
}, },
"autoload": { "autoload": {
...@@ -69,14 +69,6 @@ ...@@ -69,14 +69,6 @@
"post-create-project-cmd": [ "post-create-project-cmd": [
"php artisan key:generate" "php artisan key:generate"
], ],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall",
"php artisan optimize"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"php artisan optimize"
],
"post-autoload-dump": [ "post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover" "@php artisan package:discover"
......
...@@ -4,31 +4,31 @@ ...@@ -4,31 +4,31 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically" "This file is @generated automatically"
], ],
"content-hash": "a9ca8bd1e8e71ad163a9d99a2eaee057", "content-hash": "bc9d94beb0a4b88c5eaee8a9a2238bea",
"packages": [ "packages": [
{ {
"name": "arcanedev/log-viewer", "name": "arcanedev/log-viewer",
"version": "4.4.1", "version": "4.5.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ARCANEDEV/LogViewer.git", "url": "https://github.com/ARCANEDEV/LogViewer.git",
"reference": "b14e2de1dfe84db80fbc9eb4b12ce05b85a09472" "reference": "22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/b14e2de1dfe84db80fbc9eb4b12ce05b85a09472", "url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e",
"reference": "b14e2de1dfe84db80fbc9eb4b12ce05b85a09472", "reference": "22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"arcanedev/support": "~4.1", "arcanedev/support": "~4.3.0",
"php": ">=7.0", "php": ">=7.1.3",
"psr/log": "~1.0" "psr/log": "~1.0"
}, },
"require-dev": { "require-dev": {
"orchestra/testbench": "~3.5.0", "orchestra/testbench": "~3.6.0",
"phpunit/phpcov": "~4.0", "phpunit/phpcov": "~5.0",
"phpunit/phpunit": "~6.0" "phpunit/phpunit": "~7.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -70,24 +70,24 @@ ...@@ -70,24 +70,24 @@
"log-viewer", "log-viewer",
"logviewer" "logviewer"
], ],
"time": "2017-10-28T10:32:04+00:00" "time": "2018-02-08T15:42:11+00:00"
}, },
{ {
"name": "arcanedev/no-captcha", "name": "arcanedev/no-captcha",
"version": "5.0.2", "version": "5.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ARCANEDEV/noCAPTCHA.git", "url": "https://github.com/ARCANEDEV/noCAPTCHA.git",
"reference": "97010dcd6b83e73ae629f1c33975bbee2f15ea84" "reference": "c02d7f1ef25d281f304b9af460a13f4601bbc44c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/noCAPTCHA/zipball/97010dcd6b83e73ae629f1c33975bbee2f15ea84", "url": "https://api.github.com/repos/ARCANEDEV/noCAPTCHA/zipball/c02d7f1ef25d281f304b9af460a13f4601bbc44c",
"reference": "97010dcd6b83e73ae629f1c33975bbee2f15ea84", "reference": "c02d7f1ef25d281f304b9af460a13f4601bbc44c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"arcanedev/support": "~4.2.0", "arcanedev/support": "~4.0",
"ext-curl": "*", "ext-curl": "*",
"ext-json": "*", "ext-json": "*",
"php": ">=7.0", "php": ">=7.0",
...@@ -95,7 +95,6 @@ ...@@ -95,7 +95,6 @@
}, },
"require-dev": { "require-dev": {
"arcanedev/laravel-html": "~5.0", "arcanedev/laravel-html": "~5.0",
"orchestra/testbench": "~3.5.0",
"phpunit/phpcov": "~4.0", "phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0" "phpunit/phpunit": "~6.0"
}, },
...@@ -137,31 +136,31 @@ ...@@ -137,31 +136,31 @@
"no-captcha", "no-captcha",
"recaptcha" "recaptcha"
], ],
"time": "2018-02-12T05:16:30+00:00" "time": "2017-09-08T13:38:56+00:00"
}, },
{ {
"name": "arcanedev/support", "name": "arcanedev/support",
"version": "4.2.2", "version": "4.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/ARCANEDEV/Support.git", "url": "https://github.com/ARCANEDEV/Support.git",
"reference": "525166d89920e83b07efbb2fbccc5b128484cf0f" "reference": "23478c1439c8bdcb7aaf26b817b4886d6c52d423"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/525166d89920e83b07efbb2fbccc5b128484cf0f", "url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/23478c1439c8bdcb7aaf26b817b4886d6c52d423",
"reference": "525166d89920e83b07efbb2fbccc5b128484cf0f", "reference": "23478c1439c8bdcb7aaf26b817b4886d6c52d423",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"illuminate/filesystem": "~5.5.0", "illuminate/filesystem": "~5.6.0",
"illuminate/support": "~5.5.0", "illuminate/support": "~5.6.0",
"php": ">=7.0" "php": ">=7.1.3"
}, },
"require-dev": { "require-dev": {
"orchestra/testbench": "~3.5.0", "orchestra/testbench": "~3.6.0",
"phpunit/phpcov": "~4.0", "phpunit/phpcov": "~5.0",
"phpunit/phpunit": "~6.0" "phpunit/phpunit": "~7.0"
}, },
"type": "library", "type": "library",
"autoload": { "autoload": {
...@@ -192,55 +191,7 @@ ...@@ -192,55 +191,7 @@
"laravel", "laravel",
"support" "support"
], ],
"time": "2018-02-07T18:22:19+00:00" "time": "2018-02-08T00:42:15+00:00"
},
{
"name": "codedungeon/phpunit-result-printer",
"version": "0.4.4",
"source": {
"type": "git",
"url": "https://github.com/mikeerickson/phpunit-pretty-result-printer.git",
"reference": "1f41a61732ad267af9fe9ab6b5eefae029c616d0"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mikeerickson/phpunit-pretty-result-printer/zipball/1f41a61732ad267af9fe9ab6b5eefae029c616d0",
"reference": "1f41a61732ad267af9fe9ab6b5eefae029c616d0",
"shasum": ""
},
"require": {
"hassankhan/config": "^0.10.0",
"symfony/yaml": "^3.3|^4.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.2",
"spatie/phpunit-watcher": "^1.3"
},
"type": "library",
"autoload": {
"psr-4": {
"Codedungeon\\PHPUnitPrettyResultPrinter\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike Erickson",
"email": "codedungeon@gmail.com"
}
],
"description": "PHPUnit Pretty Result Printer",
"keywords": [
"composer",
"package",
"phpunit",
"printer",
"result-printer"
],
"time": "2017-12-22T18:50:24+00:00"
}, },
{ {
"name": "creativeorange/gravatar", "name": "creativeorange/gravatar",
...@@ -288,28 +239,28 @@ ...@@ -288,28 +239,28 @@
}, },
{ {
"name": "davejamesmiller/laravel-breadcrumbs", "name": "davejamesmiller/laravel-breadcrumbs",
"version": "4.2.0", "version": "5.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/davejamesmiller/laravel-breadcrumbs.git", "url": "https://github.com/davejamesmiller/laravel-breadcrumbs.git",
"reference": "368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1" "reference": "590cb313d783460bdac4d3a801c83e6ecf561eb7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1", "url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/590cb313d783460bdac4d3a801c83e6ecf561eb7",
"reference": "368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1", "reference": "590cb313d783460bdac4d3a801c83e6ecf561eb7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"illuminate/support": "5.5.*", "illuminate/support": "5.6.*",
"illuminate/view": "5.5.*", "illuminate/view": "5.6.*",
"php": ">=7.0.0" "php": ">=7.1.3"
}, },
"require-dev": { "require-dev": {
"laravel/framework": "5.5.*", "laravel/framework": "5.6.*",
"orchestra/testbench": "3.5.*", "orchestra/testbench": "3.6.*",
"phpunit/phpunit": "6.*", "php-coveralls/php-coveralls": "^1.0",
"satooshi/php-coveralls": "1.0.*" "phpunit/phpunit": "7.*"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -329,7 +280,7 @@ ...@@ -329,7 +280,7 @@
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
"license": [ "license": [
"MIT License" "MIT"
], ],
"authors": [ "authors": [
{ {
...@@ -343,7 +294,7 @@ ...@@ -343,7 +294,7 @@
"keywords": [ "keywords": [
"laravel" "laravel"
], ],
"time": "2017-09-14T08:23:50+00:00" "time": "2018-02-10T19:00:08+00:00"
}, },
{ {
"name": "dnoegel/php-xdg-base-dir", "name": "dnoegel/php-xdg-base-dir",
...@@ -854,6 +805,55 @@ ...@@ -854,6 +805,55 @@
], ],
"time": "2014-09-09T13:34:57+00:00" "time": "2014-09-09T13:34:57+00:00"
}, },
{
"name": "dragonmantank/cron-expression",
"version": "v2.0.0",
"source": {
"type": "git",
"url": "https://github.com/dragonmantank/cron-expression.git",
"reference": "8a84aee649c3a3ba03a721c1fb080e08dfbcd68b"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8a84aee649c3a3ba03a721c1fb080e08dfbcd68b",
"reference": "8a84aee649c3a3ba03a721c1fb080e08dfbcd68b",
"shasum": ""
},
"require": {
"php": ">=7.0.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"type": "library",
"autoload": {
"psr-4": {
"Cron\\": "src/Cron/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
},
{
"name": "Chris Tankersley",
"email": "chris@ctankersley.com",
"homepage": "https://github.com/dragonmantank"
}
],
"description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
"keywords": [
"cron",
"schedule"
],
"time": "2017-10-12T15:59:13+00:00"
},
{ {
"name": "egulias/email-validator", "name": "egulias/email-validator",
"version": "2.1.3", "version": "2.1.3",
...@@ -913,19 +913,20 @@ ...@@ -913,19 +913,20 @@
}, },
{ {
"name": "erusev/parsedown", "name": "erusev/parsedown",
"version": "1.6.4", "version": "1.7.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/erusev/parsedown.git", "url": "https://github.com/erusev/parsedown.git",
"reference": "fbe3fe878f4fe69048bb8a52783a09802004f548" "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548", "url": "https://api.github.com/repos/erusev/parsedown/zipball/92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
"reference": "fbe3fe878f4fe69048bb8a52783a09802004f548", "reference": "92e9c27ba0e74b8b028b111d1b6f956a15c01fc1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-mbstring": "*",
"php": ">=5.3.0" "php": ">=5.3.0"
}, },
"require-dev": { "require-dev": {
...@@ -954,20 +955,20 @@ ...@@ -954,20 +955,20 @@
"markdown", "markdown",
"parser" "parser"
], ],
"time": "2017-11-14T20:44:03+00:00" "time": "2018-03-08T01:11:30+00:00"
}, },
{ {
"name": "fideloper/proxy", "name": "fideloper/proxy",
"version": "3.3.4", "version": "4.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/fideloper/TrustedProxy.git", "url": "https://github.com/fideloper/TrustedProxy.git",
"reference": "9cdf6f118af58d89764249bbcc7bb260c132924f" "reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/9cdf6f118af58d89764249bbcc7bb260c132924f", "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/cf8a0ca4b85659b9557e206c90110a6a4dba980a",
"reference": "9cdf6f118af58d89764249bbcc7bb260c132924f", "reference": "cf8a0ca4b85659b9557e206c90110a6a4dba980a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -975,15 +976,12 @@ ...@@ -975,15 +976,12 @@
"php": ">=5.4.0" "php": ">=5.4.0"
}, },
"require-dev": { "require-dev": {
"illuminate/http": "~5.0", "illuminate/http": "~5.6",
"mockery/mockery": "~0.9.3", "mockery/mockery": "~1.0",
"phpunit/phpunit": "^5.7" "phpunit/phpunit": "^6.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": {
"dev-master": "3.3-dev"
},
"laravel": { "laravel": {
"providers": [ "providers": [
"Fideloper\\Proxy\\TrustedProxyServiceProvider" "Fideloper\\Proxy\\TrustedProxyServiceProvider"
...@@ -1011,7 +1009,7 @@ ...@@ -1011,7 +1009,7 @@
"proxy", "proxy",
"trusted proxy" "trusted proxy"
], ],
"time": "2017-06-15T17:19:42+00:00" "time": "2018-02-07T20:20:57+00:00"
}, },
{ {
"name": "guzzlehttp/guzzle", "name": "guzzlehttp/guzzle",
...@@ -1194,63 +1192,6 @@ ...@@ -1194,63 +1192,6 @@
], ],
"time": "2017-03-20T17:10:46+00:00" "time": "2017-03-20T17:10:46+00:00"
}, },
{
"name": "hassankhan/config",
"version": "0.10.0",
"source": {
"type": "git",
"url": "https://github.com/hassankhan/config.git",
"reference": "06ac500348af033f1a2e44dc357ca86282626d4a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/hassankhan/config/zipball/06ac500348af033f1a2e44dc357ca86282626d4a",
"reference": "06ac500348af033f1a2e44dc357ca86282626d4a",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.2"
},
"suggest": {
"symfony/yaml": "~2.5"
},
"type": "library",
"autoload": {
"psr-4": {
"Noodlehaus\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Hassan Khan",
"homepage": "http://hassankhan.me/",
"role": "Developer"
}
],
"description": "Lightweight configuration file loader that supports PHP, INI, XML, JSON, and YAML files",
"homepage": "http://hassankhan.me/config/",
"keywords": [
"config",
"configuration",
"ini",
"json",
"microphp",
"unframework",
"xml",
"yaml",
"yml"
],
"time": "2016-02-11T16:21:17+00:00"
},
{ {
"name": "hieu-le/active", "name": "hieu-le/active",
"version": "3.5.1", "version": "3.5.1",
...@@ -1473,43 +1414,46 @@ ...@@ -1473,43 +1414,46 @@
}, },
{ {
"name": "laravel/framework", "name": "laravel/framework",
"version": "v5.5.35", "version": "v5.6.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/framework.git", "url": "https://github.com/laravel/framework.git",
"reference": "b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce" "reference": "98fdbb098cf52a74441fe949be121c18e3dbbe6a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce", "url": "https://api.github.com/repos/laravel/framework/zipball/98fdbb098cf52a74441fe949be121c18e3dbbe6a",
"reference": "b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce", "reference": "98fdbb098cf52a74441fe949be121c18e3dbbe6a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/inflector": "~1.1", "doctrine/inflector": "~1.1",
"erusev/parsedown": "~1.6", "dragonmantank/cron-expression": "~2.0",
"erusev/parsedown": "~1.7",
"ext-mbstring": "*", "ext-mbstring": "*",
"ext-openssl": "*", "ext-openssl": "*",
"league/flysystem": "~1.0", "league/flysystem": "~1.0",
"monolog/monolog": "~1.12", "monolog/monolog": "~1.12",
"mtdowling/cron-expression": "~1.0", "nesbot/carbon": "^1.22.1",
"nesbot/carbon": "~1.20", "php": "^7.1.3",
"php": ">=7.0",
"psr/container": "~1.0", "psr/container": "~1.0",
"psr/simple-cache": "^1.0", "psr/simple-cache": "^1.0",
"ramsey/uuid": "~3.0", "ramsey/uuid": "^3.7",
"swiftmailer/swiftmailer": "~6.0", "swiftmailer/swiftmailer": "~6.0",
"symfony/console": "~3.3", "symfony/console": "~4.0",
"symfony/debug": "~3.3", "symfony/debug": "~4.0",
"symfony/finder": "~3.3", "symfony/finder": "~4.0",
"symfony/http-foundation": "~3.3", "symfony/http-foundation": "~4.0",
"symfony/http-kernel": "~3.3", "symfony/http-kernel": "~4.0",
"symfony/process": "~3.3", "symfony/process": "~4.0",
"symfony/routing": "~3.3", "symfony/routing": "~4.0",
"symfony/var-dumper": "~3.3", "symfony/var-dumper": "~4.0",
"tijsverkoyen/css-to-inline-styles": "~2.2", "tijsverkoyen/css-to-inline-styles": "^2.2.1",
"vlucas/phpdotenv": "~2.2" "vlucas/phpdotenv": "~2.2"
}, },
"conflict": {
"tightenco/collect": "<5.5.33"
},
"replace": { "replace": {
"illuminate/auth": "self.version", "illuminate/auth": "self.version",
"illuminate/broadcasting": "self.version", "illuminate/broadcasting": "self.version",
...@@ -1538,24 +1482,24 @@ ...@@ -1538,24 +1482,24 @@
"illuminate/support": "self.version", "illuminate/support": "self.version",
"illuminate/translation": "self.version", "illuminate/translation": "self.version",
"illuminate/validation": "self.version", "illuminate/validation": "self.version",
"illuminate/view": "self.version", "illuminate/view": "self.version"
"tightenco/collect": "<5.5.33"
}, },
"require-dev": { "require-dev": {
"aws/aws-sdk-php": "~3.0", "aws/aws-sdk-php": "~3.0",
"doctrine/dbal": "~2.5", "doctrine/dbal": "~2.6",
"filp/whoops": "^2.1.4", "filp/whoops": "^2.1.4",
"mockery/mockery": "~1.0", "mockery/mockery": "~1.0",
"orchestra/testbench-core": "3.5.*", "moontoast/math": "^1.1",
"orchestra/testbench-core": "3.6.*",
"pda/pheanstalk": "~3.0", "pda/pheanstalk": "~3.0",
"phpunit/phpunit": "~6.0", "phpunit/phpunit": "~7.0",
"predis/predis": "^1.1.1", "predis/predis": "^1.1.1",
"symfony/css-selector": "~3.3", "symfony/css-selector": "~4.0",
"symfony/dom-crawler": "~3.3" "symfony/dom-crawler": "~4.0"
}, },
"suggest": { "suggest": {
"aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).", "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).",
"doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.5).", "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.6).",
"ext-pcntl": "Required to use all features of the queue worker.", "ext-pcntl": "Required to use all features of the queue worker.",
"ext-posix": "Required to use all features of the queue worker.", "ext-posix": "Required to use all features of the queue worker.",
"fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).", "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
...@@ -1564,18 +1508,19 @@ ...@@ -1564,18 +1508,19 @@
"league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).",
"league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).", "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).",
"league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).", "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).",
"league/flysystem-sftp": "Required to use the Flysystem SFTP driver (~1.0).",
"nexmo/client": "Required to use the Nexmo transport (~1.0).", "nexmo/client": "Required to use the Nexmo transport (~1.0).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).", "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).",
"predis/predis": "Required to use the redis cache and queue drivers (~1.0).", "predis/predis": "Required to use the redis cache and queue drivers (~1.0).",
"pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).", "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0).",
"symfony/css-selector": "Required to use some of the crawler integration testing tools (~3.3).", "symfony/css-selector": "Required to use some of the crawler integration testing tools (~4.0).",
"symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~3.3).", "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (~4.0).",
"symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)." "symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "5.5-dev" "dev-master": "5.6-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -1603,7 +1548,7 @@ ...@@ -1603,7 +1548,7 @@
"framework", "framework",
"laravel" "laravel"
], ],
"time": "2018-02-22T19:56:29+00:00" "time": "2018-03-07T14:04:49+00:00"
}, },
{ {
"name": "laravel/socialite", "name": "laravel/socialite",
...@@ -1669,16 +1614,16 @@ ...@@ -1669,16 +1614,16 @@
}, },
{ {
"name": "laravel/tinker", "name": "laravel/tinker",
"version": "v1.0.3", "version": "v1.0.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/tinker.git", "url": "https://github.com/laravel/tinker.git",
"reference": "852c2abe0b0991555a403f1c0583e64de6acb4a6" "reference": "eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/tinker/zipball/852c2abe0b0991555a403f1c0583e64de6acb4a6", "url": "https://api.github.com/repos/laravel/tinker/zipball/eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8",
"reference": "852c2abe0b0991555a403f1c0583e64de6acb4a6", "reference": "eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1728,38 +1673,40 @@ ...@@ -1728,38 +1673,40 @@
"laravel", "laravel",
"psysh" "psysh"
], ],
"time": "2017-12-18T16:25:11+00:00" "time": "2018-03-06T13:48:07+00:00"
}, },
{ {
"name": "laravelcollective/html", "name": "laravelcollective/html",
"version": "v5.5.3", "version": "v5.6.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/LaravelCollective/html.git", "url": "https://github.com/LaravelCollective/html.git",
"reference": "b79edc7acf574144c9811277286b4cafee8a07cc" "reference": "41cd9291a69bd24f2184e504be041348a87308a8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/b79edc7acf574144c9811277286b4cafee8a07cc", "url": "https://api.github.com/repos/LaravelCollective/html/zipball/41cd9291a69bd24f2184e504be041348a87308a8",
"reference": "b79edc7acf574144c9811277286b4cafee8a07cc", "reference": "41cd9291a69bd24f2184e504be041348a87308a8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"illuminate/http": "5.5.*", "illuminate/http": "5.6.*",
"illuminate/routing": "5.5.*", "illuminate/routing": "5.6.*",
"illuminate/session": "5.5.*", "illuminate/session": "5.6.*",
"illuminate/support": "5.5.*", "illuminate/support": "5.6.*",
"illuminate/view": "5.5.*", "illuminate/view": "5.6.*",
"php": ">=7.0.0" "php": ">=7.1.3"
}, },
"require-dev": { "require-dev": {
"illuminate/database": "5.5.*", "illuminate/database": "5.6.*",
"mockery/mockery": "~0.9.4", "mockery/mockery": "~1.0",
"phpunit/phpunit": "~5.4" "phpunit/phpunit": "~5.4"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": [], "branch-alias": {
"dev-master": "5.6-dev"
},
"laravel": { "laravel": {
"providers": [ "providers": [
"Collective\\Html\\HtmlServiceProvider" "Collective\\Html\\HtmlServiceProvider"
...@@ -1794,7 +1741,7 @@ ...@@ -1794,7 +1741,7 @@
], ],
"description": "HTML and Form Builders for the Laravel Framework", "description": "HTML and Form Builders for the Laravel Framework",
"homepage": "https://laravelcollective.com", "homepage": "https://laravelcollective.com",
"time": "2018-02-12T14:19:55+00:00" "time": "2018-02-12T14:19:42+00:00"
}, },
{ {
"name": "lcobucci/jwt", "name": "lcobucci/jwt",
...@@ -1856,16 +1803,16 @@ ...@@ -1856,16 +1803,16 @@
}, },
{ {
"name": "league/flysystem", "name": "league/flysystem",
"version": "1.0.42", "version": "1.0.43",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/thephpleague/flysystem.git", "url": "https://github.com/thephpleague/flysystem.git",
"reference": "09eabc54e199950041aef258a85847676496fe8e" "reference": "1ce7cc142d906ba58dc54c82915d355a9191c8a8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/09eabc54e199950041aef258a85847676496fe8e", "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1ce7cc142d906ba58dc54c82915d355a9191c8a8",
"reference": "09eabc54e199950041aef258a85847676496fe8e", "reference": "1ce7cc142d906ba58dc54c82915d355a9191c8a8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -1936,7 +1883,7 @@ ...@@ -1936,7 +1883,7 @@
"sftp", "sftp",
"storage" "storage"
], ],
"time": "2018-01-27T16:03:56+00:00" "time": "2018-03-01T10:27:04+00:00"
}, },
{ {
"name": "league/oauth1-client", "name": "league/oauth1-client",
...@@ -2079,50 +2026,6 @@ ...@@ -2079,50 +2026,6 @@
], ],
"time": "2017-06-19T01:22:40+00:00" "time": "2017-06-19T01:22:40+00:00"
}, },
{
"name": "mtdowling/cron-expression",
"version": "v1.2.1",
"source": {
"type": "git",
"url": "https://github.com/mtdowling/cron-expression.git",
"reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad",
"reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
"shasum": ""
},
"require": {
"php": ">=5.3.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0|~5.0"
},
"type": "library",
"autoload": {
"psr-4": {
"Cron\\": "src/Cron/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
}
],
"description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
"keywords": [
"cron",
"schedule"
],
"time": "2017-01-23T04:29:33+00:00"
},
{ {
"name": "namshi/jose", "name": "namshi/jose",
"version": "7.2.3", "version": "7.2.3",
...@@ -2188,25 +2091,25 @@ ...@@ -2188,25 +2091,25 @@
}, },
{ {
"name": "nesbot/carbon", "name": "nesbot/carbon",
"version": "1.22.1", "version": "1.23.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/briannesbitt/Carbon.git", "url": "https://github.com/briannesbitt/Carbon.git",
"reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc" "reference": "4a874a39b2b00d7e0146cd46fab6f47c41ce9e65"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4a874a39b2b00d7e0146cd46fab6f47c41ce9e65",
"reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", "reference": "4a874a39b2b00d7e0146cd46fab6f47c41ce9e65",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.3.0", "php": ">=5.3.0",
"symfony/translation": "~2.6 || ~3.0" "symfony/translation": "~2.6 || ~3.0 || ~4.0"
}, },
"require-dev": { "require-dev": {
"friendsofphp/php-cs-fixer": "~2", "friendsofphp/php-cs-fixer": "~2",
"phpunit/phpunit": "~4.0 || ~5.0" "phpunit/phpunit": "^4.8.35 || ^5.7"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
...@@ -2237,20 +2140,20 @@ ...@@ -2237,20 +2140,20 @@
"datetime", "datetime",
"time" "time"
], ],
"time": "2017-01-16T07:55:07+00:00" "time": "2018-02-28T09:22:05+00:00"
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v3.1.4", "version": "v3.1.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "e57b3a09784f846411aa7ed664eedb73e3399078" "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e57b3a09784f846411aa7ed664eedb73e3399078", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
"reference": "e57b3a09784f846411aa7ed664eedb73e3399078", "reference": "bb87e28e7d7b8d9a7fda231d37457c9210faf6ce",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2288,7 +2191,7 @@ ...@@ -2288,7 +2191,7 @@
"parser", "parser",
"php" "php"
], ],
"time": "2018-01-25T21:31:33+00:00" "time": "2018-02-28T20:30:58+00:00"
}, },
{ {
"name": "paragonie/random_compat", "name": "paragonie/random_compat",
...@@ -2486,16 +2389,16 @@ ...@@ -2486,16 +2389,16 @@
}, },
{ {
"name": "psr/simple-cache", "name": "psr/simple-cache",
"version": "1.0.0", "version": "1.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-fig/simple-cache.git", "url": "https://github.com/php-fig/simple-cache.git",
"reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24" "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24", "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24", "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2530,7 +2433,7 @@ ...@@ -2530,7 +2433,7 @@
"psr-16", "psr-16",
"simple-cache" "simple-cache"
], ],
"time": "2017-01-02T13:31:39+00:00" "time": "2017-10-23T01:57:42+00:00"
}, },
{ {
"name": "psy/psysh", "name": "psy/psysh",
...@@ -2741,21 +2644,20 @@ ...@@ -2741,21 +2644,20 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "26b6f419edda16c19775211987651cb27baea7f1" "reference": "555c8dbe0ae9e561740451eabdbed2cc554b6a51"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/26b6f419edda16c19775211987651cb27baea7f1", "url": "https://api.github.com/repos/symfony/console/zipball/555c8dbe0ae9e561740451eabdbed2cc554b6a51",
"reference": "26b6f419edda16c19775211987651cb27baea7f1", "reference": "555c8dbe0ae9e561740451eabdbed2cc554b6a51",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"symfony/debug": "~2.8|~3.0|~4.0",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"conflict": { "conflict": {
...@@ -2764,11 +2666,11 @@ ...@@ -2764,11 +2666,11 @@
}, },
"require-dev": { "require-dev": {
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~3.3|~4.0", "symfony/config": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0",
"symfony/event-dispatcher": "~2.8|~3.0|~4.0", "symfony/event-dispatcher": "~3.4|~4.0",
"symfony/lock": "~3.4|~4.0", "symfony/lock": "~3.4|~4.0",
"symfony/process": "~3.3|~4.0" "symfony/process": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
"psr/log": "For using the console logger", "psr/log": "For using the console logger",
...@@ -2779,7 +2681,7 @@ ...@@ -2779,7 +2681,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2806,29 +2708,29 @@ ...@@ -2806,29 +2708,29 @@
], ],
"description": "Symfony Console Component", "description": "Symfony Console Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-29T09:03:43+00:00" "time": "2018-02-26T15:55:47+00:00"
}, },
{ {
"name": "symfony/css-selector", "name": "symfony/css-selector",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/css-selector.git", "url": "https://github.com/symfony/css-selector.git",
"reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556" "reference": "c69f1e93aa898fd9fec627ebef467188151c8dc2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/e66394bc7610e69279bfdb3ab11b4fe65403f556", "url": "https://api.github.com/repos/symfony/css-selector/zipball/c69f1e93aa898fd9fec627ebef467188151c8dc2",
"reference": "e66394bc7610e69279bfdb3ab11b4fe65403f556", "reference": "c69f1e93aa898fd9fec627ebef467188151c8dc2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8" "php": "^7.1.3"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2859,36 +2761,36 @@ ...@@ -2859,36 +2761,36 @@
], ],
"description": "Symfony CssSelector Component", "description": "Symfony CssSelector Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T07:37:34+00:00" "time": "2018-02-03T14:58:37+00:00"
}, },
{ {
"name": "symfony/debug", "name": "symfony/debug",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/debug.git", "url": "https://github.com/symfony/debug.git",
"reference": "53f6af2805daf52a43b393b93d2f24925d35c937" "reference": "1721e4e7effb23480966690cdcdc7d2a4152d489"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/debug/zipball/53f6af2805daf52a43b393b93d2f24925d35c937", "url": "https://api.github.com/repos/symfony/debug/zipball/1721e4e7effb23480966690cdcdc7d2a4152d489",
"reference": "53f6af2805daf52a43b393b93d2f24925d35c937", "reference": "1721e4e7effb23480966690cdcdc7d2a4152d489",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"psr/log": "~1.0" "psr/log": "~1.0"
}, },
"conflict": { "conflict": {
"symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" "symfony/http-kernel": "<3.4"
}, },
"require-dev": { "require-dev": {
"symfony/http-kernel": "~2.8|~3.0|~4.0" "symfony/http-kernel": "~3.4|~4.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -2915,20 +2817,20 @@ ...@@ -2915,20 +2817,20 @@
], ],
"description": "Symfony Debug Component", "description": "Symfony Debug Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-18T22:16:57+00:00" "time": "2018-02-28T21:50:02+00:00"
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v4.0.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
"reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb" "reference": "85eaf6a8ec915487abac52e133efc4a268204428"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/74d33aac36208c4d6757807d9f598f0133a3a4eb", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/85eaf6a8ec915487abac52e133efc4a268204428",
"reference": "74d33aac36208c4d6757807d9f598f0133a3a4eb", "reference": "85eaf6a8ec915487abac52e133efc4a268204428",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -2978,29 +2880,29 @@ ...@@ -2978,29 +2880,29 @@
], ],
"description": "Symfony EventDispatcher Component", "description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T07:38:00+00:00" "time": "2018-02-14T14:11:10+00:00"
}, },
{ {
"name": "symfony/finder", "name": "symfony/finder",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/finder.git", "url": "https://github.com/symfony/finder.git",
"reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f" "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/613e26310776f49a1773b6737c6bd554b8bc8c6f", "url": "https://api.github.com/repos/symfony/finder/zipball/44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
"reference": "613e26310776f49a1773b6737c6bd554b8bc8c6f", "reference": "44a796d2ecc2a16a5fc8f2956a34ee617934d55f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8" "php": "^7.1.3"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3027,34 +2929,33 @@ ...@@ -3027,34 +2929,33 @@
], ],
"description": "Symfony Finder Component", "description": "Symfony Finder Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T07:37:34+00:00" "time": "2018-03-05T18:28:26+00:00"
}, },
{ {
"name": "symfony/http-foundation", "name": "symfony/http-foundation",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-foundation.git", "url": "https://github.com/symfony/http-foundation.git",
"reference": "8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30" "reference": "6c181e81a3a9a7996c62ebd7803592536e729c5a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30", "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6c181e81a3a9a7996c62ebd7803592536e729c5a",
"reference": "8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30", "reference": "6c181e81a3a9a7996c62ebd7803592536e729c5a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.1", "symfony/polyfill-mbstring": "~1.1"
"symfony/polyfill-php70": "~1.6"
}, },
"require-dev": { "require-dev": {
"symfony/expression-language": "~2.8|~3.0|~4.0" "symfony/expression-language": "~3.4|~4.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3081,33 +2982,33 @@ ...@@ -3081,33 +2982,33 @@
], ],
"description": "Symfony HttpFoundation Component", "description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-29T09:03:43+00:00" "time": "2018-03-05T16:01:10+00:00"
}, },
{ {
"name": "symfony/http-kernel", "name": "symfony/http-kernel",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/http-kernel.git", "url": "https://github.com/symfony/http-kernel.git",
"reference": "911d2e5dd4beb63caad9a72e43857de984301907" "reference": "2a1ebfe8c37240500befcb17bceb3893adacffa3"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/911d2e5dd4beb63caad9a72e43857de984301907", "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2a1ebfe8c37240500befcb17bceb3893adacffa3",
"reference": "911d2e5dd4beb63caad9a72e43857de984301907", "reference": "2a1ebfe8c37240500befcb17bceb3893adacffa3",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/debug": "~2.8|~3.0|~4.0", "symfony/debug": "~3.4|~4.0",
"symfony/event-dispatcher": "~2.8|~3.0|~4.0", "symfony/event-dispatcher": "~3.4|~4.0",
"symfony/http-foundation": "^3.4.4|^4.0.4" "symfony/http-foundation": "~3.4.4|~4.0.4"
}, },
"conflict": { "conflict": {
"symfony/config": "<2.8", "symfony/config": "<3.4",
"symfony/dependency-injection": "<3.4", "symfony/dependency-injection": "<3.4.5|<4.0.5,>=4",
"symfony/var-dumper": "<3.3", "symfony/var-dumper": "<3.4",
"twig/twig": "<1.34|<2.4,>=2" "twig/twig": "<1.34|<2.4,>=2"
}, },
"provide": { "provide": {
...@@ -3115,34 +3016,32 @@ ...@@ -3115,34 +3016,32 @@
}, },
"require-dev": { "require-dev": {
"psr/cache": "~1.0", "psr/cache": "~1.0",
"symfony/browser-kit": "~2.8|~3.0|~4.0", "symfony/browser-kit": "~3.4|~4.0",
"symfony/class-loader": "~2.8|~3.0", "symfony/config": "~3.4|~4.0",
"symfony/config": "~2.8|~3.0|~4.0", "symfony/console": "~3.4|~4.0",
"symfony/console": "~2.8|~3.0|~4.0", "symfony/css-selector": "~3.4|~4.0",
"symfony/css-selector": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "^3.4.5|^4.0.5",
"symfony/dependency-injection": "~3.4|~4.0", "symfony/dom-crawler": "~3.4|~4.0",
"symfony/dom-crawler": "~2.8|~3.0|~4.0", "symfony/expression-language": "~3.4|~4.0",
"symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/finder": "~3.4|~4.0",
"symfony/finder": "~2.8|~3.0|~4.0", "symfony/process": "~3.4|~4.0",
"symfony/process": "~2.8|~3.0|~4.0",
"symfony/routing": "~3.4|~4.0", "symfony/routing": "~3.4|~4.0",
"symfony/stopwatch": "~2.8|~3.0|~4.0", "symfony/stopwatch": "~3.4|~4.0",
"symfony/templating": "~2.8|~3.0|~4.0", "symfony/templating": "~3.4|~4.0",
"symfony/translation": "~2.8|~3.0|~4.0", "symfony/translation": "~3.4|~4.0",
"symfony/var-dumper": "~3.3|~4.0" "symfony/var-dumper": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
"symfony/browser-kit": "", "symfony/browser-kit": "",
"symfony/config": "", "symfony/config": "",
"symfony/console": "", "symfony/console": "",
"symfony/dependency-injection": "", "symfony/dependency-injection": "",
"symfony/finder": "",
"symfony/var-dumper": "" "symfony/var-dumper": ""
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3169,7 +3068,7 @@ ...@@ -3169,7 +3068,7 @@
], ],
"description": "Symfony HttpKernel Component", "description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-29T12:29:46+00:00" "time": "2018-03-05T22:27:01+00:00"
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
...@@ -3287,21 +3186,20 @@ ...@@ -3287,21 +3186,20 @@
"time": "2018-01-30T19:27:44+00:00" "time": "2018-01-30T19:27:44+00:00"
}, },
{ {
"name": "symfony/polyfill-php70", "name": "symfony/polyfill-php72",
"version": "v1.7.0", "version": "v1.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php70.git", "url": "https://github.com/symfony/polyfill-php72.git",
"reference": "3532bfcd8f933a7816f3a0a59682fc404776600f" "reference": "8eca20c8a369e069d4f4c2ac9895144112867422"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/3532bfcd8f933a7816f3a0a59682fc404776600f", "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/8eca20c8a369e069d4f4c2ac9895144112867422",
"reference": "3532bfcd8f933a7816f3a0a59682fc404776600f", "reference": "8eca20c8a369e069d4f4c2ac9895144112867422",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"paragonie/random_compat": "~1.0|~2.0",
"php": ">=5.3.3" "php": ">=5.3.3"
}, },
"type": "library", "type": "library",
...@@ -3312,13 +3210,10 @@ ...@@ -3312,13 +3210,10 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Symfony\\Polyfill\\Php70\\": "" "Symfony\\Polyfill\\Php72\\": ""
}, },
"files": [ "files": [
"bootstrap.php" "bootstrap.php"
],
"classmap": [
"Resources/stubs"
] ]
}, },
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",
...@@ -3335,7 +3230,7 @@ ...@@ -3335,7 +3230,7 @@
"homepage": "https://symfony.com/contributors" "homepage": "https://symfony.com/contributors"
} }
], ],
"description": "Symfony polyfill backporting some PHP 7.0+ features to lower PHP versions", "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"keywords": [ "keywords": [
"compatibility", "compatibility",
...@@ -3343,7 +3238,7 @@ ...@@ -3343,7 +3238,7 @@
"portable", "portable",
"shim" "shim"
], ],
"time": "2018-01-30T19:27:44+00:00" "time": "2018-01-31T17:43:24+00:00"
}, },
{ {
"name": "symfony/polyfill-util", "name": "symfony/polyfill-util",
...@@ -3399,25 +3294,25 @@ ...@@ -3399,25 +3294,25 @@
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/process.git", "url": "https://github.com/symfony/process.git",
"reference": "09a5172057be8fc677840e591b17f385e58c7c0d" "reference": "6ed08502a7c9559da8e60ea343bdbd19c3350b3e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/09a5172057be8fc677840e591b17f385e58c7c0d", "url": "https://api.github.com/repos/symfony/process/zipball/6ed08502a7c9559da8e60ea343bdbd19c3350b3e",
"reference": "09a5172057be8fc677840e591b17f385e58c7c0d", "reference": "6ed08502a7c9559da8e60ea343bdbd19c3350b3e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8" "php": "^7.1.3"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3444,38 +3339,38 @@ ...@@ -3444,38 +3339,38 @@
], ],
"description": "Symfony Process Component", "description": "Symfony Process Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-29T09:03:43+00:00" "time": "2018-02-19T12:18:43+00:00"
}, },
{ {
"name": "symfony/routing", "name": "symfony/routing",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/routing.git", "url": "https://github.com/symfony/routing.git",
"reference": "235d01730d553a97732990588407eaf6779bb4b2" "reference": "9c6268c1970c7e507bedc8946bece32a7db23515"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/235d01730d553a97732990588407eaf6779bb4b2", "url": "https://api.github.com/repos/symfony/routing/zipball/9c6268c1970c7e507bedc8946bece32a7db23515",
"reference": "235d01730d553a97732990588407eaf6779bb4b2", "reference": "9c6268c1970c7e507bedc8946bece32a7db23515",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8" "php": "^7.1.3"
}, },
"conflict": { "conflict": {
"symfony/config": "<2.8", "symfony/config": "<3.4",
"symfony/dependency-injection": "<3.3", "symfony/dependency-injection": "<3.4",
"symfony/yaml": "<3.4" "symfony/yaml": "<3.4"
}, },
"require-dev": { "require-dev": {
"doctrine/annotations": "~1.0", "doctrine/annotations": "~1.0",
"doctrine/common": "~2.2", "doctrine/common": "~2.2",
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~2.8|~3.0|~4.0", "symfony/config": "~3.4|~4.0",
"symfony/dependency-injection": "~3.3|~4.0", "symfony/dependency-injection": "~3.4|~4.0",
"symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/expression-language": "~3.4|~4.0",
"symfony/http-foundation": "~2.8|~3.0|~4.0", "symfony/http-foundation": "~3.4|~4.0",
"symfony/yaml": "~3.4|~4.0" "symfony/yaml": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
...@@ -3489,7 +3384,7 @@ ...@@ -3489,7 +3384,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3522,37 +3417,37 @@ ...@@ -3522,37 +3417,37 @@
"uri", "uri",
"url" "url"
], ],
"time": "2018-01-16T18:03:57+00:00" "time": "2018-02-28T21:50:02+00:00"
}, },
{ {
"name": "symfony/translation", "name": "symfony/translation",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/translation.git", "url": "https://github.com/symfony/translation.git",
"reference": "10b32cf0eae28b9b39fe26c456c42b19854c4b84" "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/10b32cf0eae28b9b39fe26c456c42b19854c4b84", "url": "https://api.github.com/repos/symfony/translation/zipball/e20a9b7f9f62cb33a11638b345c248e7d510c938",
"reference": "10b32cf0eae28b9b39fe26c456c42b19854c4b84", "reference": "e20a9b7f9f62cb33a11638b345c248e7d510c938",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"conflict": { "conflict": {
"symfony/config": "<2.8", "symfony/config": "<3.4",
"symfony/dependency-injection": "<3.4", "symfony/dependency-injection": "<3.4",
"symfony/yaml": "<3.4" "symfony/yaml": "<3.4"
}, },
"require-dev": { "require-dev": {
"psr/log": "~1.0", "psr/log": "~1.0",
"symfony/config": "~2.8|~3.0|~4.0", "symfony/config": "~3.4|~4.0",
"symfony/dependency-injection": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0",
"symfony/finder": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0",
"symfony/intl": "^2.8.18|^3.2.5|~4.0", "symfony/intl": "~3.4|~4.0",
"symfony/yaml": "~3.4|~4.0" "symfony/yaml": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
...@@ -3563,7 +3458,7 @@ ...@@ -3563,7 +3458,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3590,25 +3485,26 @@ ...@@ -3590,25 +3485,26 @@
], ],
"description": "Symfony Translation Component", "description": "Symfony Translation Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-18T22:16:57+00:00" "time": "2018-02-22T10:50:29+00:00"
}, },
{ {
"name": "symfony/var-dumper", "name": "symfony/var-dumper",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/var-dumper.git", "url": "https://github.com/symfony/var-dumper.git",
"reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7" "reference": "c7d89044ed6ed3b7d8b558d509cca0666b947e58"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/472a9849930cf21f73abdb02240f17cf5b5bd1a7", "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c7d89044ed6ed3b7d8b558d509cca0666b947e58",
"reference": "472a9849930cf21f73abdb02240f17cf5b5bd1a7", "reference": "c7d89044ed6ed3b7d8b558d509cca0666b947e58",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php72": "~1.5"
}, },
"conflict": { "conflict": {
"phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0" "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
...@@ -3619,13 +3515,12 @@ ...@@ -3619,13 +3515,12 @@
}, },
"suggest": { "suggest": {
"ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).", "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
"ext-intl": "To show region name in time zone dump", "ext-intl": "To show region name in time zone dump"
"ext-symfony_debug": ""
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -3659,65 +3554,7 @@ ...@@ -3659,65 +3554,7 @@
"debug", "debug",
"dump" "dump"
], ],
"time": "2018-01-29T09:03:43+00:00" "time": "2018-02-26T15:55:47+00:00"
},
{
"name": "symfony/yaml",
"version": "v4.0.4",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "ffc60bda1d4a00ec0b32eeabf39dc017bf480028"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/ffc60bda1d4a00ec0b32eeabf39dc017bf480028",
"reference": "ffc60bda1d4a00ec0b32eeabf39dc017bf480028",
"shasum": ""
},
"require": {
"php": "^7.1.3"
},
"conflict": {
"symfony/console": "<3.4"
},
"require-dev": {
"symfony/console": "~3.4|~4.0"
},
"suggest": {
"symfony/console": "For validating YAML files using the lint command"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Yaml\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
"time": "2018-01-21T19:06:11+00:00"
}, },
{ {
"name": "tijsverkoyen/css-to-inline-styles", "name": "tijsverkoyen/css-to-inline-styles",
...@@ -3772,12 +3609,12 @@ ...@@ -3772,12 +3609,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/tymondesigns/jwt-auth.git", "url": "https://github.com/tymondesigns/jwt-auth.git",
"reference": "d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b" "reference": "592e5e10c4e2d40bbf6db7d0e64367847118606a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b", "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/592e5e10c4e2d40bbf6db7d0e64367847118606a",
"reference": "d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b", "reference": "592e5e10c4e2d40bbf6db7d0e64367847118606a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -3839,7 +3676,7 @@ ...@@ -3839,7 +3676,7 @@
"jwt", "jwt",
"laravel" "laravel"
], ],
"time": "2018-02-07T20:55:14+00:00" "time": "2018-03-05T22:18:39+00:00"
}, },
{ {
"name": "unisharp/laravel-filemanager", "name": "unisharp/laravel-filemanager",
...@@ -4138,6 +3975,55 @@ ...@@ -4138,6 +3975,55 @@
"description": "To create a whole module with all related files like model, controller, repository, routes, views etc with a simple GUI.", "description": "To create a whole module with all related files like model, controller, repository, routes, views etc with a simple GUI.",
"time": "2017-12-16T18:48:20+00:00" "time": "2017-12-16T18:48:20+00:00"
}, },
{
"name": "codedungeon/phpunit-result-printer",
"version": "0.6.1",
"source": {
"type": "git",
"url": "https://github.com/mikeerickson/phpunit-pretty-result-printer.git",
"reference": "e4cbf937b422bd2ce5ff9929e77592eb8188dbe6"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/mikeerickson/phpunit-pretty-result-printer/zipball/e4cbf937b422bd2ce5ff9929e77592eb8188dbe6",
"reference": "e4cbf937b422bd2ce5ff9929e77592eb8188dbe6",
"shasum": ""
},
"require": {
"hassankhan/config": "^0.10.0",
"php": "^7.1",
"symfony/yaml": "^2.7|^3.0|^4.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.2",
"spatie/phpunit-watcher": "^1.3"
},
"type": "library",
"autoload": {
"psr-4": {
"Codedungeon\\PHPUnitPrettyResultPrinter\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Mike Erickson",
"email": "codedungeon@gmail.com"
}
],
"description": "PHPUnit Pretty Result Printer",
"keywords": [
"composer",
"package",
"phpunit",
"printer",
"result-printer"
],
"time": "2018-03-02T23:02:03+00:00"
},
{ {
"name": "doctrine/instantiator", "name": "doctrine/instantiator",
"version": "1.1.0", "version": "1.1.0",
...@@ -4348,30 +4234,87 @@ ...@@ -4348,30 +4234,87 @@
], ],
"time": "2015-05-11T14:41:42+00:00" "time": "2015-05-11T14:41:42+00:00"
}, },
{
"name": "hassankhan/config",
"version": "0.10.0",
"source": {
"type": "git",
"url": "https://github.com/hassankhan/config.git",
"reference": "06ac500348af033f1a2e44dc357ca86282626d4a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/hassankhan/config/zipball/06ac500348af033f1a2e44dc357ca86282626d4a",
"reference": "06ac500348af033f1a2e44dc357ca86282626d4a",
"shasum": ""
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.2"
},
"suggest": {
"symfony/yaml": "~2.5"
},
"type": "library",
"autoload": {
"psr-4": {
"Noodlehaus\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Hassan Khan",
"homepage": "http://hassankhan.me/",
"role": "Developer"
}
],
"description": "Lightweight configuration file loader that supports PHP, INI, XML, JSON, and YAML files",
"homepage": "http://hassankhan.me/config/",
"keywords": [
"config",
"configuration",
"ini",
"json",
"microphp",
"unframework",
"xml",
"yaml",
"yml"
],
"time": "2016-02-11T16:21:17+00:00"
},
{ {
"name": "laravel/browser-kit-testing", "name": "laravel/browser-kit-testing",
"version": "v2.0.1", "version": "v4.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/laravel/browser-kit-testing.git", "url": "https://github.com/laravel/browser-kit-testing.git",
"reference": "f0bb9f200ec35f9d876ded6eacfbc60868d311b9" "reference": "3ea22c4da537ca8af83746d583360e8e00081a01"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/laravel/browser-kit-testing/zipball/f0bb9f200ec35f9d876ded6eacfbc60868d311b9", "url": "https://api.github.com/repos/laravel/browser-kit-testing/zipball/3ea22c4da537ca8af83746d583360e8e00081a01",
"reference": "f0bb9f200ec35f9d876ded6eacfbc60868d311b9", "reference": "3ea22c4da537ca8af83746d583360e8e00081a01",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=5.5.9", "php": ">=7.1.3",
"phpunit/phpunit": "~6.0", "phpunit/phpunit": "~7.0",
"symfony/css-selector": "~3.1", "symfony/css-selector": "~4.0",
"symfony/dom-crawler": "~3.1" "symfony/dom-crawler": "~4.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -4394,7 +4337,7 @@ ...@@ -4394,7 +4337,7 @@
"laravel", "laravel",
"testing" "testing"
], ],
"time": "2017-06-21T11:44:53+00:00" "time": "2018-02-08T16:44:18+00:00"
}, },
{ {
"name": "maximebf/debugbar", "name": "maximebf/debugbar",
...@@ -4886,40 +4829,40 @@ ...@@ -4886,40 +4829,40 @@
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "5.3.0", "version": "6.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1" "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/661f34d0bd3f1a7225ef491a70a020ad23a057a1", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f8ca4b604baf23dab89d87773c28cc07405189ba",
"reference": "661f34d0bd3f1a7225ef491a70a020ad23a057a1", "reference": "f8ca4b604baf23dab89d87773c28cc07405189ba",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"php": "^7.0", "php": "^7.1",
"phpunit/php-file-iterator": "^1.4.2", "phpunit/php-file-iterator": "^1.4.2",
"phpunit/php-text-template": "^1.2.1", "phpunit/php-text-template": "^1.2.1",
"phpunit/php-token-stream": "^2.0.1", "phpunit/php-token-stream": "^3.0",
"sebastian/code-unit-reverse-lookup": "^1.0.1", "sebastian/code-unit-reverse-lookup": "^1.0.1",
"sebastian/environment": "^3.0", "sebastian/environment": "^3.0",
"sebastian/version": "^2.0.1", "sebastian/version": "^2.0.1",
"theseer/tokenizer": "^1.1" "theseer/tokenizer": "^1.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^6.0" "phpunit/phpunit": "^7.0"
}, },
"suggest": { "suggest": {
"ext-xdebug": "^2.5.5" "ext-xdebug": "^2.6.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "5.3.x-dev" "dev-master": "6.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -4945,7 +4888,7 @@ ...@@ -4945,7 +4888,7 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2017-12-06T09:29:45+00:00" "time": "2018-02-02T07:01:41+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
...@@ -5037,28 +4980,28 @@ ...@@ -5037,28 +4980,28 @@
}, },
{ {
"name": "phpunit/php-timer", "name": "phpunit/php-timer",
"version": "1.0.9", "version": "2.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git", "url": "https://github.com/sebastianbergmann/php-timer.git",
"reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f" "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/8b8454ea6958c3dee38453d3bd571e023108c91f",
"reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f", "reference": "8b8454ea6958c3dee38453d3bd571e023108c91f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.3.3 || ^7.0" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" "phpunit/phpunit": "^7.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.0-dev" "dev-master": "2.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5073,7 +5016,7 @@ ...@@ -5073,7 +5016,7 @@
"authors": [ "authors": [
{ {
"name": "Sebastian Bergmann", "name": "Sebastian Bergmann",
"email": "sb@sebastian-bergmann.de", "email": "sebastian@phpunit.de",
"role": "lead" "role": "lead"
} }
], ],
...@@ -5082,33 +5025,33 @@ ...@@ -5082,33 +5025,33 @@
"keywords": [ "keywords": [
"timer" "timer"
], ],
"time": "2017-02-26T11:10:40+00:00" "time": "2018-02-01T13:07:23+00:00"
}, },
{ {
"name": "phpunit/php-token-stream", "name": "phpunit/php-token-stream",
"version": "2.0.2", "version": "3.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git", "url": "https://github.com/sebastianbergmann/php-token-stream.git",
"reference": "791198a2c6254db10131eecfe8c06670700904db" "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/21ad88bbba7c3d93530d93994e0a33cd45f02ace",
"reference": "791198a2c6254db10131eecfe8c06670700904db", "reference": "21ad88bbba7c3d93530d93994e0a33cd45f02ace",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-tokenizer": "*", "ext-tokenizer": "*",
"php": "^7.0" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^6.2.4" "phpunit/phpunit": "^7.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0-dev" "dev-master": "3.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5131,20 +5074,20 @@ ...@@ -5131,20 +5074,20 @@
"keywords": [ "keywords": [
"tokenizer" "tokenizer"
], ],
"time": "2017-11-27T05:48:46+00:00" "time": "2018-02-01T13:16:43+00:00"
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "6.5.7", "version": "7.0.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "6bd77b57707c236833d2b57b968e403df060c9d9" "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6bd77b57707c236833d2b57b968e403df060c9d9", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
"reference": "6bd77b57707c236833d2b57b968e403df060c9d9", "reference": "e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
...@@ -5156,15 +5099,15 @@ ...@@ -5156,15 +5099,15 @@
"myclabs/deep-copy": "^1.6.1", "myclabs/deep-copy": "^1.6.1",
"phar-io/manifest": "^1.0.1", "phar-io/manifest": "^1.0.1",
"phar-io/version": "^1.0", "phar-io/version": "^1.0",
"php": "^7.0", "php": "^7.1",
"phpspec/prophecy": "^1.7", "phpspec/prophecy": "^1.7",
"phpunit/php-code-coverage": "^5.3", "phpunit/php-code-coverage": "^6.0",
"phpunit/php-file-iterator": "^1.4.3", "phpunit/php-file-iterator": "^1.4.3",
"phpunit/php-text-template": "^1.2.1", "phpunit/php-text-template": "^1.2.1",
"phpunit/php-timer": "^1.0.9", "phpunit/php-timer": "^2.0",
"phpunit/phpunit-mock-objects": "^5.0.5", "phpunit/phpunit-mock-objects": "^6.0",
"sebastian/comparator": "^2.1", "sebastian/comparator": "^2.1",
"sebastian/diff": "^2.0", "sebastian/diff": "^3.0",
"sebastian/environment": "^3.1", "sebastian/environment": "^3.1",
"sebastian/exporter": "^3.1", "sebastian/exporter": "^3.1",
"sebastian/global-state": "^2.0", "sebastian/global-state": "^2.0",
...@@ -5172,16 +5115,12 @@ ...@@ -5172,16 +5115,12 @@
"sebastian/resource-operations": "^1.0", "sebastian/resource-operations": "^1.0",
"sebastian/version": "^2.0.1" "sebastian/version": "^2.0.1"
}, },
"conflict": {
"phpdocumentor/reflection-docblock": "3.0.2",
"phpunit/dbunit": "<3.0"
},
"require-dev": { "require-dev": {
"ext-pdo": "*" "ext-pdo": "*"
}, },
"suggest": { "suggest": {
"ext-xdebug": "*", "ext-xdebug": "*",
"phpunit/php-invoker": "^1.1" "phpunit/php-invoker": "^2.0"
}, },
"bin": [ "bin": [
"phpunit" "phpunit"
...@@ -5189,7 +5128,7 @@ ...@@ -5189,7 +5128,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "6.5.x-dev" "dev-master": "7.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5215,33 +5154,30 @@ ...@@ -5215,33 +5154,30 @@
"testing", "testing",
"xunit" "xunit"
], ],
"time": "2018-02-26T07:01:09+00:00" "time": "2018-02-26T07:03:12+00:00"
}, },
{ {
"name": "phpunit/phpunit-mock-objects", "name": "phpunit/phpunit-mock-objects",
"version": "5.0.6", "version": "6.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
"reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf" "reference": "e3249dedc2d99259ccae6affbc2684eac37c2e53"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/33fd41a76e746b8fa96d00b49a23dadfa8334cdf", "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/e3249dedc2d99259ccae6affbc2684eac37c2e53",
"reference": "33fd41a76e746b8fa96d00b49a23dadfa8334cdf", "reference": "e3249dedc2d99259ccae6affbc2684eac37c2e53",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/instantiator": "^1.0.5", "doctrine/instantiator": "^1.0.5",
"php": "^7.0", "php": "^7.1",
"phpunit/php-text-template": "^1.2.1", "phpunit/php-text-template": "^1.2.1",
"sebastian/exporter": "^3.1" "sebastian/exporter": "^3.1"
}, },
"conflict": {
"phpunit/phpunit": "<6.0"
},
"require-dev": { "require-dev": {
"phpunit/phpunit": "^6.5" "phpunit/phpunit": "^7.0"
}, },
"suggest": { "suggest": {
"ext-soap": "*" "ext-soap": "*"
...@@ -5249,7 +5185,7 @@ ...@@ -5249,7 +5185,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "5.0.x-dev" "dev-master": "6.0.x-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5274,7 +5210,7 @@ ...@@ -5274,7 +5210,7 @@
"mock", "mock",
"xunit" "xunit"
], ],
"time": "2018-01-06T05:45:45+00:00" "time": "2018-02-15T05:27:38+00:00"
}, },
{ {
"name": "sebastian/code-unit-reverse-lookup", "name": "sebastian/code-unit-reverse-lookup",
...@@ -5387,28 +5323,29 @@ ...@@ -5387,28 +5323,29 @@
}, },
{ {
"name": "sebastian/diff", "name": "sebastian/diff",
"version": "2.0.1", "version": "3.0.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/diff.git", "url": "https://github.com/sebastianbergmann/diff.git",
"reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd" "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/e09160918c66281713f1c324c1f4c4c3037ba1e8",
"reference": "347c1d8b49c5c3ee30c7040ea6fc446790e6bddd", "reference": "e09160918c66281713f1c324c1f4c4c3037ba1e8",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^7.0" "php": "^7.1"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^6.2" "phpunit/phpunit": "^7.0",
"symfony/process": "^2 || ^3.3 || ^4"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "2.0-dev" "dev-master": "3.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5433,9 +5370,12 @@ ...@@ -5433,9 +5370,12 @@
"description": "Diff implementation", "description": "Diff implementation",
"homepage": "https://github.com/sebastianbergmann/diff", "homepage": "https://github.com/sebastianbergmann/diff",
"keywords": [ "keywords": [
"diff" "diff",
"udiff",
"unidiff",
"unified diff"
], ],
"time": "2017-08-03T08:09:46+00:00" "time": "2018-02-01T13:45:15+00:00"
}, },
{ {
"name": "sebastian/environment", "name": "sebastian/environment",
...@@ -5837,24 +5777,24 @@ ...@@ -5837,24 +5777,24 @@
}, },
{ {
"name": "symfony/dom-crawler", "name": "symfony/dom-crawler",
"version": "v3.4.4", "version": "v4.0.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/dom-crawler.git", "url": "https://github.com/symfony/dom-crawler.git",
"reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a" "reference": "26726ddc01601dc9393f2afc3369ce1ca64e4537"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/09bd97b844b3151fab82f2fdd62db9c464b3910a", "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/26726ddc01601dc9393f2afc3369ce1ca64e4537",
"reference": "09bd97b844b3151fab82f2fdd62db9c464b3910a", "reference": "26726ddc01601dc9393f2afc3369ce1ca64e4537",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": "^5.5.9|>=7.0.8", "php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0" "symfony/polyfill-mbstring": "~1.0"
}, },
"require-dev": { "require-dev": {
"symfony/css-selector": "~2.8|~3.0|~4.0" "symfony/css-selector": "~3.4|~4.0"
}, },
"suggest": { "suggest": {
"symfony/css-selector": "" "symfony/css-selector": ""
...@@ -5862,7 +5802,7 @@ ...@@ -5862,7 +5802,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "3.4-dev" "dev-master": "4.0-dev"
} }
}, },
"autoload": { "autoload": {
...@@ -5889,7 +5829,65 @@ ...@@ -5889,7 +5829,65 @@
], ],
"description": "Symfony DomCrawler Component", "description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"time": "2018-01-03T07:37:34+00:00" "time": "2018-02-22T10:50:29+00:00"
},
{
"name": "symfony/yaml",
"version": "v4.0.6",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
"reference": "de5f125ea39de846b90b313b2cfb031a0152d223"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/yaml/zipball/de5f125ea39de846b90b313b2cfb031a0152d223",
"reference": "de5f125ea39de846b90b313b2cfb031a0152d223",
"shasum": ""
},
"require": {
"php": "^7.1.3"
},
"conflict": {
"symfony/console": "<3.4"
},
"require-dev": {
"symfony/console": "~3.4|~4.0"
},
"suggest": {
"symfony/console": "For validating YAML files using the lint command"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Yaml\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
"time": "2018-02-19T20:08:53+00:00"
}, },
{ {
"name": "theseer/tokenizer", "name": "theseer/tokenizer",
...@@ -6096,7 +6094,7 @@ ...@@ -6096,7 +6094,7 @@
"prefer-stable": false, "prefer-stable": false,
"prefer-lowest": false, "prefer-lowest": false,
"platform": { "platform": {
"php": ">=7.0.0" "php": ">=7.1.3"
}, },
"platform-dev": [] "platform-dev": []
} }
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Hash Driver
|--------------------------------------------------------------------------
|
| This option controls the default hash driver that will be used to hash
| passwords for your application. By default, the bcrypt algorithm is
| used; however, you remain free to modify this option if you wish.
|
| Supported: "bcrypt", "argon"
|
*/
'driver' => 'bcrypt',
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that gets used when writing
| messages to the logs. The name specified in this option should match
| one of the channels defined in the "channels" configuration array.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Drivers: "single", "daily", "slack", "syslog",
| "errorlog", "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['single'],
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => 'debug',
'days' => 7,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => 'critical',
],
'syslog' => [
'driver' => 'syslog',
'level' => 'debug',
],
'errorlog' => [
'driver' => 'errorlog',
'level' => 'debug',
],
],
];
<?php
return [
/*
* Set trusted proxy IP addresses.
*
* Both IPv4 and IPv6 addresses are
* supported, along with CIDR notation.
*
* The "*" character is syntactic sugar
* within TrustedProxy to trust any proxy
* that connects directly to your server,
* a requirement when you cannot know the address
* of your proxy (e.g. if using Rackspace balancers).
*
* The "**" character is syntactic sugar within
* TrustedProxy to trust not just any proxy that
* connects directly to your server, but also
* proxies that connect to those proxies, and all
* the way back until you reach the original source
* IP. It will mean that $request->getClientIp()
* always gets the originating client IP, no matter
* how many proxies that client's request has
* subsequently passed through.
*/
'proxies' => [
'192.168.1.10',
],
/*
* Or, to trust all proxies that connect
* directly to your server, uncomment this:
*/
// 'proxies' => '*',
/*
* Or, to trust ALL proxies, including those that
* are in a chain of forwarding, uncomment this:
*/
// 'proxies' => '**',
/*
* Default Header Names
*
* Change these if the proxy does
* not send the default header names.
*
* Note that headers such as X-Forwarded-For
* are transformed to HTTP_X_FORWARDED_FOR format.
*
* The following are Symfony defaults, found in
* \Symfony\Component\HttpFoundation\Request::$trustedHeaders
*
* You may optionally set headers to 'null' here if you'd like
* for them to be considered untrusted instead. Ex:
*
* Illuminate\Http\Request::HEADER_CLIENT_HOST => null,
*
* WARNING: If you're using AWS Elastic Load Balancing or Heroku,
* the FORWARDED and X_FORWARDED_HOST headers should be set to null
* as they are currently unsupported there.
*/
'headers' => [
(defined('Illuminate\Http\Request::HEADER_FORWARDED') ? Illuminate\Http\Request::HEADER_FORWARDED : 'forwarded') => 'FORWARDED',
Illuminate\Http\Request::HEADER_CLIENT_IP => 'X_FORWARDED_FOR',
Illuminate\Http\Request::HEADER_CLIENT_HOST => 'X_FORWARDED_HOST',
Illuminate\Http\Request::HEADER_CLIENT_PROTO => 'X_FORWARDED_PROTO',
Illuminate\Http\Request::HEADER_CLIENT_PORT => 'X_FORWARDED_PORT',
],
];
...@@ -14,7 +14,7 @@ class LogViewerRouteTest extends BrowserKitTestCase ...@@ -14,7 +14,7 @@ class LogViewerRouteTest extends BrowserKitTestCase
{ {
$this->actingAs($this->admin) $this->actingAs($this->admin)
->visit('/admin/log-viewer') ->visit('/admin/log-viewer')
->see('Log Viewer'); ->see('LogViewer');
} }
/** @test **/ /** @test **/
...@@ -25,19 +25,19 @@ class LogViewerRouteTest extends BrowserKitTestCase ...@@ -25,19 +25,19 @@ class LogViewerRouteTest extends BrowserKitTestCase
->see('Logs'); ->see('Logs');
} }
/** @test **/ /* @test **/
public function admin_users_can_see_logviewer_single_date() /*public function admin_users_can_see_logviewer_single_date()
{ {
$this->actingAs($this->admin) $this->actingAs($this->admin)
->visit('/admin/log-viewer/logs/'.date('Y-m-d')) ->visit('/admin/log-viewer/logs/'.date('Y-m-d'))
->see('Log ['.date('Y-m-d').']'); ->see('Log ['.date('Y-m-d').']');
} }*/
/** @test **/ /* @test **/
public function admin_users_can_see_logviewer_single_date_type() /*public function admin_users_can_see_logviewer_single_date_type()
{ {
$this->actingAs($this->admin) $this->actingAs($this->admin)
->visit('/admin/log-viewer/logs/'.date('Y-m-d').'/error') ->visit('/admin/log-viewer/logs/'.date('Y-m-d').'/error')
->see('Log ['.date('Y-m-d').']'); ->see('Log ['.date('Y-m-d').']');
} }*/
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment