Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
laravel-adminpanel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
laravel-adminpanel
Commits
9c33c597
Commit
9c33c597
authored
Mar 08, 2018
by
cygnet
Browse files
Options
Browse Files
Download
Plain Diff
Resolved merge conflict by incorporating changes
parents
99ac8f95
1cb96da9
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
726 additions
and
694 deletions
+726
-694
PermissionController.php
app/Http/Controllers/Api/V1/PermissionController.php
+7
-8
RolesController.php
app/Http/Controllers/Api/V1/RolesController.php
+6
-9
UsersController.php
app/Http/Controllers/Api/V1/UsersController.php
+18
-16
TrustProxies.php
app/Http/Middleware/TrustProxies.php
+26
-0
RoleResource.php
app/Http/Resources/RoleResource.php
+3
-3
UserResource.php
app/Http/Resources/UserResource.php
+8
-9
UserRepository.php
app/Repositories/Backend/Access/User/UserRepository.php
+1
-1
composer.json
composer.json
+10
-18
composer.lock
composer.lock
+549
-551
hashing.php
config/hashing.php
+20
-0
logging.php
config/logging.php
+70
-0
trustedproxy.php
config/trustedproxy.php
+0
-71
api.php
routes/api.php
+1
-1
LogViewerRouteTest.php
tests/Feature/Backend/LogViewerRouteTest.php
+7
-7
No files found.
app/Http/Controllers/Api/V1/PermissionController.php
View file @
9c33c597
...
...
@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Permission\PermissionRepository;
use
Illuminate\Http\Request
;
use
Validator
;
class
PermissionController
extends
APIController
{
protected
$repository
;
...
...
@@ -50,7 +49,7 @@ class PermissionController extends APIController
}
/**
* Creates the Resourse for Role
* Creates the Resourse for Role
.
*
* @param Request $request
*
...
...
@@ -63,12 +62,12 @@ class PermissionController extends APIController
return
$this
->
throwValidation
(
$validation
->
messages
()
->
first
());
}
$this
->
repository
->
create
(
$request
->
all
());
$permission
=
Permission
::
orderBy
(
'created_at'
,
'desc'
)
->
first
();
return
new
PermissionResource
(
$permission
);
}
/**
* @param Role $role
* @param UpdateRoleRequest $request
...
...
@@ -77,13 +76,12 @@ class PermissionController extends APIController
*/
public
function
update
(
Request
$request
,
Permission
$permission
)
{
$validation
=
$this
->
valiatingRequest
(
$request
);
if
(
$validation
->
fails
())
{
return
$this
->
throwValidation
(
$validation
->
messages
()
->
first
());
}
$this
->
repository
->
update
(
$permission
,
$request
->
all
());
$permission
=
Permission
::
findOrfail
(
$permission
->
id
);
...
...
@@ -93,13 +91,14 @@ class PermissionController extends APIController
public
function
valiatingRequest
(
Request
$request
)
{
$validation
=
Validator
::
make
(
$request
->
all
(),[
$validation
=
Validator
::
make
(
$request
->
all
(),
[
'name'
=>
'required|max:191'
,
'display_name'
=>
'required|max:191'
,
]);
return
$validation
;
}
/**
* @param Role $role
* @param DeleteRoleRequest $request
...
...
@@ -110,6 +109,6 @@ class PermissionController extends APIController
{
$this
->
repository
->
delete
(
$permission
);
return
[
"message"
=>
"success"
];
return
[
'message'
=>
'success'
];
}
}
app/Http/Controllers/Api/V1/RolesController.php
View file @
9c33c597
...
...
@@ -8,7 +8,6 @@ use App\Repositories\Backend\Access\Role\RoleRepository;
use
Illuminate\Http\Request
;
use
Validator
;
class
RolesController
extends
APIController
{
protected
$repository
;
...
...
@@ -50,7 +49,7 @@ class RolesController extends APIController
}
/**
* Creates the Resourse for Role
* Creates the Resourse for Role
.
*
* @param Request $request
*
...
...
@@ -65,11 +64,9 @@ class RolesController extends APIController
$this
->
repository
->
create
(
$request
->
all
());
return
new
RoleResource
(
Role
::
orderBy
(
'created_at'
,
'desc'
)
->
first
());
}
/**
* @param Role $role
* @param UpdateRoleRequest $request
...
...
@@ -78,7 +75,6 @@ class RolesController extends APIController
*/
public
function
update
(
Request
$request
,
Role
$role
)
{
$validation
=
$this
->
valiatingRequest
(
$request
);
if
(
$validation
->
fails
())
{
...
...
@@ -87,7 +83,7 @@ class RolesController extends APIController
$this
->
repository
->
update
(
$role
,
$request
->
all
());
$role
=
Role
::
findOrfail
(
$role
->
id
);
$role
=
Role
::
findOrfail
(
$role
->
id
);
return
new
RoleResource
(
$role
);
}
...
...
@@ -96,17 +92,18 @@ class RolesController extends APIController
{
$permissions
=
''
;
if
(
$request
->
post
(
"associated_permissions"
)
!=
'all'
)
{
if
(
$request
->
post
(
'associated_permissions'
)
!=
'all'
)
{
$permissions
=
'required'
;
}
$validation
=
Validator
::
make
(
$request
->
all
(),
[
'name'
=>
'required|max:191'
,
'name'
=>
'required|max:191'
,
'permissions'
=>
$permissions
,
]);
return
$validation
;
}
/**
* @param Role $role
* @param DeleteRoleRequest $request
...
...
@@ -117,6 +114,6 @@ class RolesController extends APIController
{
$this
->
repository
->
delete
(
$role
);
return
[
"message"
=>
"success"
];
return
[
'message'
=>
'success'
];
}
}
app/Http/Controllers/Api/V1/UsersController.php
View file @
9c33c597
...
...
@@ -6,7 +6,6 @@ use App\Http\Resources\UserResource;
use
App\Models\Access\User\User
;
use
App\Repositories\Backend\Access\User\UserRepository
;
use
Illuminate\Http\Request
;
use
Illuminate\Validation\Rule
;
use
Validator
;
class
UsersController
extends
APIController
...
...
@@ -47,10 +46,11 @@ class UsersController extends APIController
public
function
show
(
User
$user
)
{
$data
=
new
UserResource
(
$user
);
$history
[
"history"
]
=
history
()
->
renderEntity
(
'User'
,
$user
->
id
);
$history
[
'history'
]
=
history
()
->
renderEntity
(
'User'
,
$user
->
id
);
$maindata
=
$data
->
toArray
(
$user
);
$maindata
=
array_merge
(
$maindata
,
$history
);
return
$maindata
;
return
$maindata
;
}
/**
...
...
@@ -79,7 +79,6 @@ class UsersController extends APIController
public
function
deleteUserList
(
Request
$request
)
{
$limit
=
$request
->
get
(
'paginate'
)
?
$request
->
get
(
'paginate'
)
:
25
;
return
UserResource
::
collection
(
$this
->
repository
->
getForDataTable
(
0
,
true
)
->
paginate
(
$limit
)
);
...
...
@@ -90,12 +89,12 @@ class UsersController extends APIController
*/
public
function
update
(
Request
$request
,
User
$user
)
{
$validation
=
$this
->
valiatingRequest
(
$request
,
"edit"
,
$user
->
id
);
$validation
=
$this
->
valiatingRequest
(
$request
,
'edit'
,
$user
->
id
);
if
(
$validation
->
fails
())
{
return
$this
->
throwValidation
(
$validation
->
messages
()
->
first
());
}
$this
->
repository
->
update
(
$user
,
$request
);
$user
=
User
::
findOrfail
(
$user
->
id
);
...
...
@@ -114,28 +113,31 @@ class UsersController extends APIController
return
$this
->
throwValidation
(
$validation
->
messages
()
->
first
());
}
$this
->
repository
->
create
(
$request
);
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
(),
[
'first_name'
=>
'required|max:255'
,
'last_name'
=>
'required|max:255'
,
'email'
=>
'required|max:255|email|unique:users,email,'
.
$id
,
'password'
=>
$password
,
'first_name'
=>
'required|max:255'
,
'last_name'
=>
'required|max:255'
,
'email'
=>
'required|max:255|email|unique:users,email,'
.
$id
,
'password'
=>
$password
,
'assignees_roles'
=>
'required'
,
'permissions'
=>
'required'
,
'permissions'
=>
'required'
,
]);
return
$validation
;
}
/**
* Api to delete the resource
* Api to delete the resource.
*
* @param Role $role
* @param DeleteRoleRequest $request
*
...
...
@@ -145,6 +147,6 @@ class UsersController extends APIController
{
$this
->
repository
->
delete
(
$user
);
return
[
"message"
=>
"success"
];
return
[
'message'
=>
'success'
];
}
}
app/Http/Middleware/TrustProxies.php
0 → 100644
View file @
9c33c597
<?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
;
}
app/Http/Resources/RoleResource.php
View file @
9c33c597
...
...
@@ -18,9 +18,9 @@ class RoleResource extends Resource
return
[
'id'
=>
$this
->
id
,
'name'
=>
$this
->
name
,
"permission"
=>
(
$this
->
all
)
?
"All"
:
optional
(
$this
->
permissions
)
->
pluck
(
"display_name"
),
"noofuses"
=>
$this
->
users
->
count
(),
"sort"
=>
$this
->
sort
,
'permission'
=>
(
$this
->
all
)
?
'All'
:
optional
(
$this
->
permissions
)
->
pluck
(
'display_name'
),
'noofuses'
=>
$this
->
users
->
count
(),
'sort'
=>
$this
->
sort
,
];
}
}
app/Http/Resources/UserResource.php
View file @
9c33c597
...
...
@@ -16,16 +16,15 @@ class UserResource extends Resource
public
function
toArray
(
$request
)
{
return
[
'id'
=>
$this
->
id
,
'first_name'
=>
$this
->
first_name
,
'last_name'
=>
$this
->
last_name
,
'email'
=>
$this
->
email
,
'confirmed'
=>
$this
->
confirmed
,
'role'
=>
optional
(
$this
->
roles
()
->
first
())
->
name
,
'registered_at'
=>
$this
->
created_at
->
toIso8601String
(),
'id'
=>
$this
->
id
,
'first_name'
=>
$this
->
first_name
,
'last_name'
=>
$this
->
last_name
,
'email'
=>
$this
->
email
,
'confirmed'
=>
$this
->
confirmed
,
'role'
=>
optional
(
$this
->
roles
()
->
first
())
->
name
,
'registered_at'
=>
$this
->
created_at
->
toIso8601String
(),
'last_updated_at'
=>
$this
->
updated_at
->
toIso8601String
(),
];
}
}
app/Repositories/Backend/Access/User/UserRepository.php
View file @
9c33c597
...
...
@@ -137,7 +137,7 @@ class UserRepository extends BaseRepository
$data
=
$request
->
except
(
'assignees_roles'
,
'permissions'
);
$roles
=
$request
->
get
(
'assignees_roles'
);
$permissions
=
$request
->
get
(
'permissions'
);
$this
->
checkUserByEmail
(
$data
,
$user
);
DB
::
transaction
(
function
()
use
(
$user
,
$data
,
$roles
,
$permissions
)
{
...
...
composer.json
View file @
9c33c597
...
...
@@ -11,31 +11,31 @@
"license"
:
"
MIT
"
,
"type"
:
"project"
,
"require"
:
{
"php"
:
">=7.
0.0
"
,
"
arcanedev/log-viewer
"
:
"
^4.
4
"
,
"php"
:
">=7.
1.3
"
,
"
arcanedev/log-viewer
"
:
"
^4.
5
"
,
"
arcanedev/no-captcha
"
:
"
^5.0
"
,
"
codedungeon/phpunit-result-printer
"
:
"
0.4.4
"
,
"
creativeorange/gravatar
"
:
"
~1.0
"
,
"
davejamesmiller/laravel-breadcrumbs
"
:
"
^
4.1
"
,
"
davejamesmiller/laravel-breadcrumbs
"
:
"
^
5.0
"
,
"
doctrine/dbal
"
:
"
^2.6
"
,
"
fideloper/proxy
"
:
"
~
3.3
"
,
"
fideloper/proxy
"
:
"
~
4.0
"
,
"
hieu-le/active
"
:
"
^3.5
"
,
"
laravel/framework
"
:
"
5.
5
.*
"
,
"
laravel/framework
"
:
"
5.
6
.*
"
,
"
laravel/socialite
"
:
"
^3.0
"
,
"
laravel/tinker
"
:
"
~1.0
"
,
"
laravelcollective/html
"
:
"
^5.
5
.0
"
,
"
laravelcollective/html
"
:
"
^5.
4
.0
"
,
"
tymon/jwt-auth
"
:
"
dev-develop
"
,
"
unisharp/laravel-filemanager
"
:
"
~1.8
"
,
"
yajra/laravel-datatables-oracle
"
:
"
~8.0
"
"
yajra/laravel-datatables-oracle
"
:
"
~8.0
"
},
"require-dev"
:
{
"
barryvdh/laravel-debugbar
"
:
"
^3.0
"
,
"
codedungeon/phpunit-result-printer
"
:
"
^0.6.0
"
,
"
bvipul/generator
"
:
"
^0.9.1
"
,
"
filp/whoops
"
:
"
~2.0
"
,
"
fzaninotto/faker
"
:
"
~1.4
"
,
"
laravel/browser-kit-testing
"
:
"
^
2
.0
"
,
"
laravel/browser-kit-testing
"
:
"
^
4.0
.0
"
,
"
mockery/mockery
"
:
"
0.9.*
"
,
"
phpunit/phpunit
"
:
"
~
6
.0
"
,
"
phpunit/phpunit
"
:
"
~
7
.0
"
,
"
xethron/migrations-generator
"
:
"
2.0.2
"
},
"autoload"
:
{
...
...
@@ -69,14 +69,6 @@
"post-create-project-cmd"
:
[
"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"
:
[
"Illuminate
\\
Foundation
\\
ComposerScripts::postAutoloadDump"
,
"@php artisan package:discover"
...
...
composer.lock
View file @
9c33c597
...
...
@@ -4,31 +4,31 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
"This file is @generated automatically"
],
"content-hash": "
a9ca8bd1e8e71ad163a9d99a2eaee057
",
"content-hash": "
bc9d94beb0a4b88c5eaee8a9a2238bea
",
"packages": [
{
"name": "arcanedev/log-viewer",
"version": "4.
4
.1",
"version": "4.
5
.1",
"source": {
"type": "git",
"url": "https://github.com/ARCANEDEV/LogViewer.git",
"reference": "
b14e2de1dfe84db80fbc9eb4b12ce05b85a09472
"
"reference": "
22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/
b14e2de1dfe84db80fbc9eb4b12ce05b85a09472
",
"reference": "
b14e2de1dfe84db80fbc9eb4b12ce05b85a09472
",
"url": "https://api.github.com/repos/ARCANEDEV/LogViewer/zipball/
22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e
",
"reference": "
22bdffe6f9d26e466cc7fd434e447a4b3e9aff0e
",
"shasum": ""
},
"require": {
"arcanedev/support": "~4.
1
",
"php": ">=7.
0
",
"arcanedev/support": "~4.
3.0
",
"php": ">=7.
1.3
",
"psr/log": "~1.0"
},
"require-dev": {
"orchestra/testbench": "~3.
5
.0",
"phpunit/phpcov": "~
4
.0",
"phpunit/phpunit": "~
6
.0"
"orchestra/testbench": "~3.
6
.0",
"phpunit/phpcov": "~
5
.0",
"phpunit/phpunit": "~
7
.0"
},
"type": "library",
"extra": {
...
...
@@ -70,24 +70,24 @@
"log-viewer",
"logviewer"
],
"time": "201
7-10-28T10:32:04
+00:00"
"time": "201
8-02-08T15:42:11
+00:00"
},
{
"name": "arcanedev/no-captcha",
"version": "5.0.
2
",
"version": "5.0.
1
",
"source": {
"type": "git",
"url": "https://github.com/ARCANEDEV/noCAPTCHA.git",
"reference": "
97010dcd6b83e73ae629f1c33975bbee2f15ea84
"
"reference": "
c02d7f1ef25d281f304b9af460a13f4601bbc44c
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/noCAPTCHA/zipball/
97010dcd6b83e73ae629f1c33975bbee2f15ea84
",
"reference": "
97010dcd6b83e73ae629f1c33975bbee2f15ea84
",
"url": "https://api.github.com/repos/ARCANEDEV/noCAPTCHA/zipball/
c02d7f1ef25d281f304b9af460a13f4601bbc44c
",
"reference": "
c02d7f1ef25d281f304b9af460a13f4601bbc44c
",
"shasum": ""
},
"require": {
"arcanedev/support": "~4.
2.
0",
"arcanedev/support": "~4.0",
"ext-curl": "*",
"ext-json": "*",
"php": ">=7.0",
...
...
@@ -95,7 +95,6 @@
},
"require-dev": {
"arcanedev/laravel-html": "~5.0",
"orchestra/testbench": "~3.5.0",
"phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0"
},
...
...
@@ -137,31 +136,31 @@
"no-captcha",
"recaptcha"
],
"time": "201
8-02-12T05:16:30
+00:00"
"time": "201
7-09-08T13:38:56
+00:00"
},
{
"name": "arcanedev/support",
"version": "4.
2.2
",
"version": "4.
3.0
",
"source": {
"type": "git",
"url": "https://github.com/ARCANEDEV/Support.git",
"reference": "
525166d89920e83b07efbb2fbccc5b128484cf0f
"
"reference": "
23478c1439c8bdcb7aaf26b817b4886d6c52d423
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/
525166d89920e83b07efbb2fbccc5b128484cf0f
",
"reference": "
525166d89920e83b07efbb2fbccc5b128484cf0f
",
"url": "https://api.github.com/repos/ARCANEDEV/Support/zipball/
23478c1439c8bdcb7aaf26b817b4886d6c52d423
",
"reference": "
23478c1439c8bdcb7aaf26b817b4886d6c52d423
",
"shasum": ""
},
"require": {
"illuminate/filesystem": "~5.
5
.0",
"illuminate/support": "~5.
5
.0",
"php": ">=7.
0
"
"illuminate/filesystem": "~5.
6
.0",
"illuminate/support": "~5.
6
.0",
"php": ">=7.
1.3
"
},
"require-dev": {
"orchestra/testbench": "~3.
5
.0",
"phpunit/phpcov": "~
4
.0",
"phpunit/phpunit": "~
6
.0"
"orchestra/testbench": "~3.
6
.0",
"phpunit/phpcov": "~
5
.0",
"phpunit/phpunit": "~
7
.0"
},
"type": "library",
"autoload": {
...
...
@@ -192,55 +191,7 @@
"laravel",
"support"
],
"time": "2018-02-07T18:22:19+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"
"time": "2018-02-08T00:42:15+00:00"
},
{
"name": "creativeorange/gravatar",
...
...
@@ -288,28 +239,28 @@
},
{
"name": "davejamesmiller/laravel-breadcrumbs",
"version": "
4.2
.0",
"version": "
5.0
.0",
"source": {
"type": "git",
"url": "https://github.com/davejamesmiller/laravel-breadcrumbs.git",
"reference": "
368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1
"
"reference": "
590cb313d783460bdac4d3a801c83e6ecf561eb7
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/
368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1
",
"reference": "
368d7b3a2cd21fe2e648756e5d01d3fe4fbe98e1
",
"url": "https://api.github.com/repos/davejamesmiller/laravel-breadcrumbs/zipball/
590cb313d783460bdac4d3a801c83e6ecf561eb7
",
"reference": "
590cb313d783460bdac4d3a801c83e6ecf561eb7
",
"shasum": ""
},
"require": {
"illuminate/support": "5.
5
.*",
"illuminate/view": "5.
5
.*",
"php": ">=7.
0.0
"
"illuminate/support": "5.
6
.*",
"illuminate/view": "5.
6
.*",
"php": ">=7.
1.3
"
},
"require-dev": {
"laravel/framework": "5.
5
.*",
"orchestra/testbench": "3.
5
.*",
"php
unit/phpunit": "6.*
",
"
satooshi/php-coveralls": "1.0
.*"
"laravel/framework": "5.
6
.*",
"orchestra/testbench": "3.
6
.*",
"php
-coveralls/php-coveralls": "^1.0
",
"
phpunit/phpunit": "7
.*"
},
"type": "library",
"extra": {
...
...
@@ -329,7 +280,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT
License
"
"MIT"
],
"authors": [
{
...
...
@@ -343,7 +294,7 @@
"keywords": [
"laravel"
],
"time": "201
7-09-14T08:23:50
+00:00"
"time": "201
8-02-10T19:00:08
+00:00"
},
{
"name": "dnoegel/php-xdg-base-dir",
...
...
@@ -854,6 +805,55 @@
],
"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",
"version": "2.1.3",
...
...
@@ -913,19 +913,20 @@
},
{
"name": "erusev/parsedown",
"version": "1.
6.4
",
"version": "1.
7.1
",
"source": {
"type": "git",
"url": "https://github.com/erusev/parsedown.git",
"reference": "
fbe3fe878f4fe69048bb8a52783a09802004f548
"
"reference": "
92e9c27ba0e74b8b028b111d1b6f956a15c01fc1
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/erusev/parsedown/zipball/
fbe3fe878f4fe69048bb8a52783a09802004f548
",
"reference": "
fbe3fe878f4fe69048bb8a52783a09802004f548
",
"url": "https://api.github.com/repos/erusev/parsedown/zipball/
92e9c27ba0e74b8b028b111d1b6f956a15c01fc1
",
"reference": "
92e9c27ba0e74b8b028b111d1b6f956a15c01fc1
",
"shasum": ""
},
"require": {
"ext-mbstring": "*",
"php": ">=5.3.0"
},
"require-dev": {
...
...
@@ -954,20 +955,20 @@
"markdown",
"parser"
],
"time": "201
7-11-14T20:44:03
+00:00"
"time": "201
8-03-08T01:11:30
+00:00"
},
{
"name": "fideloper/proxy",
"version": "
3.3.4
",
"version": "
4.0.0
",
"source": {
"type": "git",
"url": "https://github.com/fideloper/TrustedProxy.git",
"reference": "
9cdf6f118af58d89764249bbcc7bb260c132924f
"
"reference": "
cf8a0ca4b85659b9557e206c90110a6a4dba980a
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/
9cdf6f118af58d89764249bbcc7bb260c132924f
",
"reference": "
9cdf6f118af58d89764249bbcc7bb260c132924f
",
"url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/
cf8a0ca4b85659b9557e206c90110a6a4dba980a
",
"reference": "
cf8a0ca4b85659b9557e206c90110a6a4dba980a
",
"shasum": ""
},
"require": {
...
...
@@ -975,15 +976,12 @@
"php": ">=5.4.0"
},
"require-dev": {
"illuminate/http": "~5.
0
",
"mockery/mockery": "~
0.9.3
",
"phpunit/phpunit": "^
5.7
"
"illuminate/http": "~5.
6
",
"mockery/mockery": "~
1.0
",
"phpunit/phpunit": "^
6.0
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
},
"laravel": {
"providers": [
"Fideloper\\Proxy\\TrustedProxyServiceProvider"
...
...
@@ -1011,7 +1009,7 @@
"proxy",
"trusted proxy"
],
"time": "201
7-06-15T17:19:42
+00:00"
"time": "201
8-02-07T20:20:57
+00:00"
},
{
"name": "guzzlehttp/guzzle",
...
...
@@ -1194,63 +1192,6 @@
],
"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",
"version": "3.5.1",
...
...
@@ -1473,43 +1414,46 @@
},
{
"name": "laravel/framework",
"version": "v5.
5.35
",
"version": "v5.
6.9
",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
"reference": "
b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce
"
"reference": "
98fdbb098cf52a74441fe949be121c18e3dbbe6a
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/framework/zipball/
b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce
",
"reference": "
b0e15382ecf51a082ef8b2ae0d26f62972f6c3ce
",
"url": "https://api.github.com/repos/laravel/framework/zipball/
98fdbb098cf52a74441fe949be121c18e3dbbe6a
",
"reference": "
98fdbb098cf52a74441fe949be121c18e3dbbe6a
",
"shasum": ""
},
"require": {
"doctrine/inflector": "~1.1",
"erusev/parsedown": "~1.6",
"dragonmantank/cron-expression": "~2.0",
"erusev/parsedown": "~1.7",
"ext-mbstring": "*",
"ext-openssl": "*",
"league/flysystem": "~1.0",
"monolog/monolog": "~1.12",
"mtdowling/cron-expression": "~1.0",
"nesbot/carbon": "~1.20",
"php": ">=7.0",
"nesbot/carbon": "^1.22.1",
"php": "^7.1.3",
"psr/container": "~1.0",
"psr/simple-cache": "^1.0",
"ramsey/uuid": "
~3.0
",
"ramsey/uuid": "
^3.7
",
"swiftmailer/swiftmailer": "~6.0",
"symfony/console": "~
3.3
",
"symfony/debug": "~
3.3
",
"symfony/finder": "~
3.3
",
"symfony/http-foundation": "~
3.3
",
"symfony/http-kernel": "~
3.3
",
"symfony/process": "~
3.3
",
"symfony/routing": "~
3.3
",
"symfony/var-dumper": "~
3.3
",
"tijsverkoyen/css-to-inline-styles": "
~2.2
",
"symfony/console": "~
4.0
",
"symfony/debug": "~
4.0
",
"symfony/finder": "~
4.0
",
"symfony/http-foundation": "~
4.0
",
"symfony/http-kernel": "~
4.0
",
"symfony/process": "~
4.0
",
"symfony/routing": "~
4.0
",
"symfony/var-dumper": "~
4.0
",
"tijsverkoyen/css-to-inline-styles": "
^2.2.1
",
"vlucas/phpdotenv": "~2.2"
},
"conflict": {
"tightenco/collect": "<5.5.33"
},
"replace": {
"illuminate/auth": "self.version",
"illuminate/broadcasting": "self.version",
...
...
@@ -1538,24 +1482,24 @@
"illuminate/support": "self.version",
"illuminate/translation": "self.version",
"illuminate/validation": "self.version",
"illuminate/view": "self.version",
"tightenco/collect": "<5.5.33"
"illuminate/view": "self.version"
},
"require-dev": {
"aws/aws-sdk-php": "~3.0",
"doctrine/dbal": "~2.
5
",
"doctrine/dbal": "~2.
6
",
"filp/whoops": "^2.1.4",
"mockery/mockery": "~1.0",
"orchestra/testbench-core": "3.5.*",
"moontoast/math": "^1.1",
"orchestra/testbench-core": "3.6.*",
"pda/pheanstalk": "~3.0",
"phpunit/phpunit": "~
6
.0",
"phpunit/phpunit": "~
7
.0",
"predis/predis": "^1.1.1",
"symfony/css-selector": "~
3.3
",
"symfony/dom-crawler": "~
3.3
"
"symfony/css-selector": "~
4.0
",
"symfony/dom-crawler": "~
4.0
"
},
"suggest": {
"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-posix": "Required to use all features of the queue worker.",
"fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).",
...
...
@@ -1564,18 +1508,19 @@
"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-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).",
"pda/pheanstalk": "Required to use the beanstalk queue driver (~3.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).",
"symfony/css-selector": "Required to use some of the crawler integration testing tools (~
3.3
).",
"symfony/dom-crawler": "Required to use most 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 (~
4.0
).",
"symfony/psr-http-message-bridge": "Required to psr7 bridging features (~1.0)."
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "5.
5
-dev"
"dev-master": "5.
6
-dev"
}
},
"autoload": {
...
...
@@ -1603,7 +1548,7 @@
"framework",
"laravel"
],
"time": "2018-0
2-22T19:56:2
9+00:00"
"time": "2018-0
3-07T14:04:4
9+00:00"
},
{
"name": "laravel/socialite",
...
...
@@ -1669,16 +1614,16 @@
},
{
"name": "laravel/tinker",
"version": "v1.0.
3
",
"version": "v1.0.
4
",
"source": {
"type": "git",
"url": "https://github.com/laravel/tinker.git",
"reference": "
852c2abe0b0991555a403f1c0583e64de6acb4a6
"
"reference": "
eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/tinker/zipball/
852c2abe0b0991555a403f1c0583e64de6acb4a6
",
"reference": "
852c2abe0b0991555a403f1c0583e64de6acb4a6
",
"url": "https://api.github.com/repos/laravel/tinker/zipball/
eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8
",
"reference": "
eb8d3cfb41b7f74fb0ef4724e459d44f4cbb35b8
",
"shasum": ""
},
"require": {
...
...
@@ -1728,38 +1673,40 @@
"laravel",
"psysh"
],
"time": "201
7-12-18T16:25:11
+00:00"
"time": "201
8-03-06T13:48:07
+00:00"
},
{
"name": "laravelcollective/html",
"version": "v5.
5
.3",
"version": "v5.
6
.3",
"source": {
"type": "git",
"url": "https://github.com/LaravelCollective/html.git",
"reference": "
b79edc7acf574144c9811277286b4cafee8a07cc
"
"reference": "
41cd9291a69bd24f2184e504be041348a87308a8
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/
b79edc7acf574144c9811277286b4cafee8a07cc
",
"reference": "
b79edc7acf574144c9811277286b4cafee8a07cc
",
"url": "https://api.github.com/repos/LaravelCollective/html/zipball/
41cd9291a69bd24f2184e504be041348a87308a8
",
"reference": "
41cd9291a69bd24f2184e504be041348a87308a8
",
"shasum": ""
},
"require": {
"illuminate/http": "5.
5
.*",
"illuminate/routing": "5.
5
.*",
"illuminate/session": "5.
5
.*",
"illuminate/support": "5.
5
.*",
"illuminate/view": "5.
5
.*",
"php": ">=7.
0.0
"
"illuminate/http": "5.
6
.*",
"illuminate/routing": "5.
6
.*",
"illuminate/session": "5.
6
.*",
"illuminate/support": "5.
6
.*",
"illuminate/view": "5.
6
.*",
"php": ">=7.
1.3
"
},
"require-dev": {
"illuminate/database": "5.
5
.*",
"mockery/mockery": "~
0.9.4
",
"illuminate/database": "5.
6
.*",
"mockery/mockery": "~
1.0
",
"phpunit/phpunit": "~5.4"
},
"type": "library",
"extra": {
"branch-alias": [],
"branch-alias": {
"dev-master": "5.6-dev"
},
"laravel": {
"providers": [
"Collective\\Html\\HtmlServiceProvider"
...
...
@@ -1794,7 +1741,7 @@
],
"description": "HTML and Form Builders for the Laravel Framework",
"homepage": "https://laravelcollective.com",
"time": "2018-02-12T14:19:
55
+00:00"
"time": "2018-02-12T14:19:
42
+00:00"
},
{
"name": "lcobucci/jwt",
...
...
@@ -1856,16 +1803,16 @@
},
{
"name": "league/flysystem",
"version": "1.0.4
2
",
"version": "1.0.4
3
",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
"reference": "
09eabc54e199950041aef258a85847676496fe8e
"
"reference": "
1ce7cc142d906ba58dc54c82915d355a9191c8a8
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/
09eabc54e199950041aef258a85847676496fe8e
",
"reference": "
09eabc54e199950041aef258a85847676496fe8e
",
"url": "https://api.github.com/repos/thephpleague/flysystem/zipball/
1ce7cc142d906ba58dc54c82915d355a9191c8a8
",
"reference": "
1ce7cc142d906ba58dc54c82915d355a9191c8a8
",
"shasum": ""
},
"require": {
...
...
@@ -1936,7 +1883,7 @@
"sftp",
"storage"
],
"time": "2018-0
1-27T16:03:56
+00:00"
"time": "2018-0
3-01T10:27:04
+00:00"
},
{
"name": "league/oauth1-client",
...
...
@@ -2079,50 +2026,6 @@
],
"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",
"version": "7.2.3",
...
...
@@ -2188,25 +2091,25 @@
},
{
"name": "nesbot/carbon",
"version": "1.2
2.1
",
"version": "1.2
3.0
",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
"reference": "
7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc
"
"reference": "
4a874a39b2b00d7e0146cd46fab6f47c41ce9e65
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/
7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc
",
"reference": "
7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc
",
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/
4a874a39b2b00d7e0146cd46fab6f47c41ce9e65
",
"reference": "
4a874a39b2b00d7e0146cd46fab6f47c41ce9e65
",
"shasum": ""
},
"require": {
"php": ">=5.3.0",
"symfony/translation": "~2.6 || ~3.0"
"symfony/translation": "~2.6 || ~3.0
|| ~4.0
"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2",
"phpunit/phpunit": "
~4.0 || ~5.0
"
"phpunit/phpunit": "
^4.8.35 || ^5.7
"
},
"type": "library",
"extra": {
...
...
@@ -2237,20 +2140,20 @@
"datetime",
"time"
],
"time": "201
7-01-16T07:55:07
+00:00"
"time": "201
8-02-28T09:22:05
+00:00"
},
{
"name": "nikic/php-parser",
"version": "v3.1.
4
",
"version": "v3.1.
5
",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
"reference": "
e57b3a09784f846411aa7ed664eedb73e3399078
"
"reference": "
bb87e28e7d7b8d9a7fda231d37457c9210faf6ce
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/
e57b3a09784f846411aa7ed664eedb73e3399078
",
"reference": "
e57b3a09784f846411aa7ed664eedb73e3399078
",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/
bb87e28e7d7b8d9a7fda231d37457c9210faf6ce
",
"reference": "
bb87e28e7d7b8d9a7fda231d37457c9210faf6ce
",
"shasum": ""
},
"require": {
...
...
@@ -2288,7 +2191,7 @@
"parser",
"php"
],
"time": "2018-0
1-25T21:31:33
+00:00"
"time": "2018-0
2-28T20:30:58
+00:00"
},
{
"name": "paragonie/random_compat",
...
...
@@ -2486,16 +2389,16 @@
},
{
"name": "psr/simple-cache",
"version": "1.0.
0
",
"version": "1.0.
1
",
"source": {
"type": "git",
"url": "https://github.com/php-fig/simple-cache.git",
"reference": "
753fa598e8f3b9966c886fe13f370baa45ef0e24
"
"reference": "
408d5eafb83c57f6365a3ca330ff23aa4a5fa39b
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/
753fa598e8f3b9966c886fe13f370baa45ef0e24
",
"reference": "
753fa598e8f3b9966c886fe13f370baa45ef0e24
",
"url": "https://api.github.com/repos/php-fig/simple-cache/zipball/
408d5eafb83c57f6365a3ca330ff23aa4a5fa39b
",
"reference": "
408d5eafb83c57f6365a3ca330ff23aa4a5fa39b
",
"shasum": ""
},
"require": {
...
...
@@ -2530,7 +2433,7 @@
"psr-16",
"simple-cache"
],
"time": "2017-
01-02T13:31:39
+00:00"
"time": "2017-
10-23T01:57:42
+00:00"
},
{
"name": "psy/psysh",
...
...
@@ -2741,21 +2644,20 @@
},
{
"name": "symfony/console",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
"reference": "
26b6f419edda16c19775211987651cb27baea7f
1"
"reference": "
555c8dbe0ae9e561740451eabdbed2cc554b6a5
1"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/
26b6f419edda16c19775211987651cb27baea7f
1",
"reference": "
26b6f419edda16c19775211987651cb27baea7f
1",
"url": "https://api.github.com/repos/symfony/console/zipball/
555c8dbe0ae9e561740451eabdbed2cc554b6a5
1",
"reference": "
555c8dbe0ae9e561740451eabdbed2cc554b6a5
1",
"shasum": ""
},
"require": {
"php": "^5.5.9|>=7.0.8",
"symfony/debug": "~2.8|~3.0|~4.0",
"php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0"
},
"conflict": {
...
...
@@ -2764,11 +2666,11 @@
},
"require-dev": {
"psr/log": "~1.0",
"symfony/config": "~3.
3
|~4.0",
"symfony/config": "~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/process": "~3.
3
|~4.0"
"symfony/process": "~3.
4
|~4.0"
},
"suggest": {
"psr/log": "For using the console logger",
...
...
@@ -2779,7 +2681,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -2806,29 +2708,29 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-29T09:03:43
+00:00"
"time": "2018-0
2-26T15:55:47
+00:00"
},
{
"name": "symfony/css-selector",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
"reference": "
e66394bc7610e69279bfdb3ab11b4fe65403f556
"
"reference": "
c69f1e93aa898fd9fec627ebef467188151c8dc2
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/
e66394bc7610e69279bfdb3ab11b4fe65403f556
",
"reference": "
e66394bc7610e69279bfdb3ab11b4fe65403f556
",
"url": "https://api.github.com/repos/symfony/css-selector/zipball/
c69f1e93aa898fd9fec627ebef467188151c8dc2
",
"reference": "
c69f1e93aa898fd9fec627ebef467188151c8dc2
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
"
"php": "^
7.1.3
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -2859,36 +2761,36 @@
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-03T07:37:34
+00:00"
"time": "2018-0
2-03T14:58:37
+00:00"
},
{
"name": "symfony/debug",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
"reference": "
53f6af2805daf52a43b393b93d2f24925d35c937
"
"reference": "
1721e4e7effb23480966690cdcdc7d2a4152d489
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/debug/zipball/
53f6af2805daf52a43b393b93d2f24925d35c937
",
"reference": "
53f6af2805daf52a43b393b93d2f24925d35c937
",
"url": "https://api.github.com/repos/symfony/debug/zipball/
1721e4e7effb23480966690cdcdc7d2a4152d489
",
"reference": "
1721e4e7effb23480966690cdcdc7d2a4152d489
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
",
"php": "^
7.1.3
",
"psr/log": "~1.0"
},
"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": {
"symfony/http-kernel": "~
2.8|~3.0
|~4.0"
"symfony/http-kernel": "~
3.4
|~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -2915,20 +2817,20 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-18T22:16:57
+00:00"
"time": "2018-0
2-28T21:50:02
+00:00"
},
{
"name": "symfony/event-dispatcher",
"version": "v4.0.
4
",
"version": "v4.0.
6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
"reference": "
74d33aac36208c4d6757807d9f598f0133a3a4eb
"
"reference": "
85eaf6a8ec915487abac52e133efc4a268204428
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/
74d33aac36208c4d6757807d9f598f0133a3a4eb
",
"reference": "
74d33aac36208c4d6757807d9f598f0133a3a4eb
",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/
85eaf6a8ec915487abac52e133efc4a268204428
",
"reference": "
85eaf6a8ec915487abac52e133efc4a268204428
",
"shasum": ""
},
"require": {
...
...
@@ -2978,29 +2880,29 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-03T07:38:0
0+00:00"
"time": "2018-0
2-14T14:11:1
0+00:00"
},
{
"name": "symfony/finder",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
"reference": "
613e26310776f49a1773b6737c6bd554b8bc8c6
f"
"reference": "
44a796d2ecc2a16a5fc8f2956a34ee617934d55
f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/finder/zipball/
613e26310776f49a1773b6737c6bd554b8bc8c6
f",
"reference": "
613e26310776f49a1773b6737c6bd554b8bc8c6
f",
"url": "https://api.github.com/repos/symfony/finder/zipball/
44a796d2ecc2a16a5fc8f2956a34ee617934d55
f",
"reference": "
44a796d2ecc2a16a5fc8f2956a34ee617934d55
f",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
"
"php": "^
7.1.3
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3027,34 +2929,33 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-03T07:37:34
+00:00"
"time": "2018-0
3-05T18:28:26
+00:00"
},
{
"name": "symfony/http-foundation",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
"reference": "
8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30
"
"reference": "
6c181e81a3a9a7996c62ebd7803592536e729c5a
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/
8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30
",
"reference": "
8c39071ac9cc7e6d8dab1d556c990dc0d2cc3d30
",
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/
6c181e81a3a9a7996c62ebd7803592536e729c5a
",
"reference": "
6c181e81a3a9a7996c62ebd7803592536e729c5a
",
"shasum": ""
},
"require": {
"php": "^5.5.9|>=7.0.8",
"symfony/polyfill-mbstring": "~1.1",
"symfony/polyfill-php70": "~1.6"
"php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.1"
},
"require-dev": {
"symfony/expression-language": "~
2.8|~3.0
|~4.0"
"symfony/expression-language": "~
3.4
|~4.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3081,33 +2982,33 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-29T09:03:43
+00:00"
"time": "2018-0
3-05T16:01:10
+00:00"
},
{
"name": "symfony/http-kernel",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "
911d2e5dd4beb63caad9a72e43857de984301907
"
"reference": "
2a1ebfe8c37240500befcb17bceb3893adacffa3
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/
911d2e5dd4beb63caad9a72e43857de984301907
",
"reference": "
911d2e5dd4beb63caad9a72e43857de984301907
",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/
2a1ebfe8c37240500befcb17bceb3893adacffa3
",
"reference": "
2a1ebfe8c37240500befcb17bceb3893adacffa3
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
",
"php": "^
7.1.3
",
"psr/log": "~1.0",
"symfony/debug": "~
2.8|~3.0
|~4.0",
"symfony/event-dispatcher": "~
2.8|~3.0
|~4.0",
"symfony/http-foundation": "
^3.4.4|^
4.0.4"
"symfony/debug": "~
3.4
|~4.0",
"symfony/event-dispatcher": "~
3.4
|~4.0",
"symfony/http-foundation": "
~3.4.4|~
4.0.4"
},
"conflict": {
"symfony/config": "<
2.8
",
"symfony/dependency-injection": "<3.4",
"symfony/var-dumper": "<3.
3
",
"symfony/config": "<
3.4
",
"symfony/dependency-injection": "<3.4
.5|<4.0.5,>=4
",
"symfony/var-dumper": "<3.
4
",
"twig/twig": "<1.34|<2.4,>=2"
},
"provide": {
...
...
@@ -3115,34 +3016,32 @@
},
"require-dev": {
"psr/cache": "~1.0",
"symfony/browser-kit": "~2.8|~3.0|~4.0",
"symfony/class-loader": "~2.8|~3.0",
"symfony/config": "~2.8|~3.0|~4.0",
"symfony/console": "~2.8|~3.0|~4.0",
"symfony/css-selector": "~2.8|~3.0|~4.0",
"symfony/dependency-injection": "~3.4|~4.0",
"symfony/dom-crawler": "~2.8|~3.0|~4.0",
"symfony/expression-language": "~2.8|~3.0|~4.0",
"symfony/finder": "~2.8|~3.0|~4.0",
"symfony/process": "~2.8|~3.0|~4.0",
"symfony/browser-kit": "~3.4|~4.0",
"symfony/config": "~3.4|~4.0",
"symfony/console": "~3.4|~4.0",
"symfony/css-selector": "~3.4|~4.0",
"symfony/dependency-injection": "^3.4.5|^4.0.5",
"symfony/dom-crawler": "~3.4|~4.0",
"symfony/expression-language": "~3.4|~4.0",
"symfony/finder": "~3.4|~4.0",
"symfony/process": "~3.4|~4.0",
"symfony/routing": "~3.4|~4.0",
"symfony/stopwatch": "~
2.8|~3.0
|~4.0",
"symfony/templating": "~
2.8|~3.0
|~4.0",
"symfony/translation": "~
2.8|~3.0
|~4.0",
"symfony/var-dumper": "~3.
3
|~4.0"
"symfony/stopwatch": "~
3.4
|~4.0",
"symfony/templating": "~
3.4
|~4.0",
"symfony/translation": "~
3.4
|~4.0",
"symfony/var-dumper": "~3.
4
|~4.0"
},
"suggest": {
"symfony/browser-kit": "",
"symfony/config": "",
"symfony/console": "",
"symfony/dependency-injection": "",
"symfony/finder": "",
"symfony/var-dumper": ""
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3169,7 +3068,7 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-29T12:29:46
+00:00"
"time": "2018-0
3-05T22:27:01
+00:00"
},
{
"name": "symfony/polyfill-mbstring",
...
...
@@ -3287,21 +3186,20 @@
"time": "2018-01-30T19:27:44+00:00"
},
{
"name": "symfony/polyfill-php7
0
",
"name": "symfony/polyfill-php7
2
",
"version": "v1.7.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php7
0
.git",
"reference": "
3532bfcd8f933a7816f3a0a59682fc404776600f
"
"url": "https://github.com/symfony/polyfill-php7
2
.git",
"reference": "
8eca20c8a369e069d4f4c2ac9895144112867422
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php7
0/zipball/3532bfcd8f933a7816f3a0a59682fc404776600f
",
"reference": "
3532bfcd8f933a7816f3a0a59682fc404776600f
",
"url": "https://api.github.com/repos/symfony/polyfill-php7
2/zipball/8eca20c8a369e069d4f4c2ac9895144112867422
",
"reference": "
8eca20c8a369e069d4f4c2ac9895144112867422
",
"shasum": ""
},
"require": {
"paragonie/random_compat": "~1.0|~2.0",
"php": ">=5.3.3"
},
"type": "library",
...
...
@@ -3312,13 +3210,10 @@
},
"autoload": {
"psr-4": {
"Symfony\\Polyfill\\Php7
0
\\": ""
"Symfony\\Polyfill\\Php7
2
\\": ""
},
"files": [
"bootstrap.php"
],
"classmap": [
"Resources/stubs"
]
},
"notification-url": "https://packagist.org/downloads/",
...
...
@@ -3335,7 +3230,7 @@
"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",
"keywords": [
"compatibility",
...
...
@@ -3343,7 +3238,7 @@
"portable",
"shim"
],
"time": "2018-01-3
0T19:27:4
4+00:00"
"time": "2018-01-3
1T17:43:2
4+00:00"
},
{
"name": "symfony/polyfill-util",
...
...
@@ -3399,25 +3294,25 @@
},
{
"name": "symfony/process",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
"reference": "
09a5172057be8fc677840e591b17f385e58c7c0d
"
"reference": "
6ed08502a7c9559da8e60ea343bdbd19c3350b3e
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/process/zipball/
09a5172057be8fc677840e591b17f385e58c7c0d
",
"reference": "
09a5172057be8fc677840e591b17f385e58c7c0d
",
"url": "https://api.github.com/repos/symfony/process/zipball/
6ed08502a7c9559da8e60ea343bdbd19c3350b3e
",
"reference": "
6ed08502a7c9559da8e60ea343bdbd19c3350b3e
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
"
"php": "^
7.1.3
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3444,38 +3339,38 @@
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-29T09:03
:43+00:00"
"time": "2018-0
2-19T12:18
:43+00:00"
},
{
"name": "symfony/routing",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
"reference": "
235d01730d553a97732990588407eaf6779bb4b2
"
"reference": "
9c6268c1970c7e507bedc8946bece32a7db23515
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/routing/zipball/
235d01730d553a97732990588407eaf6779bb4b2
",
"reference": "
235d01730d553a97732990588407eaf6779bb4b2
",
"url": "https://api.github.com/repos/symfony/routing/zipball/
9c6268c1970c7e507bedc8946bece32a7db23515
",
"reference": "
9c6268c1970c7e507bedc8946bece32a7db23515
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
"
"php": "^
7.1.3
"
},
"conflict": {
"symfony/config": "<
2.8
",
"symfony/dependency-injection": "<3.
3
",
"symfony/config": "<
3.4
",
"symfony/dependency-injection": "<3.
4
",
"symfony/yaml": "<3.4"
},
"require-dev": {
"doctrine/annotations": "~1.0",
"doctrine/common": "~2.2",
"psr/log": "~1.0",
"symfony/config": "~
2.8|~3.0
|~4.0",
"symfony/dependency-injection": "~3.
3
|~4.0",
"symfony/expression-language": "~
2.8|~3.0
|~4.0",
"symfony/http-foundation": "~
2.8|~3.0
|~4.0",
"symfony/config": "~
3.4
|~4.0",
"symfony/dependency-injection": "~3.
4
|~4.0",
"symfony/expression-language": "~
3.4
|~4.0",
"symfony/http-foundation": "~
3.4
|~4.0",
"symfony/yaml": "~3.4|~4.0"
},
"suggest": {
...
...
@@ -3489,7 +3384,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3522,37 +3417,37 @@
"uri",
"url"
],
"time": "2018-0
1-16T18:03:57
+00:00"
"time": "2018-0
2-28T21:50:02
+00:00"
},
{
"name": "symfony/translation",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
"reference": "
10b32cf0eae28b9b39fe26c456c42b19854c4b84
"
"reference": "
e20a9b7f9f62cb33a11638b345c248e7d510c938
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/translation/zipball/
10b32cf0eae28b9b39fe26c456c42b19854c4b84
",
"reference": "
10b32cf0eae28b9b39fe26c456c42b19854c4b84
",
"url": "https://api.github.com/repos/symfony/translation/zipball/
e20a9b7f9f62cb33a11638b345c248e7d510c938
",
"reference": "
e20a9b7f9f62cb33a11638b345c248e7d510c938
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
",
"php": "^
7.1.3
",
"symfony/polyfill-mbstring": "~1.0"
},
"conflict": {
"symfony/config": "<
2.8
",
"symfony/config": "<
3.4
",
"symfony/dependency-injection": "<3.4",
"symfony/yaml": "<3.4"
},
"require-dev": {
"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/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"
},
"suggest": {
...
...
@@ -3563,7 +3458,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3590,25 +3485,26 @@
],
"description": "Symfony Translation Component",
"homepage": "https://symfony.com",
"time": "2018-0
1-18T22:16:57
+00:00"
"time": "2018-0
2-22T10:50:29
+00:00"
},
{
"name": "symfony/var-dumper",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "
472a9849930cf21f73abdb02240f17cf5b5bd1a7
"
"reference": "
c7d89044ed6ed3b7d8b558d509cca0666b947e58
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/
472a9849930cf21f73abdb02240f17cf5b5bd1a7
",
"reference": "
472a9849930cf21f73abdb02240f17cf5b5bd1a7
",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/
c7d89044ed6ed3b7d8b558d509cca0666b947e58
",
"reference": "
c7d89044ed6ed3b7d8b558d509cca0666b947e58
",
"shasum": ""
},
"require": {
"php": "^5.5.9|>=7.0.8",
"symfony/polyfill-mbstring": "~1.0"
"php": "^7.1.3",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php72": "~1.5"
},
"conflict": {
"phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
...
...
@@ -3619,13 +3515,12 @@
},
"suggest": {
"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-symfony_debug": ""
"ext-intl": "To show region name in time zone dump"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -3659,65 +3554,7 @@
"debug",
"dump"
],
"time": "2018-01-29T09:03:43+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"
"time": "2018-02-26T15:55:47+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
...
...
@@ -3772,12 +3609,12 @@
"source": {
"type": "git",
"url": "https://github.com/tymondesigns/jwt-auth.git",
"reference": "
d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b
"
"reference": "
592e5e10c4e2d40bbf6db7d0e64367847118606a
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/
d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b
",
"reference": "
d5220f6a84cbb8300f6f2f0f20aa908d072b4e4b
",
"url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/
592e5e10c4e2d40bbf6db7d0e64367847118606a
",
"reference": "
592e5e10c4e2d40bbf6db7d0e64367847118606a
",
"shasum": ""
},
"require": {
...
...
@@ -3839,7 +3676,7 @@
"jwt",
"laravel"
],
"time": "2018-0
2-07T20:55:14
+00:00"
"time": "2018-0
3-05T22:18:39
+00:00"
},
{
"name": "unisharp/laravel-filemanager",
...
...
@@ -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.",
"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",
"version": "1.1.0",
...
...
@@ -4348,30 +4234,87 @@
],
"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",
"version": "v
2.0.1
",
"version": "v
4.0.0
",
"source": {
"type": "git",
"url": "https://github.com/laravel/browser-kit-testing.git",
"reference": "
f0bb9f200ec35f9d876ded6eacfbc60868d311b9
"
"reference": "
3ea22c4da537ca8af83746d583360e8e00081a01
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/laravel/browser-kit-testing/zipball/
f0bb9f200ec35f9d876ded6eacfbc60868d311b9
",
"reference": "
f0bb9f200ec35f9d876ded6eacfbc60868d311b9
",
"url": "https://api.github.com/repos/laravel/browser-kit-testing/zipball/
3ea22c4da537ca8af83746d583360e8e00081a01
",
"reference": "
3ea22c4da537ca8af83746d583360e8e00081a01
",
"shasum": ""
},
"require": {
"php": ">=
5.5.9
",
"phpunit/phpunit": "~
6
.0",
"symfony/css-selector": "~
3.1
",
"symfony/dom-crawler": "~
3.1
"
"php": ">=
7.1.3
",
"phpunit/phpunit": "~
7
.0",
"symfony/css-selector": "~
4.0
",
"symfony/dom-crawler": "~
4.0
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
2
.0-dev"
"dev-master": "
4
.0-dev"
}
},
"autoload": {
...
...
@@ -4394,7 +4337,7 @@
"laravel",
"testing"
],
"time": "201
7-06-21T11:44:53
+00:00"
"time": "201
8-02-08T16:44:18
+00:00"
},
{
"name": "maximebf/debugbar",
...
...
@@ -4886,40 +4829,40 @@
},
{
"name": "phpunit/php-code-coverage",
"version": "
5.3.0
",
"version": "
6.0.1
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "
661f34d0bd3f1a7225ef491a70a020ad23a057a1
"
"reference": "
f8ca4b604baf23dab89d87773c28cc07405189ba
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/
661f34d0bd3f1a7225ef491a70a020ad23a057a1
",
"reference": "
661f34d0bd3f1a7225ef491a70a020ad23a057a1
",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/
f8ca4b604baf23dab89d87773c28cc07405189ba
",
"reference": "
f8ca4b604baf23dab89d87773c28cc07405189ba
",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-xmlwriter": "*",
"php": "^7.
0
",
"php": "^7.
1
",
"phpunit/php-file-iterator": "^1.4.2",
"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/environment": "^3.0",
"sebastian/version": "^2.0.1",
"theseer/tokenizer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^
6
.0"
"phpunit/phpunit": "^
7
.0"
},
"suggest": {
"ext-xdebug": "^2.
5.5
"
"ext-xdebug": "^2.
6.0
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
5.3.x
-dev"
"dev-master": "
6.0
-dev"
}
},
"autoload": {
...
...
@@ -4945,7 +4888,7 @@
"testing",
"xunit"
],
"time": "201
7-12-06T09:29:45
+00:00"
"time": "201
8-02-02T07:01:41
+00:00"
},
{
"name": "phpunit/php-file-iterator",
...
...
@@ -5037,28 +4980,28 @@
},
{
"name": "phpunit/php-timer",
"version": "
1.0.9
",
"version": "
2.0.0
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
"reference": "
3dcf38ca72b158baf0bc245e9184d3fdffa9c46
f"
"reference": "
8b8454ea6958c3dee38453d3bd571e023108c91
f"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/
3dcf38ca72b158baf0bc245e9184d3fdffa9c46
f",
"reference": "
3dcf38ca72b158baf0bc245e9184d3fdffa9c46
f",
"url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/
8b8454ea6958c3dee38453d3bd571e023108c91
f",
"reference": "
8b8454ea6958c3dee38453d3bd571e023108c91
f",
"shasum": ""
},
"require": {
"php": "^
5.3.3 || ^7.0
"
"php": "^
7.1
"
},
"require-dev": {
"phpunit/phpunit": "^
4.8.35 || ^5.7 || ^6
.0"
"phpunit/phpunit": "^
7
.0"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
1
.0-dev"
"dev-master": "
2
.0-dev"
}
},
"autoload": {
...
...
@@ -5073,7 +5016,7 @@
"authors": [
{
"name": "Sebastian Bergmann",
"email": "s
b@sebastian-bergmann
.de",
"email": "s
ebastian@phpunit
.de",
"role": "lead"
}
],
...
...
@@ -5082,33 +5025,33 @@
"keywords": [
"timer"
],
"time": "201
7-02-26T11:10:40
+00:00"
"time": "201
8-02-01T13:07:23
+00:00"
},
{
"name": "phpunit/php-token-stream",
"version": "
2.0.2
",
"version": "
3.0.0
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
"reference": "
791198a2c6254db10131eecfe8c06670700904db
"
"reference": "
21ad88bbba7c3d93530d93994e0a33cd45f02ace
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/
791198a2c6254db10131eecfe8c06670700904db
",
"reference": "
791198a2c6254db10131eecfe8c06670700904db
",
"url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/
21ad88bbba7c3d93530d93994e0a33cd45f02ace
",
"reference": "
21ad88bbba7c3d93530d93994e0a33cd45f02ace
",
"shasum": ""
},
"require": {
"ext-tokenizer": "*",
"php": "^7.
0
"
"php": "^7.
1
"
},
"require-dev": {
"phpunit/phpunit": "^
6.2.4
"
"phpunit/phpunit": "^
7.0
"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
2
.0-dev"
"dev-master": "
3
.0-dev"
}
},
"autoload": {
...
...
@@ -5131,20 +5074,20 @@
"keywords": [
"tokenizer"
],
"time": "201
7-11-27T05:48:46
+00:00"
"time": "201
8-02-01T13:16:43
+00:00"
},
{
"name": "phpunit/phpunit",
"version": "
6.5.7
",
"version": "
7.0.2
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "
6bd77b57707c236833d2b57b968e403df060c9d
9"
"reference": "
e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e
9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/
6bd77b57707c236833d2b57b968e403df060c9d
9",
"reference": "
6bd77b57707c236833d2b57b968e403df060c9d
9",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/
e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e
9",
"reference": "
e2f8aa21bc54b6ba218bdd4f9e0dac1e9bc3b4e
9",
"shasum": ""
},
"require": {
...
...
@@ -5156,15 +5099,15 @@
"myclabs/deep-copy": "^1.6.1",
"phar-io/manifest": "^1.0.1",
"phar-io/version": "^1.0",
"php": "^7.
0
",
"php": "^7.
1
",
"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-text-template": "^1.2.1",
"phpunit/php-timer": "^
1.0.9
",
"phpunit/phpunit-mock-objects": "^
5.0.5
",
"phpunit/php-timer": "^
2.0
",
"phpunit/phpunit-mock-objects": "^
6.0
",
"sebastian/comparator": "^2.1",
"sebastian/diff": "^
2
.0",
"sebastian/diff": "^
3
.0",
"sebastian/environment": "^3.1",
"sebastian/exporter": "^3.1",
"sebastian/global-state": "^2.0",
...
...
@@ -5172,16 +5115,12 @@
"sebastian/resource-operations": "^1.0",
"sebastian/version": "^2.0.1"
},
"conflict": {
"phpdocumentor/reflection-docblock": "3.0.2",
"phpunit/dbunit": "<3.0"
},
"require-dev": {
"ext-pdo": "*"
},
"suggest": {
"ext-xdebug": "*",
"phpunit/php-invoker": "^
1.1
"
"phpunit/php-invoker": "^
2.0
"
},
"bin": [
"phpunit"
...
...
@@ -5189,7 +5128,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
6.5.x
-dev"
"dev-master": "
7.0
-dev"
}
},
"autoload": {
...
...
@@ -5215,33 +5154,30 @@
"testing",
"xunit"
],
"time": "2018-02-26T07:0
1:09
+00:00"
"time": "2018-02-26T07:0
3:12
+00:00"
},
{
"name": "phpunit/phpunit-mock-objects",
"version": "
5.0.6
",
"version": "
6.0.1
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
"reference": "
33fd41a76e746b8fa96d00b49a23dadfa8334cdf
"
"reference": "
e3249dedc2d99259ccae6affbc2684eac37c2e53
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/
33fd41a76e746b8fa96d00b49a23dadfa8334cdf
",
"reference": "
33fd41a76e746b8fa96d00b49a23dadfa8334cdf
",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/
e3249dedc2d99259ccae6affbc2684eac37c2e53
",
"reference": "
e3249dedc2d99259ccae6affbc2684eac37c2e53
",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.5",
"php": "^7.
0
",
"php": "^7.
1
",
"phpunit/php-text-template": "^1.2.1",
"sebastian/exporter": "^3.1"
},
"conflict": {
"phpunit/phpunit": "<6.0"
},
"require-dev": {
"phpunit/phpunit": "^
6.5
"
"phpunit/phpunit": "^
7.0
"
},
"suggest": {
"ext-soap": "*"
...
...
@@ -5249,7 +5185,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
5
.0.x-dev"
"dev-master": "
6
.0.x-dev"
}
},
"autoload": {
...
...
@@ -5274,7 +5210,7 @@
"mock",
"xunit"
],
"time": "2018-0
1-06T05:45:45
+00:00"
"time": "2018-0
2-15T05:27:38
+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
...
...
@@ -5387,28 +5323,29 @@
},
{
"name": "sebastian/diff",
"version": "
2.0.1
",
"version": "
3.0.0
",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
"reference": "
347c1d8b49c5c3ee30c7040ea6fc446790e6bddd
"
"reference": "
e09160918c66281713f1c324c1f4c4c3037ba1e8
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/
347c1d8b49c5c3ee30c7040ea6fc446790e6bddd
",
"reference": "
347c1d8b49c5c3ee30c7040ea6fc446790e6bddd
",
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/
e09160918c66281713f1c324c1f4c4c3037ba1e8
",
"reference": "
e09160918c66281713f1c324c1f4c4c3037ba1e8
",
"shasum": ""
},
"require": {
"php": "^7.
0
"
"php": "^7.
1
"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
"phpunit/phpunit": "^7.0",
"symfony/process": "^2 || ^3.3 || ^4"
},
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
2
.0-dev"
"dev-master": "
3
.0-dev"
}
},
"autoload": {
...
...
@@ -5433,9 +5370,12 @@
"description": "Diff implementation",
"homepage": "https://github.com/sebastianbergmann/diff",
"keywords": [
"diff"
"diff",
"udiff",
"unidiff",
"unified diff"
],
"time": "201
7-08-03T08:09:46
+00:00"
"time": "201
8-02-01T13:45:15
+00:00"
},
{
"name": "sebastian/environment",
...
...
@@ -5837,24 +5777,24 @@
},
{
"name": "symfony/dom-crawler",
"version": "v
3.4.4
",
"version": "v
4.0.6
",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
"reference": "
09bd97b844b3151fab82f2fdd62db9c464b3910a
"
"reference": "
26726ddc01601dc9393f2afc3369ce1ca64e4537
"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/
09bd97b844b3151fab82f2fdd62db9c464b3910a
",
"reference": "
09bd97b844b3151fab82f2fdd62db9c464b3910a
",
"url": "https://api.github.com/repos/symfony/dom-crawler/zipball/
26726ddc01601dc9393f2afc3369ce1ca64e4537
",
"reference": "
26726ddc01601dc9393f2afc3369ce1ca64e4537
",
"shasum": ""
},
"require": {
"php": "^
5.5.9|>=7.0.8
",
"php": "^
7.1.3
",
"symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
"symfony/css-selector": "~
2.8|~3.0
|~4.0"
"symfony/css-selector": "~
3.4
|~4.0"
},
"suggest": {
"symfony/css-selector": ""
...
...
@@ -5862,7 +5802,7 @@
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "
3.4
-dev"
"dev-master": "
4.0
-dev"
}
},
"autoload": {
...
...
@@ -5889,7 +5829,65 @@
],
"description": "Symfony DomCrawler Component",
"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",
...
...
@@ -6096,7 +6094,7 @@
"prefer-stable": false,
"prefer-lowest": false,
"platform": {
"php": ">=7.
0.0
"
"php": ">=7.
1.3
"
},
"platform-dev": []
}
config/hashing.php
0 → 100644
View file @
9c33c597
<?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'
,
];
config/logging.php
0 → 100644
View file @
9c33c597
<?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'
,
],
],
];
config/trustedproxy.php
deleted
100644 → 0
View file @
99ac8f95
<?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'
,
],
];
routes/api.php
View file @
9c33c597
...
...
@@ -37,7 +37,7 @@ Route::group(['namespace' => 'Api\V1', 'prefix' => 'v1', 'as' => 'v1.'], functio
// Roles
Route
::
resource
(
'roles'
,
'RolesController'
);
// Permission
// Permission
Route
::
resource
(
'permission'
,
'PermissionController'
);
// Page
...
...
tests/Feature/Backend/LogViewerRouteTest.php
View file @
9c33c597
...
...
@@ -14,7 +14,7 @@ class LogViewerRouteTest extends BrowserKitTestCase
{
$this
->
actingAs
(
$this
->
admin
)
->
visit
(
'/admin/log-viewer'
)
->
see
(
'Log
Viewer'
);
->
see
(
'LogViewer'
);
}
/** @test **/
...
...
@@ -25,19 +25,19 @@ class LogViewerRouteTest extends BrowserKitTestCase
->
see
(
'Logs'
);
}
/*
*
@test **/
public
function
admin_users_can_see_logviewer_single_date
()
/* @test **/
/*
public function admin_users_can_see_logviewer_single_date()
{
$this->actingAs($this->admin)
->visit('/admin/log-viewer/logs/'.date('Y-m-d'))
->see('Log ['.date('Y-m-d').']');
}
}
*/
/*
*
@test **/
public
function
admin_users_can_see_logviewer_single_date_type
()
/* @test **/
/*
public function admin_users_can_see_logviewer_single_date_type()
{
$this->actingAs($this->admin)
->visit('/admin/log-viewer/logs/'.date('Y-m-d').'/error')
->see('Log ['.date('Y-m-d').']');
}
}
*/
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment