From fc644925ea55d017823926438a0748d5b34a41d4 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 23 Oct 2017 14:21:51 -0700 Subject: [PATCH 1/2] Fixes #4291 - adds phone to user listing --- app/Http/Controllers/Api/UsersController.php | 3 ++- app/Http/Transformers/UsersTransformer.php | 1 + app/Models/User.php | 1 + app/Presenters/UserPresenter.php | 8 ++++++++ 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/Api/UsersController.php b/app/Http/Controllers/Api/UsersController.php index 7ae2e20d2..eb93f802f 100644 --- a/app/Http/Controllers/Api/UsersController.php +++ b/app/Http/Controllers/Api/UsersController.php @@ -31,6 +31,7 @@ class UsersController extends Controller 'users.two_factor_enrolled', 'users.jobtitle', 'users.email', + 'users.phone', 'users.username', 'users.location_id', 'users.manager_id', @@ -93,7 +94,7 @@ class UsersController extends Controller 'last_name','first_name','email','jobtitle','username','employee_num', 'assets','accessories', 'consumables','licenses','groups','activated','created_at', 'two_factor_enrolled','two_factor_optin','last_login', 'assets_count', 'licenses_count', - 'consumables_count', 'accessories_count' + 'consumables_count', 'accessories_count', 'phone' ]; $sort = in_array($request->get('sort'), $allowed_columns) ? $request->get('sort') : 'first_name'; diff --git a/app/Http/Transformers/UsersTransformer.php b/app/Http/Transformers/UsersTransformer.php index 2db1d1c80..3f8d99489 100644 --- a/app/Http/Transformers/UsersTransformer.php +++ b/app/Http/Transformers/UsersTransformer.php @@ -33,6 +33,7 @@ class UsersTransformer 'name'=> e($user->manager->username) ] : null, 'jobtitle' => ($user->jobtitle) ? e($user->jobtitle) : null, + 'phone' => ($user->phone) ? e($user->phone) : null, 'email' => e($user->email), 'department' => ($user->department) ? [ 'id' => (int) $user->department->id, diff --git a/app/Models/User.php b/app/Models/User.php index 0639865a8..5df4a81ef 100755 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -403,6 +403,7 @@ class User extends SnipeModel implements AuthenticatableContract, CanResetPasswo ->orWhere('users.email', 'LIKE', "%$search%") ->orWhere('users.username', 'LIKE', "%$search%") ->orWhere('users.notes', 'LIKE', "%$search%") + ->orWhere('users.phone', 'LIKE', "%$search%") ->orWhere('users.jobtitle', 'LIKE', "%$search%") ->orWhere('users.employee_num', 'LIKE', "%$search%") ->orWhere(function ($query) use ($search) { diff --git a/app/Presenters/UserPresenter.php b/app/Presenters/UserPresenter.php index 5ff2f0d17..0b88e0908 100644 --- a/app/Presenters/UserPresenter.php +++ b/app/Presenters/UserPresenter.php @@ -69,6 +69,14 @@ class UserPresenter extends Presenter "visible" => true, "formatter" => "emailFormatter" ], + [ + "field" => "phone", + "searchable" => true, + "sortable" => true, + "switchable" => true, + "title" => trans('admin/users/table.phone'), + "visible" => true, + ], [ "field" => "username", "searchable" => true, From 0951a756ccd7d9ff38bdda9c9696f2eb439773ad Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 23 Oct 2017 17:35:31 -0700 Subject: [PATCH 2/2] Updated passport to 3.0 Re: https://stackoverflow.com/a/45029309/200021 via @robertpearce --- composer.json | 2 +- composer.lock | 539 +++++++++++++++++++++++++------------------------- 2 files changed, 275 insertions(+), 266 deletions(-) diff --git a/composer.json b/composer.json index 1dc9a2f52..f171f46a2 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "javiereguiluz/easyslugger": "^1.0", "jenssegers/rollbar": "^1.5", "laravel/framework": "5.4.*", - "laravel/passport": "^1.0", + "laravel/passport": "^3.0", "laravel/tinker": "^1.0", "laravelcollective/html": "^5.3", "league/csv": "^8.1", diff --git a/composer.lock b/composer.lock index b146e4763..0def07561 100644 --- a/composer.lock +++ b/composer.lock @@ -4,21 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "abe6a702f2383ae1fd4c9bbfb06c47ee", - "content-hash": "7659dd61c86bb042a246c2fa313d79a6", + "content-hash": "0b0e517d5028f9e5282a8683afeeb28d", "packages": [ { "name": "aws/aws-sdk-php", - "version": "3.36.17", + "version": "3.36.32", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "4bf27e8808e5e08a71b7fbdb951f51918c57a1c6" + "reference": "7ba49dbd24366647a41cd4a13eab972b2264b8db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/4bf27e8808e5e08a71b7fbdb951f51918c57a1c6", - "reference": "4bf27e8808e5e08a71b7fbdb951f51918c57a1c6", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/7ba49dbd24366647a41cd4a13eab972b2264b8db", + "reference": "7ba49dbd24366647a41cd4a13eab972b2264b8db", "shasum": "" }, "require": { @@ -85,7 +84,7 @@ "s3", "sdk" ], - "time": "2017-09-29 19:46:41" + "time": "2017-10-23T20:40:28+00:00" }, { "name": "aws/aws-sdk-php-laravel", @@ -141,7 +140,7 @@ "s3", "sdk" ], - "time": "2016-01-18 06:57:07" + "time": "2016-01-18T06:57:07+00:00" }, { "name": "barryvdh/laravel-debugbar", @@ -190,7 +189,7 @@ "profiler", "webprofiler" ], - "time": "2017-07-21 11:56:48" + "time": "2017-07-21T11:56:48+00:00" }, { "name": "christian-riesen/base32", @@ -244,7 +243,7 @@ "encode", "rfc4648" ], - "time": "2016-05-05 11:49:03" + "time": "2016-05-05T11:49:03+00:00" }, { "name": "defuse/php-encryption", @@ -307,7 +306,7 @@ "security", "symmetric key cryptography" ], - "time": "2017-05-18 21:28:48" + "time": "2017-05-18T21:28:48+00:00" }, { "name": "dnoegel/php-xdg-base-dir", @@ -340,25 +339,25 @@ "MIT" ], "description": "implementation of xdg base directory specification for php", - "time": "2014-10-24 07:27:01" + "time": "2014-10-24T07:27:01+00:00" }, { "name": "doctrine/annotations", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/5beebb01b025c94e93686b7a0ed3edae81fe3e7f", + "reference": "5beebb01b025c94e93686b7a0ed3edae81fe3e7f", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^5.6 || ^7.0" + "php": "^7.1" }, "require-dev": { "doctrine/cache": "1.*", @@ -367,7 +366,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.5.x-dev" } }, "autoload": { @@ -408,37 +407,41 @@ "docblock", "parser" ], - "time": "2017-02-24 16:22:25" + "time": "2017-07-22T10:58:02+00:00" }, { "name": "doctrine/cache", - "version": "v1.6.2", + "version": "v1.7.1", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" + "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", + "url": "https://api.github.com/repos/doctrine/cache/zipball/b3217d58609e9c8e661cd41357a54d926c4a2a1a", + "reference": "b3217d58609e9c8e661cd41357a54d926c4a2a1a", "shasum": "" }, "require": { - "php": "~5.5|~7.0" + "php": "~7.1" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "phpunit/phpunit": "~4.8|~5.0", - "predis/predis": "~1.0", - "satooshi/php-coveralls": "~0.6" + "alcaeus/mongo-php-adapter": "^1.1", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^5.7", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.7.x-dev" } }, "autoload": { @@ -478,24 +481,24 @@ "cache", "caching" ], - "time": "2017-07-22 12:49:21" + "time": "2017-08-25T07:02:50+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/a01ee38fcd999f34d9bfbcee59dbda5105449cbf", + "reference": "a01ee38fcd999f34d9bfbcee59dbda5105449cbf", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1" }, "require-dev": { "doctrine/coding-standard": "~0.1@dev", @@ -545,7 +548,7 @@ "collections", "iterator" ], - "time": "2017-01-03 10:49:41" + "time": "2017-07-22T10:37:32+00:00" }, { "name": "doctrine/common", @@ -618,7 +621,7 @@ "persistence", "spl" ], - "time": "2017-07-22 08:35:12" + "time": "2017-07-22T08:35:12+00:00" }, { "name": "doctrine/dbal", @@ -689,7 +692,7 @@ "persistence", "queryobject" ], - "time": "2017-07-22 20:44:48" + "time": "2017-07-22T20:44:48+00:00" }, { "name": "doctrine/inflector", @@ -756,7 +759,7 @@ "singularize", "string" ], - "time": "2015-11-06 14:35:42" + "time": "2015-11-06T14:35:42+00:00" }, { "name": "doctrine/instantiator", @@ -810,7 +813,7 @@ "constructor", "instantiate" ], - "time": "2015-06-14 21:17:01" + "time": "2015-06-14T21:17:01+00:00" }, { "name": "doctrine/lexer", @@ -864,7 +867,7 @@ "lexer", "parser" ], - "time": "2014-09-09 13:34:57" + "time": "2014-09-09T13:34:57+00:00" }, { "name": "erusev/parsedown", @@ -906,7 +909,7 @@ "markdown", "parser" ], - "time": "2017-05-14 14:47:48" + "time": "2017-05-14T14:47:48+00:00" }, { "name": "fideloper/proxy", @@ -963,7 +966,7 @@ "proxy", "trusted proxy" ], - "time": "2017-06-15 17:19:42" + "time": "2017-06-15T17:19:42+00:00" }, { "name": "firebase/php-jwt", @@ -1006,7 +1009,7 @@ ], "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.", "homepage": "https://github.com/firebase/php-jwt", - "time": "2016-07-18 04:51:16" + "time": "2016-07-18T04:51:16+00:00" }, { "name": "guzzlehttp/guzzle", @@ -1071,7 +1074,7 @@ "rest", "web service" ], - "time": "2017-06-22 18:50:49" + "time": "2017-06-22T18:50:49+00:00" }, { "name": "guzzlehttp/promises", @@ -1122,7 +1125,7 @@ "keywords": [ "promise" ], - "time": "2016-12-20 10:07:11" + "time": "2016-12-20T10:07:11+00:00" }, { "name": "guzzlehttp/psr7", @@ -1187,7 +1190,7 @@ "uri", "url" ], - "time": "2017-03-20 17:10:46" + "time": "2017-03-20T17:10:46+00:00" }, { "name": "intervention/image", @@ -1257,7 +1260,7 @@ "thumbnail", "watermark" ], - "time": "2017-09-21 16:29:17" + "time": "2017-09-21T16:29:17+00:00" }, { "name": "jakub-onderka/php-console-color", @@ -1300,7 +1303,7 @@ "homepage": "http://www.acci.cz" } ], - "time": "2014-04-08 15:00:19" + "time": "2014-04-08T15:00:19+00:00" }, { "name": "jakub-onderka/php-console-highlighter", @@ -1344,7 +1347,7 @@ "homepage": "http://www.acci.cz/" } ], - "time": "2015-04-20 18:58:01" + "time": "2015-04-20T18:58:01+00:00" }, { "name": "javiereguiluz/easyslugger", @@ -1374,7 +1377,7 @@ "MIT" ], "description": "A fast and easy to use slugger with full UTF-8 support.", - "time": "2015-04-12 19:57:10" + "time": "2015-04-12T19:57:10+00:00" }, { "name": "jenssegers/rollbar", @@ -1426,7 +1429,7 @@ "monitoring", "rollbar" ], - "time": "2017-01-25 08:34:12" + "time": "2017-01-25T08:34:12+00:00" }, { "name": "laravel/framework", @@ -1555,34 +1558,34 @@ "framework", "laravel" ], - "time": "2017-08-30 09:26:16" + "time": "2017-08-30T09:26:16+00:00" }, { "name": "laravel/passport", - "version": "v1.0.18", + "version": "v3.0.1", "source": { "type": "git", "url": "https://github.com/laravel/passport.git", - "reference": "f4ec49664be83f2a641cbfbb6d43cfb79f4aa95e" + "reference": "d19a6b60503cb416fe55507684699de35239681f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/passport/zipball/f4ec49664be83f2a641cbfbb6d43cfb79f4aa95e", - "reference": "f4ec49664be83f2a641cbfbb6d43cfb79f4aa95e", + "url": "https://api.github.com/repos/laravel/passport/zipball/d19a6b60503cb416fe55507684699de35239681f", + "reference": "d19a6b60503cb416fe55507684699de35239681f", "shasum": "" }, "require": { "firebase/php-jwt": "~3.0|~4.0", "guzzlehttp/guzzle": "~6.0", - "illuminate/auth": "~5.3", - "illuminate/console": "~5.3", - "illuminate/container": "~5.3", - "illuminate/contracts": "~5.3", - "illuminate/database": "~5.3", - "illuminate/encryption": "~5.3", - "illuminate/http": "~5.3", - "illuminate/support": "~5.3", - "league/oauth2-server": "~5.0", + "illuminate/auth": "~5.4", + "illuminate/console": "~5.4", + "illuminate/container": "~5.4", + "illuminate/contracts": "~5.4", + "illuminate/database": "~5.4", + "illuminate/encryption": "~5.4", + "illuminate/http": "~5.4", + "illuminate/support": "~5.4", + "league/oauth2-server": "^6.0", "php": ">=5.6.4", "phpseclib/phpseclib": "^2.0", "symfony/psr-http-message-bridge": "~1.0", @@ -1595,7 +1598,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "3.0-dev" + }, + "laravel": { + "providers": [ + "Laravel\\Passport\\PassportServiceProvider" + ] } }, "autoload": { @@ -1619,7 +1627,7 @@ "oauth", "passport" ], - "time": "2017-07-12 20:03:53" + "time": "2017-08-04T14:03:52+00:00" }, { "name": "laravel/tinker", @@ -1682,7 +1690,7 @@ "laravel", "psysh" ], - "time": "2017-07-13 13:11:05" + "time": "2017-07-13T13:11:05+00:00" }, { "name": "laravelcollective/html", @@ -1736,7 +1744,7 @@ ], "description": "HTML and Form Builders for the Laravel Framework", "homepage": "http://laravelcollective.com", - "time": "2017-08-12 15:52:38" + "time": "2017-08-12T15:52:38+00:00" }, { "name": "lcobucci/jwt", @@ -1794,7 +1802,7 @@ "JWS", "jwt" ], - "time": "2017-09-01 08:23:26" + "time": "2017-09-01T08:23:26+00:00" }, { "name": "league/csv", @@ -1851,7 +1859,7 @@ "read", "write" ], - "time": "2017-07-12 07:18:20" + "time": "2017-07-12T07:18:20+00:00" }, { "name": "league/event", @@ -1901,7 +1909,7 @@ "event", "listener" ], - "time": "2015-05-21 12:24:47" + "time": "2015-05-21T12:24:47+00:00" }, { "name": "league/flysystem", @@ -1984,20 +1992,20 @@ "sftp", "storage" ], - "time": "2017-08-06 17:41:04" + "time": "2017-08-06T17:41:04+00:00" }, { "name": "league/oauth2-server", - "version": "5.1.5", + "version": "6.0.2", "source": { "type": "git", "url": "https://github.com/thephpleague/oauth2-server.git", - "reference": "8e5df6d6286d0010861a708b70f00345d074bce9" + "reference": "925776958fc3f5278e74363663c20147af32b668" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/8e5df6d6286d0010861a708b70f00345d074bce9", - "reference": "8e5df6d6286d0010861a708b70f00345d074bce9", + "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/925776958fc3f5278e74363663c20147af32b668", + "reference": "925776958fc3f5278e74363663c20147af32b668", "shasum": "" }, "require": { @@ -2006,7 +2014,7 @@ "lcobucci/jwt": "^3.1", "league/event": "^2.1", "paragonie/random_compat": "^2.0", - "php": ">=5.5.9", + "php": ">=5.6.0", "psr/http-message": "^1.0" }, "replace": { @@ -2014,19 +2022,10 @@ "lncd/oauth2": "*" }, "require-dev": { - "indigophp/hash-compat": "^1.1", "phpunit/phpunit": "^4.8 || ^5.0", "zendframework/zend-diactoros": "^1.0" }, - "suggest": { - "indigophp/hash-compat": "Polyfill for hash_equals function for PHP 5.5" - }, "type": "library", - "extra": { - "branch-alias": { - "dev-V5-WIP": "5.0-dev" - } - }, "autoload": { "psr-4": { "League\\OAuth2\\Server\\": "src/" @@ -2061,7 +2060,7 @@ "secure", "server" ], - "time": "2017-07-11 06:31:36" + "time": "2017-08-03T15:09:23+00:00" }, { "name": "maknz/slack", @@ -2110,7 +2109,7 @@ "laravel", "slack" ], - "time": "2015-06-03 03:35:16" + "time": "2015-06-03T03:35:16+00:00" }, { "name": "maximebf/debugbar", @@ -2171,7 +2170,7 @@ "debug", "debugbar" ], - "time": "2017-01-05 08:46:19" + "time": "2017-01-05T08:46:19+00:00" }, { "name": "monolog/monolog", @@ -2249,7 +2248,7 @@ "logging", "psr-3" ], - "time": "2017-06-19 01:22:40" + "time": "2017-06-19T01:22:40+00:00" }, { "name": "mtdowling/cron-expression", @@ -2293,7 +2292,7 @@ "cron", "schedule" ], - "time": "2017-01-23 04:29:33" + "time": "2017-01-23T04:29:33+00:00" }, { "name": "mtdowling/jmespath.php", @@ -2348,7 +2347,7 @@ "json", "jsonpath" ], - "time": "2016-12-03 22:08:25" + "time": "2016-12-03T22:08:25+00:00" }, { "name": "neitanod/forceutf8", @@ -2382,7 +2381,7 @@ ], "description": "PHP Class Encoding featuring popular Encoding::toUTF8() function --formerly known as forceUTF8()-- that fixes mixed encoded strings.", "homepage": "https://github.com/neitanod/forceutf8", - "time": "2017-05-22 18:50:57" + "time": "2017-05-22T18:50:57+00:00" }, { "name": "nesbot/carbon", @@ -2435,7 +2434,7 @@ "datetime", "time" ], - "time": "2017-01-16 07:55:07" + "time": "2017-01-16T07:55:07+00:00" }, { "name": "nikic/php-parser", @@ -2486,7 +2485,7 @@ "parser", "php" ], - "time": "2017-09-02 17:10:46" + "time": "2017-09-02T17:10:46+00:00" }, { "name": "paragonie/random_compat", @@ -2534,7 +2533,7 @@ "pseudorandom", "random" ], - "time": "2017-09-27 21:40:39" + "time": "2017-09-27T21:40:39+00:00" }, { "name": "patchwork/utf8", @@ -2593,7 +2592,7 @@ "utf-8", "utf8" ], - "time": "2016-05-18 13:57:10" + "time": "2016-05-18T13:57:10+00:00" }, { "name": "phpdocumentor/reflection-common", @@ -2647,7 +2646,7 @@ "reflection", "static analysis" ], - "time": "2017-09-11 18:02:19" + "time": "2017-09-11T18:02:19+00:00" }, { "name": "phpdocumentor/reflection-docblock", @@ -2692,7 +2691,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2017-08-08 06:39:58" + "time": "2017-08-08T06:39:58+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -2739,20 +2738,20 @@ "email": "me@mikevanriel.com" } ], - "time": "2017-06-03 08:32:36" + "time": "2017-06-03T08:32:36+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.6", + "version": "2.0.7", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "34a7699e6f31b1ef4035ee36444407cecf9f56aa" + "reference": "f4b6a522dfa1fd1e477c9cfe5909d5b31f098c0b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/34a7699e6f31b1ef4035ee36444407cecf9f56aa", - "reference": "34a7699e6f31b1ef4035ee36444407cecf9f56aa", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/f4b6a522dfa1fd1e477c9cfe5909d5b31f098c0b", + "reference": "f4b6a522dfa1fd1e477c9cfe5909d5b31f098c0b", "shasum": "" }, "require": { @@ -2831,7 +2830,7 @@ "x.509", "x509" ], - "time": "2017-06-05 06:31:10" + "time": "2017-10-23T05:04:54+00:00" }, { "name": "phpspec/prophecy", @@ -2894,7 +2893,7 @@ "spy", "stub" ], - "time": "2016-11-21 14:58:47" + "time": "2016-11-21T14:58:47+00:00" }, { "name": "pragmarx/google2fa", @@ -2955,7 +2954,7 @@ "google2fa", "laravel" ], - "time": "2016-07-18 20:25:04" + "time": "2016-07-18T20:25:04+00:00" }, { "name": "predis/predis", @@ -3005,7 +3004,7 @@ "predis", "redis" ], - "time": "2016-06-16 16:22:20" + "time": "2016-06-16T16:22:20+00:00" }, { "name": "psr/http-message", @@ -3055,7 +3054,7 @@ "request", "response" ], - "time": "2016-08-06 14:39:51" + "time": "2016-08-06T14:39:51+00:00" }, { "name": "psr/log", @@ -3102,20 +3101,20 @@ "psr", "psr-3" ], - "time": "2016-10-10 12:19:37" + "time": "2016-10-10T12:19:37+00:00" }, { "name": "psy/psysh", - "version": "v0.8.11", + "version": "v0.8.13", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "b193cd020e8c6b66cea6457826ae005e94e6d2c0" + "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b193cd020e8c6b66cea6457826ae005e94e6d2c0", - "reference": "b193cd020e8c6b66cea6457826ae005e94e6d2c0", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/cdb5593c3684bab74e10fcfffe4a0c8d1c39695d", + "reference": "cdb5593c3684bab74e10fcfffe4a0c8d1c39695d", "shasum": "" }, "require": { @@ -3175,7 +3174,7 @@ "interactive", "shell" ], - "time": "2017-07-29 19:30:02" + "time": "2017-10-19T06:13:20+00:00" }, { "name": "ramsey/uuid", @@ -3257,7 +3256,7 @@ "identifier", "uuid" ], - "time": "2017-09-22 20:46:04" + "time": "2017-09-22T20:46:04+00:00" }, { "name": "rollbar/rollbar", @@ -3307,20 +3306,20 @@ "logging", "monitoring" ], - "time": "2016-07-05 15:50:29" + "time": "2016-07-05T15:50:29+00:00" }, { "name": "schuppo/password-strength", - "version": "v1.9", + "version": "v1.10", "source": { "type": "git", "url": "https://github.com/schuppo/PasswordStrengthPackage.git", - "reference": "184d65517eb438651b491b116df8895238005b79" + "reference": "06198d64e9b1b6c3039b87b9c528fc299408f32d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/schuppo/PasswordStrengthPackage/zipball/184d65517eb438651b491b116df8895238005b79", - "reference": "184d65517eb438651b491b116df8895238005b79", + "url": "https://api.github.com/repos/schuppo/PasswordStrengthPackage/zipball/06198d64e9b1b6c3039b87b9c528fc299408f32d", + "reference": "06198d64e9b1b6c3039b87b9c528fc299408f32d", "shasum": "" }, "require": { @@ -3333,6 +3332,13 @@ "phpunit/phpunit": "^4.8" }, "type": "library", + "extra": { + "laravel": { + "providers": [ + "Schuppo\\PasswordStrength\\PasswordStrengthServiceProvider" + ] + } + }, "autoload": { "psr-0": { "Schuppo\\PasswordStrength": "src/" @@ -3357,7 +3363,7 @@ "password strength", "validation" ], - "time": "2016-10-05 09:57:59" + "time": "2017-10-12T18:46:40+00:00" }, { "name": "sebastian/comparator", @@ -3421,7 +3427,7 @@ "compare", "equality" ], - "time": "2017-01-29 09:50:25" + "time": "2017-01-29T09:50:25+00:00" }, { "name": "sebastian/diff", @@ -3473,7 +3479,7 @@ "keywords": [ "diff" ], - "time": "2017-05-22 07:24:03" + "time": "2017-05-22T07:24:03+00:00" }, { "name": "sebastian/exporter", @@ -3540,7 +3546,7 @@ "export", "exporter" ], - "time": "2016-11-19 08:54:04" + "time": "2016-11-19T08:54:04+00:00" }, { "name": "sebastian/recursion-context", @@ -3593,7 +3599,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2016-11-19 07:33:16" + "time": "2016-11-19T07:33:16+00:00" }, { "name": "spatie/db-dumper", @@ -3643,7 +3649,7 @@ "mysqldump", "spatie" ], - "time": "2016-06-14 13:23:01" + "time": "2016-06-14T13:23:01+00:00" }, { "name": "spatie/laravel-backup", @@ -3706,7 +3712,7 @@ "laravel-backup", "spatie" ], - "time": "2017-02-18 09:54:12" + "time": "2017-02-18T09:54:12+00:00" }, { "name": "swiftmailer/swiftmailer", @@ -3760,20 +3766,20 @@ "mail", "mailer" ], - "time": "2017-05-01 15:54:03" + "time": "2017-05-01T15:54:03+00:00" }, { "name": "symfony/console", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf" + "reference": "116bc56e45a8e5572e51eb43ab58c769a352366c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf", - "reference": "a1e1b01293a090cb9ae2ddd221a3251a4a7e4abf", + "url": "https://api.github.com/repos/symfony/console/zipball/116bc56e45a8e5572e51eb43ab58c769a352366c", + "reference": "116bc56e45a8e5572e51eb43ab58c769a352366c", "shasum": "" }, "require": { @@ -3828,7 +3834,7 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2017-09-06 16:40:18" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/css-selector", @@ -3881,20 +3887,20 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2017-01-02 20:31:54" + "time": "2017-01-02T20:31:54+00:00" }, { "name": "symfony/debug", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "8beb24eec70b345c313640962df933499373a944" + "reference": "eb95d9ce8f18dcc1b3dfff00cb624c402be78ffd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/8beb24eec70b345c313640962df933499373a944", - "reference": "8beb24eec70b345c313640962df933499373a944", + "url": "https://api.github.com/repos/symfony/debug/zipball/eb95d9ce8f18dcc1b3dfff00cb624c402be78ffd", + "reference": "eb95d9ce8f18dcc1b3dfff00cb624c402be78ffd", "shasum": "" }, "require": { @@ -3937,20 +3943,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2017-09-01 13:23:39" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "54ca9520a00386f83bca145819ad3b619aaa2485" + "reference": "d7ba037e4b8221956ab1e221c73c9e27e05dd423" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/54ca9520a00386f83bca145819ad3b619aaa2485", - "reference": "54ca9520a00386f83bca145819ad3b619aaa2485", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d7ba037e4b8221956ab1e221c73c9e27e05dd423", + "reference": "d7ba037e4b8221956ab1e221c73c9e27e05dd423", "shasum": "" }, "require": { @@ -4000,20 +4006,20 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/finder", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "b2260dbc80f3c4198f903215f91a1ac7fe9fe09e" + "reference": "773e19a491d97926f236942484cb541560ce862d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/b2260dbc80f3c4198f903215f91a1ac7fe9fe09e", - "reference": "b2260dbc80f3c4198f903215f91a1ac7fe9fe09e", + "url": "https://api.github.com/repos/symfony/finder/zipball/773e19a491d97926f236942484cb541560ce862d", + "reference": "773e19a491d97926f236942484cb541560ce862d", "shasum": "" }, "require": { @@ -4049,20 +4055,20 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3" + "reference": "22cf9c2b1d9f67cc8e75ae7f4eaa60e4c1eff1f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3", - "reference": "2cdc7de1921d1a1c805a13dc05e44a2cd58f5ad3", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/22cf9c2b1d9f67cc8e75ae7f4eaa60e4c1eff1f8", + "reference": "22cf9c2b1d9f67cc8e75ae7f4eaa60e4c1eff1f8", "shasum": "" }, "require": { @@ -4102,20 +4108,20 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2017-09-06 17:07:39" + "time": "2017-10-05T23:10:23+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "70f5bb3cdd737624249953b61023411e26be5db7" + "reference": "654f047a78756964bf91b619554f956517394018" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/70f5bb3cdd737624249953b61023411e26be5db7", - "reference": "70f5bb3cdd737624249953b61023411e26be5db7", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/654f047a78756964bf91b619554f956517394018", + "reference": "654f047a78756964bf91b619554f956517394018", "shasum": "" }, "require": { @@ -4188,20 +4194,20 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2017-09-11 16:13:23" + "time": "2017-10-05T23:40:19+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.5.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803" + "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/7c8fae0ac1d216eb54349e6a8baa57d515fe8803", - "reference": "7c8fae0ac1d216eb54349e6a8baa57d515fe8803", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", + "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", "shasum": "" }, "require": { @@ -4213,7 +4219,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.6-dev" } }, "autoload": { @@ -4247,20 +4253,20 @@ "portable", "shim" ], - "time": "2017-06-14 15:44:48" + "time": "2017-10-11T12:05:26+00:00" }, { "name": "symfony/polyfill-php56", - "version": "v1.5.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "e85ebdef569b84e8709864e1a290c40f156b30ca" + "reference": "265fc96795492430762c29be291a371494ba3a5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e85ebdef569b84e8709864e1a290c40f156b30ca", - "reference": "e85ebdef569b84e8709864e1a290c40f156b30ca", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/265fc96795492430762c29be291a371494ba3a5b", + "reference": "265fc96795492430762c29be291a371494ba3a5b", "shasum": "" }, "require": { @@ -4270,7 +4276,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.6-dev" } }, "autoload": { @@ -4303,20 +4309,20 @@ "portable", "shim" ], - "time": "2017-06-14 15:44:48" + "time": "2017-10-11T12:05:26+00:00" }, { "name": "symfony/polyfill-util", - "version": "v1.5.0", + "version": "v1.6.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "67925d1cf0b84bd234a83bebf26d4eb281744c6d" + "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/67925d1cf0b84bd234a83bebf26d4eb281744c6d", - "reference": "67925d1cf0b84bd234a83bebf26d4eb281744c6d", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/6e719200c8e540e0c0effeb31f96bdb344b94176", + "reference": "6e719200c8e540e0c0effeb31f96bdb344b94176", "shasum": "" }, "require": { @@ -4325,7 +4331,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.5-dev" + "dev-master": "1.6-dev" } }, "autoload": { @@ -4355,20 +4361,20 @@ "polyfill", "shim" ], - "time": "2017-07-05 15:09:33" + "time": "2017-10-11T12:05:26+00:00" }, { "name": "symfony/process", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0" + "reference": "fdf89e57a723a29baf536e288d6e232c059697b1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", - "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", + "url": "https://api.github.com/repos/symfony/process/zipball/fdf89e57a723a29baf536e288d6e232c059697b1", + "reference": "fdf89e57a723a29baf536e288d6e232c059697b1", "shasum": "" }, "require": { @@ -4404,7 +4410,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -4464,20 +4470,20 @@ "http-message", "psr-7" ], - "time": "2016-09-14 18:37:20" + "time": "2016-09-14T18:37:20+00:00" }, { "name": "symfony/routing", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "970326dcd04522e1cd1fe128abaee54c225e27f9" + "reference": "2e26fa63da029dab49bf9377b3b4f60a8fecb009" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/970326dcd04522e1cd1fe128abaee54c225e27f9", - "reference": "970326dcd04522e1cd1fe128abaee54c225e27f9", + "url": "https://api.github.com/repos/symfony/routing/zipball/2e26fa63da029dab49bf9377b3b4f60a8fecb009", + "reference": "2e26fa63da029dab49bf9377b3b4f60a8fecb009", "shasum": "" }, "require": { @@ -4542,20 +4548,20 @@ "uri", "url" ], - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T07:25:00+00:00" }, { "name": "symfony/translation", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "add53753d978f635492dfe8cd6953f6a7361ef90" + "reference": "409bf229cd552bf7e3faa8ab7e3980b07672073f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/add53753d978f635492dfe8cd6953f6a7361ef90", - "reference": "add53753d978f635492dfe8cd6953f6a7361ef90", + "url": "https://api.github.com/repos/symfony/translation/zipball/409bf229cd552bf7e3faa8ab7e3980b07672073f", + "reference": "409bf229cd552bf7e3faa8ab7e3980b07672073f", "shasum": "" }, "require": { @@ -4607,20 +4613,20 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/var-dumper", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "89fcb5a73e0ede2be2512234c4e40457bb22b35f" + "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/89fcb5a73e0ede2be2512234c4e40457bb22b35f", - "reference": "89fcb5a73e0ede2be2512234c4e40457bb22b35f", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/03e3693a36701f1c581dd24a6d6eea2eba2113f6", + "reference": "03e3693a36701f1c581dd24a6d6eea2eba2113f6", "shasum": "" }, "require": { @@ -4675,7 +4681,7 @@ "debug", "dump" ], - "time": "2017-08-27 14:52:21" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "tecnickcom/tc-lib-barcode", @@ -4765,7 +4771,7 @@ "tc-lib-barcode", "upc" ], - "time": "2017-02-12 13:51:39" + "time": "2017-02-12T13:51:39+00:00" }, { "name": "tecnickcom/tc-lib-color", @@ -4828,7 +4834,7 @@ "tc-lib-color", "web" ], - "time": "2017-02-12 12:07:38" + "time": "2017-02-12T12:07:38+00:00" }, { "name": "tightenco/ziggy", @@ -4878,7 +4884,7 @@ } ], "description": "Generates a Blade directive exporting all of your named Laravel routes. Also provides a nice route() helper function in JavaScript.", - "time": "2017-08-23 11:48:08" + "time": "2017-08-23T11:48:08+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", @@ -4925,7 +4931,7 @@ ], "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", - "time": "2016-09-20 12:50:39" + "time": "2016-09-20T12:50:39+00:00" }, { "name": "unicodeveloper/laravel-password", @@ -4980,7 +4986,7 @@ "security", "unicodeveloper" ], - "time": "2017-04-27 07:35:00" + "time": "2017-04-27T07:35:00+00:00" }, { "name": "vlucas/phpdotenv", @@ -5030,20 +5036,20 @@ "env", "environment" ], - "time": "2016-09-01 10:05:43" + "time": "2016-09-01T10:05:43+00:00" }, { "name": "watson/validating", - "version": "3.0.2", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/dwightwatson/validating.git", - "reference": "c6e9194b034a24d3b6e447bbc7a94d88fad9a1fd" + "reference": "ade13078bf2e820e244603446114a28eda51b08c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dwightwatson/validating/zipball/c6e9194b034a24d3b6e447bbc7a94d88fad9a1fd", - "reference": "c6e9194b034a24d3b6e447bbc7a94d88fad9a1fd", + "url": "https://api.github.com/repos/dwightwatson/validating/zipball/ade13078bf2e820e244603446114a28eda51b08c", + "reference": "ade13078bf2e820e244603446114a28eda51b08c", "shasum": "" }, "require": { @@ -5080,7 +5086,7 @@ "laravel", "validation" ], - "time": "2017-08-25 02:12:38" + "time": "2017-10-08T22:42:01+00:00" }, { "name": "webmozart/assert", @@ -5130,20 +5136,20 @@ "check", "validate" ], - "time": "2016-11-23 20:04:58" + "time": "2016-11-23T20:04:58+00:00" }, { "name": "zendframework/zend-diactoros", - "version": "1.6.0", + "version": "1.6.1", "source": { "type": "git", "url": "https://github.com/zendframework/zend-diactoros.git", - "reference": "2faa791b66bac33ca40031d8bce03b7dc8143490" + "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/2faa791b66bac33ca40031d8bce03b7dc8143490", - "reference": "2faa791b66bac33ca40031d8bce03b7dc8143490", + "url": "https://api.github.com/repos/zendframework/zend-diactoros/zipball/c8664b92a6d5bc229e48b0923486c097e45a7877", + "reference": "c8664b92a6d5bc229e48b0923486c097e45a7877", "shasum": "" }, "require": { @@ -5182,7 +5188,7 @@ "psr", "psr-7" ], - "time": "2017-09-13 14:47:08" + "time": "2017-10-12T15:24:51+00:00" } ], "packages-dev": [ @@ -5243,7 +5249,7 @@ "gherkin", "parser" ], - "time": "2016-10-30 11:50:56" + "time": "2016-10-30T11:50:56+00:00" }, { "name": "codeception/codeception", @@ -5337,7 +5343,7 @@ "functional testing", "unit testing" ], - "time": "2017-09-28 23:19:49" + "time": "2017-09-28T23:19:49+00:00" }, { "name": "facebook/webdriver", @@ -5389,7 +5395,7 @@ "selenium", "webdriver" ], - "time": "2017-04-28 14:54:49" + "time": "2017-04-28T14:54:49+00:00" }, { "name": "fzaninotto/faker", @@ -5439,41 +5445,44 @@ "faker", "fixtures" ], - "time": "2017-08-15 16:48:10" + "time": "2017-08-15T16:48:10+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102" + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102", - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": "^5.6 || ^7.0" }, "require-dev": { - "doctrine/collections": "1.*", - "phpunit/phpunit": "~4.1" + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^4.1" }, "type": "library", "autoload": { "psr-4": { "DeepCopy\\": "src/DeepCopy/" - } + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "Create deep copies (clones) of your objects", - "homepage": "https://github.com/myclabs/DeepCopy", "keywords": [ "clone", "copy", @@ -5481,7 +5490,7 @@ "object", "object graph" ], - "time": "2017-04-12 18:52:22" + "time": "2017-10-19T19:58:43+00:00" }, { "name": "phpunit/php-code-coverage", @@ -5544,7 +5553,7 @@ "testing", "xunit" ], - "time": "2017-04-02 07:44:40" + "time": "2017-04-02T07:44:40+00:00" }, { "name": "phpunit/php-file-iterator", @@ -5591,7 +5600,7 @@ "filesystem", "iterator" ], - "time": "2016-10-03 07:40:28" + "time": "2016-10-03T07:40:28+00:00" }, { "name": "phpunit/php-text-template", @@ -5632,7 +5641,7 @@ "keywords": [ "template" ], - "time": "2015-06-21 13:50:34" + "time": "2015-06-21T13:50:34+00:00" }, { "name": "phpunit/php-timer", @@ -5681,7 +5690,7 @@ "keywords": [ "timer" ], - "time": "2017-02-26 11:10:40" + "time": "2017-02-26T11:10:40+00:00" }, { "name": "phpunit/php-token-stream", @@ -5730,20 +5739,20 @@ "keywords": [ "tokenizer" ], - "time": "2017-02-27 10:12:30" + "time": "2017-02-27T10:12:30+00:00" }, { "name": "phpunit/phpunit", - "version": "5.7.22", + "version": "5.7.23", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "10df877596c9906d4110b5b905313829043f2ada" + "reference": "78532d5269d984660080d8e0f4c99c5c2ea65ffe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/10df877596c9906d4110b5b905313829043f2ada", - "reference": "10df877596c9906d4110b5b905313829043f2ada", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/78532d5269d984660080d8e0f4c99c5c2ea65ffe", + "reference": "78532d5269d984660080d8e0f4c99c5c2ea65ffe", "shasum": "" }, "require": { @@ -5812,7 +5821,7 @@ "testing", "xunit" ], - "time": "2017-09-24 07:23:38" + "time": "2017-10-15T06:13:55+00:00" }, { "name": "phpunit/phpunit-mock-objects", @@ -5871,7 +5880,7 @@ "mock", "xunit" ], - "time": "2017-06-30 09:13:00" + "time": "2017-06-30T09:13:00+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -5916,7 +5925,7 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04 06:30:41" + "time": "2017-03-04T06:30:41+00:00" }, { "name": "sebastian/environment", @@ -5966,7 +5975,7 @@ "environment", "hhvm" ], - "time": "2016-11-26 07:53:53" + "time": "2016-11-26T07:53:53+00:00" }, { "name": "sebastian/global-state", @@ -6017,7 +6026,7 @@ "keywords": [ "global state" ], - "time": "2015-10-12 03:26:01" + "time": "2015-10-12T03:26:01+00:00" }, { "name": "sebastian/object-enumerator", @@ -6063,7 +6072,7 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-02-18 15:18:39" + "time": "2017-02-18T15:18:39+00:00" }, { "name": "sebastian/resource-operations", @@ -6105,7 +6114,7 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2015-07-28 20:34:47" + "time": "2015-07-28T20:34:47+00:00" }, { "name": "sebastian/version", @@ -6148,20 +6157,20 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "time": "2016-10-03 07:35:21" + "time": "2016-10-03T07:35:21+00:00" }, { "name": "squizlabs/php_codesniffer", - "version": "3.1.0", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", - "reference": "3c2d0a0fe39684ba0c1eb842a6a775d0b938d699" + "reference": "d667e245d5dcd4d7bf80f26f2c947d476b66213e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/3c2d0a0fe39684ba0c1eb842a6a775d0b938d699", - "reference": "3c2d0a0fe39684ba0c1eb842a6a775d0b938d699", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/d667e245d5dcd4d7bf80f26f2c947d476b66213e", + "reference": "d667e245d5dcd4d7bf80f26f2c947d476b66213e", "shasum": "" }, "require": { @@ -6199,7 +6208,7 @@ "phpcs", "standards" ], - "time": "2017-09-19 22:47:14" + "time": "2017-10-16T22:40:25+00:00" }, { "name": "stecman/symfony-console-completion", @@ -6244,20 +6253,20 @@ } ], "description": "Automatic BASH completion for Symfony Console Component based applications.", - "time": "2016-02-24 05:08:54" + "time": "2016-02-24T05:08:54+00:00" }, { "name": "symfony/browser-kit", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "aee7120b058c268363e606ff5fe8271da849a1b5" + "reference": "317d5bdf0127f06db7ea294186132b4f5b036839" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/aee7120b058c268363e606ff5fe8271da849a1b5", - "reference": "aee7120b058c268363e606ff5fe8271da849a1b5", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/317d5bdf0127f06db7ea294186132b4f5b036839", + "reference": "317d5bdf0127f06db7ea294186132b4f5b036839", "shasum": "" }, "require": { @@ -6301,7 +6310,7 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-02T06:42:24+00:00" }, { "name": "symfony/dom-crawler", @@ -6357,20 +6366,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2017-01-21 17:13:55" + "time": "2017-01-21T17:13:55+00:00" }, { "name": "symfony/yaml", - "version": "v3.3.9", + "version": "v3.3.10", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "1d8c2a99c80862bdc3af94c1781bf70f86bccac0" + "reference": "8c7bf1e7d5d6b05a690b715729cb4cd0c0a99c46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/1d8c2a99c80862bdc3af94c1781bf70f86bccac0", - "reference": "1d8c2a99c80862bdc3af94c1781bf70f86bccac0", + "url": "https://api.github.com/repos/symfony/yaml/zipball/8c7bf1e7d5d6b05a690b715729cb4cd0c0a99c46", + "reference": "8c7bf1e7d5d6b05a690b715729cb4cd0c0a99c46", "shasum": "" }, "require": { @@ -6412,7 +6421,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2017-10-05T14:43:42+00:00" } ], "aliases": [],