Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChaoyi Zha <summermontreal@gmail.com>2020-10-06 21:18:26 +0300
committerGitHub <noreply@github.com>2020-10-06 21:18:26 +0300
commit8d55dabee2dabf0fe103ede0952fe74d0a748ed8 (patch)
tree07fc13dc2d37b80d9b773b7d9804fc0561b61e77
parentf9622d733b554154a39e9a716c5c134da35acba7 (diff)
Fix missing Maxmind license key issue (#566)
* Add option to add maxmind license key in setup * Update symfony/http-foundation to patch security vulnerability * Remove echo statement * fix typo
-rw-r--r--app/Http/Controllers/SetupController.php5
-rw-r--r--composer.json3
-rw-r--r--composer.lock2531
-rw-r--r--config/geoip.php2
-rw-r--r--docs/user-guide/maxmind-license.md20
-rw-r--r--mkdocs.yml1
-rw-r--r--resources/views/env.blade.php3
-rw-r--r--resources/views/setup.blade.php10
8 files changed, 1606 insertions, 969 deletions
diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php
index d290065..23b161d 100644
--- a/app/Http/Controllers/SetupController.php
+++ b/app/Http/Controllers/SetupController.php
@@ -106,6 +106,8 @@ class SetupController extends Controller {
$polr_recaptcha_site_key = $request->input('setting:recaptcha_site_key');
$polr_recaptcha_secret_key = $request->input('setting:recaptcha_secret_key');
+ $maxmind_license_key = $request->input('maxmind:license_key');
+
$acct_username = $request->input('acct:username');
$acct_email = $request->input('acct:email');
$acct_password = $request->input('acct:password');
@@ -148,6 +150,7 @@ class SetupController extends Controller {
'APP_STYLESHEET' => $app_stylesheet,
'POLR_GENERATED_AT' => $date_today,
'POLR_SETUP_RAN' => $polr_setup_ran,
+ 'MAXMIND_LICENSE_KEY' => $maxmind_license_key,
'DB_HOST' => $db_host,
'DB_PORT' => $db_port,
@@ -240,7 +243,7 @@ class SetupController extends Controller {
if (env('SETTING_ADV_ANALYTICS')) {
$geoip_db_created = self::updateGeoIP();
if (!$geoip_db_created) {
- return redirect(route('setup'))->with('error', 'Could not fetch GeoIP database for advanced analytics. Perhaps your server is not connected to the internet?');
+ return redirect(route('setup'))->with('error', 'Could not fetch GeoIP database for advanced analytics. Perhaps your server is not connected to the internet or your MAXMIND_LICENSE_KEY is incorrect?');
}
}
diff --git a/composer.json b/composer.json
index 4f883ee..b0d98ef 100644
--- a/composer.json
+++ b/composer.json
@@ -15,7 +15,8 @@
"geoip2/geoip2": "^2.4",
"nesbot/carbon": "^1.22",
"doctrine/dbal": "^2.5",
- "google/recaptcha": "~1.1"
+ "google/recaptcha": "~1.1",
+ "symfony/http-foundation": "2.7.51"
},
"require-dev": {
"fzaninotto/faker": "~1.0",
diff --git a/composer.lock b/composer.lock
index 14d90c6..636374e 100644
--- a/composer.lock
+++ b/composer.lock
@@ -1,36 +1,34 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
+ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "1b7ae24ee886aba13a99bf0207be0cdd",
+ "content-hash": "09b953d160500e6dfbcaa6c916371495",
"packages": [
{
"name": "composer/ca-bundle",
- "version": "1.0.6",
+ "version": "1.2.8",
"source": {
"type": "git",
"url": "https://github.com/composer/ca-bundle.git",
- "reference": "a795611394b3c05164fd0eb291b492b39339cba4"
+ "reference": "8a7ecad675253e4654ea05505233285377405215"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/ca-bundle/zipball/a795611394b3c05164fd0eb291b492b39339cba4",
- "reference": "a795611394b3c05164fd0eb291b492b39339cba4",
+ "url": "https://api.github.com/repos/composer/ca-bundle/zipball/8a7ecad675253e4654ea05505233285377405215",
+ "reference": "8a7ecad675253e4654ea05505233285377405215",
"shasum": ""
},
"require": {
"ext-openssl": "*",
"ext-pcre": "*",
- "php": "^5.3.2 || ^7.0"
+ "php": "^5.3.2 || ^7.0 || ^8.0"
},
"require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8",
"psr/log": "^1.0",
- "symfony/process": "^2.5 || ^3.0"
- },
- "suggest": {
- "symfony/process": "This is necessary to reliably check whether openssl_x509_parse is vulnerable on older php versions, but can be ignored on PHP 5.5.6+"
+ "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
},
"type": "library",
"extra": {
@@ -62,7 +60,21 @@
"ssl",
"tls"
],
- "time": "2016-11-02T18:11:27+00:00"
+ "funding": [
+ {
+ "url": "https://packagist.com",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/composer",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/composer/composer",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-08-23T12:54:47+00:00"
},
{
"name": "danielstjules/stringy",
@@ -121,102 +133,39 @@
"time": "2015-07-23T00:54:12+00:00"
},
{
- "name": "doctrine/annotations",
- "version": "v1.3.1",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/annotations.git",
- "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/bd4461328621bde0ae6b1b2675fbc6aca4ceb558",
- "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558",
- "shasum": ""
- },
- "require": {
- "doctrine/lexer": "1.*",
- "php": "^5.6 || ^7.0"
- },
- "require-dev": {
- "doctrine/cache": "1.*",
- "phpunit/phpunit": "^5.6.1"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.4.x-dev"
- }
- },
- "autoload": {
- "psr-4": {
- "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
- {
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
- },
- {
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "Docblock Annotations Parser",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "annotations",
- "docblock",
- "parser"
- ],
- "time": "2016-12-30T15:59:45+00:00"
- },
- {
"name": "doctrine/cache",
- "version": "v1.6.1",
+ "version": "1.10.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/cache.git",
- "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3"
+ "reference": "13e3381b25847283a91948d04640543941309727"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/cache/zipball/b6f544a20f4807e81f7044d31e679ccbb1866dc3",
- "reference": "b6f544a20f4807e81f7044d31e679ccbb1866dc3",
+ "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
+ "reference": "13e3381b25847283a91948d04640543941309727",
"shasum": ""
},
"require": {
- "php": "~5.5|~7.0"
+ "php": "~7.1 || ^8.0"
},
"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",
+ "doctrine/coding-standard": "^6.0",
+ "mongodb/mongodb": "^1.1",
+ "phpunit/phpunit": "^7.0",
+ "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.9.x-dev"
}
},
"autoload": {
@@ -230,6 +179,10 @@
],
"authors": [
{
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
@@ -238,10 +191,6 @@
"email": "kontakt@beberlei.de"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
},
@@ -250,44 +199,80 @@
"email": "schmittjoh@gmail.com"
}
],
- "description": "Caching library offering an object-oriented API for many cache backends",
- "homepage": "http://www.doctrine-project.org",
+ "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
+ "homepage": "https://www.doctrine-project.org/projects/cache.html",
"keywords": [
+ "abstraction",
+ "apcu",
"cache",
- "caching"
+ "caching",
+ "couchdb",
+ "memcached",
+ "php",
+ "redis",
+ "xcache"
],
- "time": "2016-10-29T11:16:17+00:00"
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-07T18:54:01+00:00"
},
{
- "name": "doctrine/collections",
- "version": "v1.4.0",
+ "name": "doctrine/dbal",
+ "version": "2.11.1",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/collections.git",
- "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
+ "url": "https://github.com/doctrine/dbal.git",
+ "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
- "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
+ "reference": "6e6903cd5e3a5be60a79439e3ee8fe126f78fe86",
"shasum": ""
},
"require": {
- "php": "^5.6 || ^7.0"
+ "doctrine/cache": "^1.0",
+ "doctrine/event-manager": "^1.0",
+ "ext-pdo": "*",
+ "php": "^7.3"
},
"require-dev": {
- "doctrine/coding-standard": "~0.1@dev",
- "phpunit/phpunit": "^5.7"
+ "doctrine/coding-standard": "^8.1",
+ "jetbrains/phpstorm-stubs": "^2019.1",
+ "nikic/php-parser": "^4.4",
+ "phpstan/phpstan": "^0.12.40",
+ "phpunit/phpunit": "^9.3",
+ "psalm/plugin-phpunit": "^0.10.0",
+ "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
+ "vimeo/psalm": "^3.14.2"
},
+ "suggest": {
+ "symfony/console": "For helpful console commands such as SQL execution and import of files."
+ },
+ "bin": [
+ "bin/doctrine-dbal"
+ ],
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "4.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Collections\\": "lib/"
+ "psr-4": {
+ "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -296,6 +281,10 @@
],
"authors": [
{
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
@@ -304,56 +293,77 @@
"email": "kontakt@beberlei.de"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
}
],
- "description": "Collections Abstraction library",
- "homepage": "http://www.doctrine-project.org",
+ "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
+ "homepage": "https://www.doctrine-project.org/projects/dbal.html",
"keywords": [
- "array",
- "collections",
- "iterator"
+ "abstraction",
+ "database",
+ "db2",
+ "dbal",
+ "mariadb",
+ "mssql",
+ "mysql",
+ "oci8",
+ "oracle",
+ "pdo",
+ "pgsql",
+ "postgresql",
+ "queryobject",
+ "sasql",
+ "sql",
+ "sqlanywhere",
+ "sqlite",
+ "sqlserver",
+ "sqlsrv"
+ ],
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
+ "type": "tidelift"
+ }
],
- "time": "2017-01-03T10:49:41+00:00"
+ "time": "2020-09-27T04:09:41+00:00"
},
{
- "name": "doctrine/common",
- "version": "v2.7.2",
+ "name": "doctrine/event-manager",
+ "version": "1.1.1",
"source": {
"type": "git",
- "url": "https://github.com/doctrine/common.git",
- "reference": "930297026c8009a567ac051fd545bf6124150347"
+ "url": "https://github.com/doctrine/event-manager.git",
+ "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/common/zipball/930297026c8009a567ac051fd545bf6124150347",
- "reference": "930297026c8009a567ac051fd545bf6124150347",
+ "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
+ "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
"shasum": ""
},
"require": {
- "doctrine/annotations": "1.*",
- "doctrine/cache": "1.*",
- "doctrine/collections": "1.*",
- "doctrine/inflector": "1.*",
- "doctrine/lexer": "1.*",
- "php": "~5.6|~7.0"
+ "php": "^7.1 || ^8.0"
+ },
+ "conflict": {
+ "doctrine/common": "<2.9@dev"
},
"require-dev": {
- "phpunit/phpunit": "^5.4.6"
+ "doctrine/coding-standard": "^6.0",
+ "phpunit/phpunit": "^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.7.x-dev"
+ "dev-master": "1.0.x-dev"
}
},
"autoload": {
@@ -367,6 +377,10 @@
],
"authors": [
{
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
@@ -375,129 +389,77 @@
"email": "kontakt@beberlei.de"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
},
{
"name": "Johannes Schmitt",
"email": "schmittjoh@gmail.com"
+ },
+ {
+ "name": "Marco Pivetta",
+ "email": "ocramius@gmail.com"
}
],
- "description": "Common Library for Doctrine projects",
- "homepage": "http://www.doctrine-project.org",
+ "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
+ "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
"keywords": [
- "annotations",
- "collections",
- "eventmanager",
- "persistence",
- "spl"
+ "event",
+ "event dispatcher",
+ "event manager",
+ "event system",
+ "events"
],
- "time": "2017-01-13T14:02:13+00:00"
- },
- {
- "name": "doctrine/dbal",
- "version": "v2.5.11",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/dbal.git",
- "reference": "1b1effbddbdc0f40d1c8f849f44bcddac4f52a48"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/1b1effbddbdc0f40d1c8f849f44bcddac4f52a48",
- "reference": "1b1effbddbdc0f40d1c8f849f44bcddac4f52a48",
- "shasum": ""
- },
- "require": {
- "doctrine/common": ">=2.4,<2.8-dev",
- "php": ">=5.3.2"
- },
- "require-dev": {
- "phpunit/phpunit": "4.*",
- "symfony/console": "2.*||^3.0"
- },
- "suggest": {
- "symfony/console": "For helpful console commands such as SQL execution and import of files."
- },
- "bin": [
- "bin/doctrine-dbal"
- ],
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "2.5.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Doctrine\\DBAL\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
- ],
- "authors": [
+ "funding": [
{
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
- },
- {
- "name": "Benjamin Eberlei",
- "email": "kontakt@beberlei.de"
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
},
{
- "name": "Jonathan Wage",
- "email": "jonwage@gmail.com"
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
+ "type": "tidelift"
}
],
- "description": "Database Abstraction Layer",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "database",
- "dbal",
- "persistence",
- "queryobject"
- ],
- "time": "2017-02-04T21:20:13+00:00"
+ "time": "2020-05-29T18:28:51+00:00"
},
{
"name": "doctrine/inflector",
- "version": "v1.1.0",
+ "version": "1.4.3",
"source": {
"type": "git",
"url": "https://github.com/doctrine/inflector.git",
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
+ "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
+ "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c",
+ "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^7.2 || ^8.0"
},
"require-dev": {
- "phpunit/phpunit": "4.*"
+ "doctrine/coding-standard": "^7.0",
+ "phpstan/phpstan": "^0.11",
+ "phpstan/phpstan-phpunit": "^0.11",
+ "phpstan/phpstan-strict-rules": "^0.11",
+ "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Doctrine\\Common\\Inflector\\": "lib/"
+ "psr-4": {
+ "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector",
+ "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -506,6 +468,10 @@
],
"authors": [
{
+ "name": "Guilherme Blanco",
+ "email": "guilhermeblanco@gmail.com"
+ },
+ {
"name": "Roman Borschel",
"email": "roman@code-factory.org"
},
@@ -514,10 +480,6 @@
"email": "kontakt@beberlei.de"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
"name": "Jonathan Wage",
"email": "jonwage@gmail.com"
},
@@ -526,133 +488,60 @@
"email": "schmittjoh@gmail.com"
}
],
- "description": "Common String Manipulations with regard to casing and singular/plural rules.",
- "homepage": "http://www.doctrine-project.org",
+ "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
+ "homepage": "https://www.doctrine-project.org/projects/inflector.html",
"keywords": [
"inflection",
- "pluralize",
- "singularize",
- "string"
- ],
- "time": "2015-11-06T14:35:42+00:00"
- },
- {
- "name": "doctrine/lexer",
- "version": "v1.0.1",
- "source": {
- "type": "git",
- "url": "https://github.com/doctrine/lexer.git",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c",
- "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c",
- "shasum": ""
- },
- "require": {
- "php": ">=5.3.2"
- },
- "type": "library",
- "extra": {
- "branch-alias": {
- "dev-master": "1.0.x-dev"
- }
- },
- "autoload": {
- "psr-0": {
- "Doctrine\\Common\\Lexer\\": "lib/"
- }
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "MIT"
+ "inflector",
+ "lowercase",
+ "manipulation",
+ "php",
+ "plural",
+ "singular",
+ "strings",
+ "uppercase",
+ "words"
],
- "authors": [
+ "funding": [
{
- "name": "Roman Borschel",
- "email": "roman@code-factory.org"
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
},
{
- "name": "Guilherme Blanco",
- "email": "guilhermeblanco@gmail.com"
- },
- {
- "name": "Johannes Schmitt",
- "email": "schmittjoh@gmail.com"
- }
- ],
- "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.",
- "homepage": "http://www.doctrine-project.org",
- "keywords": [
- "lexer",
- "parser"
- ],
- "time": "2014-09-09T13:34:57+00:00"
- },
- {
- "name": "dompdf/dompdf",
- "version": "v0.6.2",
- "source": {
- "type": "git",
- "url": "https://github.com/dompdf/dompdf.git",
- "reference": "cc06008f75262510ee135b8cbb14e333a309f651"
- },
- "dist": {
- "type": "zip",
- "url": "https://api.github.com/repos/dompdf/dompdf/zipball/cc06008f75262510ee135b8cbb14e333a309f651",
- "reference": "cc06008f75262510ee135b8cbb14e333a309f651",
- "shasum": ""
- },
- "require": {
- "phenx/php-font-lib": "0.2.*"
- },
- "type": "library",
- "autoload": {
- "classmap": [
- "include/"
- ]
- },
- "notification-url": "https://packagist.org/downloads/",
- "license": [
- "LGPL"
- ],
- "authors": [
- {
- "name": "Fabien Ménager",
- "email": "fabien.menager@gmail.com"
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
},
{
- "name": "Brian Sweeney",
- "email": "eclecticgeek@gmail.com"
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
+ "type": "tidelift"
}
],
- "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
- "homepage": "https://github.com/dompdf/dompdf",
- "time": "2015-12-07T04:07:13+00:00"
+ "time": "2020-05-29T07:19:59+00:00"
},
{
"name": "geoip2/geoip2",
- "version": "v2.4.4",
+ "version": "v2.11.0",
"source": {
"type": "git",
"url": "https://github.com/maxmind/GeoIP2-php.git",
- "reference": "57e0384a83d0935db4c4cdb3f411aa131481ae80"
+ "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/57e0384a83d0935db4c4cdb3f411aa131481ae80",
- "reference": "57e0384a83d0935db4c4cdb3f411aa131481ae80",
+ "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
+ "reference": "d01be5894a5c1a3381c58c9b1795cd07f96c30f7",
"shasum": ""
},
"require": {
- "maxmind-db/reader": "~1.0",
- "maxmind/web-service-common": "~0.3",
- "php": ">=5.3.1"
+ "ext-json": "*",
+ "maxmind-db/reader": "~1.8",
+ "maxmind/web-service-common": "~0.8",
+ "php": ">=7.2"
},
"require-dev": {
- "phpunit/phpunit": "4.2.*",
- "squizlabs/php_codesniffer": "2.*"
+ "friendsofphp/php-cs-fixer": "2.*",
+ "phpunit/phpunit": "^8.0 || ^9.0",
+ "squizlabs/php_codesniffer": "3.*"
},
"type": "library",
"autoload": {
@@ -668,7 +557,7 @@
{
"name": "Gregory J. Oschwald",
"email": "goschwald@maxmind.com",
- "homepage": "http://www.maxmind.com/"
+ "homepage": "https://www.maxmind.com/"
}
],
"description": "MaxMind GeoIP2 PHP API",
@@ -680,32 +569,34 @@
"geolocation",
"maxmind"
],
- "time": "2016-10-11T21:58:42+00:00"
+ "time": "2020-10-01T18:48:34+00:00"
},
{
"name": "google/recaptcha",
- "version": "1.1.3",
+ "version": "1.2.4",
"source": {
"type": "git",
"url": "https://github.com/google/recaptcha.git",
- "reference": "5a56d15ca10a7b75158178752b2ad8f755eb4f78"
+ "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/google/recaptcha/zipball/5a56d15ca10a7b75158178752b2ad8f755eb4f78",
- "reference": "5a56d15ca10a7b75158178752b2ad8f755eb4f78",
+ "url": "https://api.github.com/repos/google/recaptcha/zipball/614f25a9038be4f3f2da7cbfd778dc5b357d2419",
+ "reference": "614f25a9038be4f3f2da7cbfd778dc5b357d2419",
"shasum": ""
},
"require": {
"php": ">=5.5"
},
"require-dev": {
- "phpunit/phpunit": "^4.8"
+ "friendsofphp/php-cs-fixer": "^2.2.20|^2.15",
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpunit": "^4.8.36|^5.7.27|^6.59|^7.5.11"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.1.x-dev"
+ "dev-master": "1.2.x-dev"
}
},
"autoload": {
@@ -717,28 +608,28 @@
"license": [
"BSD-3-Clause"
],
- "description": "Client library for reCAPTCHA, a free service that protect websites from spam and abuse.",
- "homepage": "http://www.google.com/recaptcha/",
+ "description": "Client library for reCAPTCHA, a free service that protects websites from spam and abuse.",
+ "homepage": "https://www.google.com/recaptcha/",
"keywords": [
"Abuse",
"captcha",
"recaptcha",
"spam"
],
- "time": "2017-03-09T18:44:34+00:00"
+ "time": "2020-03-31T17:50:54+00:00"
},
{
"name": "illuminate/auth",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/auth.git",
- "reference": "78b1b83ceecace60d7563712425f404a6619da2a"
+ "reference": "50824f5fccf42070e6801b6a04bb7c6f32ed578b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/auth/zipball/78b1b83ceecace60d7563712425f404a6619da2a",
- "reference": "78b1b83ceecace60d7563712425f404a6619da2a",
+ "url": "https://api.github.com/repos/illuminate/auth/zipball/50824f5fccf42070e6801b6a04bb7c6f32ed578b",
+ "reference": "50824f5fccf42070e6801b6a04bb7c6f32ed578b",
"shasum": ""
},
"require": {
@@ -775,20 +666,20 @@
],
"description": "The Illuminate Auth package.",
"homepage": "http://laravel.com",
- "time": "2015-12-08T14:38:44+00:00"
+ "time": "2016-06-06T14:03:59+00:00"
},
{
"name": "illuminate/broadcasting",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/broadcasting.git",
- "reference": "d9393a6d1455b14149999911cb06a48c6eff6a74"
+ "reference": "b376365db87b1aeb6277671f0ab4bd1a687edd35"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/d9393a6d1455b14149999911cb06a48c6eff6a74",
- "reference": "d9393a6d1455b14149999911cb06a48c6eff6a74",
+ "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/b376365db87b1aeb6277671f0ab4bd1a687edd35",
+ "reference": "b376365db87b1aeb6277671f0ab4bd1a687edd35",
"shasum": ""
},
"require": {
@@ -826,16 +717,16 @@
},
{
"name": "illuminate/bus",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/bus.git",
- "reference": "32a190fcc3f3ce487045b5eabd2ce839b9080a98"
+ "reference": "6637c1347dc3c57c2808705e7fe80ac733c73939"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/bus/zipball/32a190fcc3f3ce487045b5eabd2ce839b9080a98",
- "reference": "32a190fcc3f3ce487045b5eabd2ce839b9080a98",
+ "url": "https://api.github.com/repos/illuminate/bus/zipball/6637c1347dc3c57c2808705e7fe80ac733c73939",
+ "reference": "6637c1347dc3c57c2808705e7fe80ac733c73939",
"shasum": ""
},
"require": {
@@ -871,16 +762,16 @@
},
{
"name": "illuminate/cache",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/cache.git",
- "reference": "3721b684d82e1cea05081cef2eafa04ef5fe2795"
+ "reference": "d499f629bdefc9d14882b423137ead66bb7f3350"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/cache/zipball/3721b684d82e1cea05081cef2eafa04ef5fe2795",
- "reference": "3721b684d82e1cea05081cef2eafa04ef5fe2795",
+ "url": "https://api.github.com/repos/illuminate/cache/zipball/d499f629bdefc9d14882b423137ead66bb7f3350",
+ "reference": "d499f629bdefc9d14882b423137ead66bb7f3350",
"shasum": ""
},
"require": {
@@ -917,20 +808,20 @@
],
"description": "The Illuminate Cache package.",
"homepage": "http://laravel.com",
- "time": "2015-12-28T21:20:38+00:00"
+ "time": "2016-08-02T07:48:05+00:00"
},
{
"name": "illuminate/config",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/config.git",
- "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d"
+ "reference": "b0bb52f9004a09920cf235b3ed1481355360b70f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/config/zipball/de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
- "reference": "de6c1cc0f2745645dec3f8bab0e43a3aa141d12d",
+ "url": "https://api.github.com/repos/illuminate/config/zipball/b0bb52f9004a09920cf235b3ed1481355360b70f",
+ "reference": "b0bb52f9004a09920cf235b3ed1481355360b70f",
"shasum": ""
},
"require": {
@@ -966,16 +857,16 @@
},
{
"name": "illuminate/console",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/console.git",
- "reference": "548cfc29d0779cb5152f1a1724bafa2b53461a95"
+ "reference": "cde6c371180ca25d700d5ab5dc642f5712eacf2f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/console/zipball/548cfc29d0779cb5152f1a1724bafa2b53461a95",
- "reference": "548cfc29d0779cb5152f1a1724bafa2b53461a95",
+ "url": "https://api.github.com/repos/illuminate/console/zipball/cde6c371180ca25d700d5ab5dc642f5712eacf2f",
+ "reference": "cde6c371180ca25d700d5ab5dc642f5712eacf2f",
"shasum": ""
},
"require": {
@@ -1013,20 +904,20 @@
],
"description": "The Illuminate Console package.",
"homepage": "http://laravel.com",
- "time": "2015-12-28T21:10:29+00:00"
+ "time": "2016-05-28T21:16:16+00:00"
},
{
"name": "illuminate/container",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/container.git",
- "reference": "91e10d009af0afd95d729bdec7acf9958ae95277"
+ "reference": "237de3cedbca9b753f2ee69bc7145ae159b8cc96"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/container/zipball/91e10d009af0afd95d729bdec7acf9958ae95277",
- "reference": "91e10d009af0afd95d729bdec7acf9958ae95277",
+ "url": "https://api.github.com/repos/illuminate/container/zipball/237de3cedbca9b753f2ee69bc7145ae159b8cc96",
+ "reference": "237de3cedbca9b753f2ee69bc7145ae159b8cc96",
"shasum": ""
},
"require": {
@@ -1056,20 +947,20 @@
],
"description": "The Illuminate Container package.",
"homepage": "http://laravel.com",
- "time": "2015-12-07T20:20:37+00:00"
+ "time": "2016-06-14T13:37:44+00:00"
},
{
"name": "illuminate/contracts",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/contracts.git",
- "reference": "e2b71fdbeeb3438748dca5f497e205888788a883"
+ "reference": "6e828a355b7a467232efad3dbe76df17463178e3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/e2b71fdbeeb3438748dca5f497e205888788a883",
- "reference": "e2b71fdbeeb3438748dca5f497e205888788a883",
+ "url": "https://api.github.com/repos/illuminate/contracts/zipball/6e828a355b7a467232efad3dbe76df17463178e3",
+ "reference": "6e828a355b7a467232efad3dbe76df17463178e3",
"shasum": ""
},
"require": {
@@ -1102,16 +993,16 @@
},
{
"name": "illuminate/cookie",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/cookie.git",
- "reference": "b996f1da991449a3a91720c1a08a8cc27ddba8d4"
+ "reference": "16563e04b89837eda43ce343f8623336d94c01ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/cookie/zipball/b996f1da991449a3a91720c1a08a8cc27ddba8d4",
- "reference": "b996f1da991449a3a91720c1a08a8cc27ddba8d4",
+ "url": "https://api.github.com/repos/illuminate/cookie/zipball/16563e04b89837eda43ce343f8623336d94c01ba",
+ "reference": "16563e04b89837eda43ce343f8623336d94c01ba",
"shasum": ""
},
"require": {
@@ -1148,16 +1039,16 @@
},
{
"name": "illuminate/database",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/database.git",
- "reference": "508d4dca412f7645a4e5ae97a2ee0f3cf836550f"
+ "reference": "d4cd215d18b3ed848384a45764ae71ec89a47f07"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/database/zipball/508d4dca412f7645a4e5ae97a2ee0f3cf836550f",
- "reference": "508d4dca412f7645a4e5ae97a2ee0f3cf836550f",
+ "url": "https://api.github.com/repos/illuminate/database/zipball/d4cd215d18b3ed848384a45764ae71ec89a47f07",
+ "reference": "d4cd215d18b3ed848384a45764ae71ec89a47f07",
"shasum": ""
},
"require": {
@@ -1204,20 +1095,20 @@
"orm",
"sql"
],
- "time": "2015-12-30T23:14:26+00:00"
+ "time": "2016-08-10T12:23:17+00:00"
},
{
"name": "illuminate/encryption",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/encryption.git",
- "reference": "abd14c81ce4f21edff005130dd5d980fe9cc4249"
+ "reference": "713b6bd42d7e4e0d8cb0e9f79669520cc7e60232"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/encryption/zipball/abd14c81ce4f21edff005130dd5d980fe9cc4249",
- "reference": "abd14c81ce4f21edff005130dd5d980fe9cc4249",
+ "url": "https://api.github.com/repos/illuminate/encryption/zipball/713b6bd42d7e4e0d8cb0e9f79669520cc7e60232",
+ "reference": "713b6bd42d7e4e0d8cb0e9f79669520cc7e60232",
"shasum": ""
},
"require": {
@@ -1225,11 +1116,9 @@
"ext-openssl": "*",
"illuminate/contracts": "5.1.*",
"illuminate/support": "5.1.*",
+ "paragonie/random_compat": "~1.4",
"php": ">=5.5.9"
},
- "suggest": {
- "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (~1.1)."
- },
"type": "library",
"extra": {
"branch-alias": {
@@ -1253,20 +1142,20 @@
],
"description": "The Illuminate Encryption package.",
"homepage": "http://laravel.com",
- "time": "2015-12-02T19:57:45+00:00"
+ "time": "2016-03-26T14:26:18+00:00"
},
{
"name": "illuminate/events",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/events.git",
- "reference": "a199e83e8a0f172ca3f0d3d685780c55a96104ab"
+ "reference": "b498088237eb9f6be9725e807e8e01d2631777e9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/events/zipball/a199e83e8a0f172ca3f0d3d685780c55a96104ab",
- "reference": "a199e83e8a0f172ca3f0d3d685780c55a96104ab",
+ "url": "https://api.github.com/repos/illuminate/events/zipball/b498088237eb9f6be9725e807e8e01d2631777e9",
+ "reference": "b498088237eb9f6be9725e807e8e01d2631777e9",
"shasum": ""
},
"require": {
@@ -1298,20 +1187,20 @@
],
"description": "The Illuminate Events package.",
"homepage": "http://laravel.com",
- "time": "2015-11-29T16:58:05+00:00"
+ "time": "2015-12-30T20:19:08+00:00"
},
{
"name": "illuminate/filesystem",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/filesystem.git",
- "reference": "a1cc4b69d9cde4e8617506fa84576c4197ca0cf0"
+ "reference": "f109f5fb12eef0211cdaff226bef51e18ec8c147"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/filesystem/zipball/a1cc4b69d9cde4e8617506fa84576c4197ca0cf0",
- "reference": "a1cc4b69d9cde4e8617506fa84576c4197ca0cf0",
+ "url": "https://api.github.com/repos/illuminate/filesystem/zipball/f109f5fb12eef0211cdaff226bef51e18ec8c147",
+ "reference": "f109f5fb12eef0211cdaff226bef51e18ec8c147",
"shasum": ""
},
"require": {
@@ -1348,20 +1237,20 @@
],
"description": "The Illuminate Filesystem package.",
"homepage": "http://laravel.com",
- "time": "2015-12-20T15:51:01+00:00"
+ "time": "2016-05-28T21:16:16+00:00"
},
{
"name": "illuminate/hashing",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/hashing.git",
- "reference": "6c2e1658d57b1d5cc60a397d3cd0d64c61c2062f"
+ "reference": "c2965ffab42f4e34ea243f669439f5f7f08223ad"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/hashing/zipball/6c2e1658d57b1d5cc60a397d3cd0d64c61c2062f",
- "reference": "6c2e1658d57b1d5cc60a397d3cd0d64c61c2062f",
+ "url": "https://api.github.com/repos/illuminate/hashing/zipball/c2965ffab42f4e34ea243f669439f5f7f08223ad",
+ "reference": "c2965ffab42f4e34ea243f669439f5f7f08223ad",
"shasum": ""
},
"require": {
@@ -1396,16 +1285,16 @@
},
{
"name": "illuminate/http",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/http.git",
- "reference": "4b33ade62b49946c5f32e7680e42111409e1ce6d"
+ "reference": "9f6466e9ad4f4d50afc833b63003e5eebb8a6c7b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/http/zipball/4b33ade62b49946c5f32e7680e42111409e1ce6d",
- "reference": "4b33ade62b49946c5f32e7680e42111409e1ce6d",
+ "url": "https://api.github.com/repos/illuminate/http/zipball/9f6466e9ad4f4d50afc833b63003e5eebb8a6c7b",
+ "reference": "9f6466e9ad4f4d50afc833b63003e5eebb8a6c7b",
"shasum": ""
},
"require": {
@@ -1438,20 +1327,20 @@
],
"description": "The Illuminate Http package.",
"homepage": "http://laravel.com",
- "time": "2015-12-19T22:27:14+00:00"
+ "time": "2016-04-08T07:47:41+00:00"
},
{
"name": "illuminate/mail",
- "version": "v5.1.31",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/mail.git",
- "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01"
+ "reference": "2d36d016f366d8d381d9c2c3cc164469d66ac9f4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/mail/zipball/a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
- "reference": "a4b3bd4f8301ac22d31f1e82698803fdf693bc01",
+ "url": "https://api.github.com/repos/illuminate/mail/zipball/2d36d016f366d8d381d9c2c3cc164469d66ac9f4",
+ "reference": "2d36d016f366d8d381d9c2c3cc164469d66ac9f4",
"shasum": ""
},
"require": {
@@ -1464,7 +1353,8 @@
},
"suggest": {
"aws/aws-sdk-php": "Required to use the SES mail driver (~3.0).",
- "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.3|~6.0)."
+ "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers (~5.3|~6.0).",
+ "jeremeamia/superclosure": "Required to be able to serialize closures (~2.0)."
},
"type": "library",
"extra": {
@@ -1489,20 +1379,20 @@
],
"description": "The Illuminate Mail package.",
"homepage": "http://laravel.com",
- "time": "2015-12-05T16:21:24+00:00"
+ "time": "2016-08-04T14:14:51+00:00"
},
{
"name": "illuminate/pagination",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/pagination.git",
- "reference": "2649ea015109c2e80ec38397e2c00ba123de9743"
+ "reference": "0e25c18fa0d50c97132d3d0b2eb9d566005ffce3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/pagination/zipball/2649ea015109c2e80ec38397e2c00ba123de9743",
- "reference": "2649ea015109c2e80ec38397e2c00ba123de9743",
+ "url": "https://api.github.com/repos/illuminate/pagination/zipball/0e25c18fa0d50c97132d3d0b2eb9d566005ffce3",
+ "reference": "0e25c18fa0d50c97132d3d0b2eb9d566005ffce3",
"shasum": ""
},
"require": {
@@ -1533,20 +1423,20 @@
],
"description": "The Illuminate Pagination package.",
"homepage": "http://laravel.com",
- "time": "2015-12-07T19:40:09+00:00"
+ "time": "2016-07-13T12:50:53+00:00"
},
{
"name": "illuminate/pipeline",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/pipeline.git",
- "reference": "2725b0523b50415e1d20aea7297d205f65b53e27"
+ "reference": "ce96681a13cc7005954a14b3f6ee93ac54aa2ded"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/pipeline/zipball/2725b0523b50415e1d20aea7297d205f65b53e27",
- "reference": "2725b0523b50415e1d20aea7297d205f65b53e27",
+ "url": "https://api.github.com/repos/illuminate/pipeline/zipball/ce96681a13cc7005954a14b3f6ee93ac54aa2ded",
+ "reference": "ce96681a13cc7005954a14b3f6ee93ac54aa2ded",
"shasum": ""
},
"require": {
@@ -1581,16 +1471,16 @@
},
{
"name": "illuminate/queue",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/queue.git",
- "reference": "a53899731c1bc8d68dda2b70ada25d0cbe875729"
+ "reference": "c3ba6e600bec0aa3daf1aeb9a890e095cc546cf4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/queue/zipball/a53899731c1bc8d68dda2b70ada25d0cbe875729",
- "reference": "a53899731c1bc8d68dda2b70ada25d0cbe875729",
+ "url": "https://api.github.com/repos/illuminate/queue/zipball/c3ba6e600bec0aa3daf1aeb9a890e095cc546cf4",
+ "reference": "c3ba6e600bec0aa3daf1aeb9a890e095cc546cf4",
"shasum": ""
},
"require": {
@@ -1601,6 +1491,7 @@
"illuminate/support": "5.1.*",
"nesbot/carbon": "~1.19",
"php": ">=5.5.9",
+ "symfony/debug": "2.7.*",
"symfony/process": "2.7.*"
},
"suggest": {
@@ -1635,7 +1526,7 @@
],
"description": "The Illuminate Queue package.",
"homepage": "http://laravel.com",
- "time": "2015-12-28T15:52:33+00:00"
+ "time": "2016-06-16T14:21:02+00:00"
},
{
"name": "illuminate/routing",
@@ -1694,16 +1585,16 @@
},
{
"name": "illuminate/session",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/session.git",
- "reference": "3f0456a00023c29aebaa2938f65ebe744db1aeeb"
+ "reference": "7b953bad4caf213497bfe6fae0250ad14cd74b82"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/session/zipball/3f0456a00023c29aebaa2938f65ebe744db1aeeb",
- "reference": "3f0456a00023c29aebaa2938f65ebe744db1aeeb",
+ "url": "https://api.github.com/repos/illuminate/session/zipball/7b953bad4caf213497bfe6fae0250ad14cd74b82",
+ "reference": "7b953bad4caf213497bfe6fae0250ad14cd74b82",
"shasum": ""
},
"require": {
@@ -1740,20 +1631,20 @@
],
"description": "The Illuminate Session package.",
"homepage": "http://laravel.com",
- "time": "2015-12-26T15:27:27+00:00"
+ "time": "2016-06-17T19:21:05+00:00"
},
{
"name": "illuminate/support",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/support.git",
- "reference": "8d62c6e1064d3013609ccc9ab6221efd86c31403"
+ "reference": "510163046dc50a467621448d6905f0c819ee8b4a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/support/zipball/8d62c6e1064d3013609ccc9ab6221efd86c31403",
- "reference": "8d62c6e1064d3013609ccc9ab6221efd86c31403",
+ "url": "https://api.github.com/repos/illuminate/support/zipball/510163046dc50a467621448d6905f0c819ee8b4a",
+ "reference": "510163046dc50a467621448d6905f0c819ee8b4a",
"shasum": ""
},
"require": {
@@ -1761,11 +1652,11 @@
"doctrine/inflector": "~1.0",
"ext-mbstring": "*",
"illuminate/contracts": "5.1.*",
+ "paragonie/random_compat": "~1.4",
"php": ">=5.5.9"
},
"suggest": {
"jeremeamia/superclosure": "Required to be able to serialize closures (~2.0).",
- "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (~1.1).",
"symfony/var-dumper": "Improves the dd function (2.7.*)."
},
"type": "library",
@@ -1794,20 +1685,20 @@
],
"description": "The Illuminate Support package.",
"homepage": "http://laravel.com",
- "time": "2015-12-28T21:10:29+00:00"
+ "time": "2016-06-11T16:44:59+00:00"
},
{
"name": "illuminate/translation",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/translation.git",
- "reference": "a9f73e7bd5ad6231e477c1149cf7802f53bc86bd"
+ "reference": "11fa64ecc8c533f8a6845c05d1ad2efc34726e11"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/translation/zipball/a9f73e7bd5ad6231e477c1149cf7802f53bc86bd",
- "reference": "a9f73e7bd5ad6231e477c1149cf7802f53bc86bd",
+ "url": "https://api.github.com/repos/illuminate/translation/zipball/11fa64ecc8c533f8a6845c05d1ad2efc34726e11",
+ "reference": "11fa64ecc8c533f8a6845c05d1ad2efc34726e11",
"shasum": ""
},
"require": {
@@ -1843,16 +1734,16 @@
},
{
"name": "illuminate/validation",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/validation.git",
- "reference": "ca27ece6bbb01b7bee9b2f1b51a50aff2f77edd1"
+ "reference": "aff98791ccfc8a129a19b83fdc257510bdaf1c3f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/validation/zipball/ca27ece6bbb01b7bee9b2f1b51a50aff2f77edd1",
- "reference": "ca27ece6bbb01b7bee9b2f1b51a50aff2f77edd1",
+ "url": "https://api.github.com/repos/illuminate/validation/zipball/aff98791ccfc8a129a19b83fdc257510bdaf1c3f",
+ "reference": "aff98791ccfc8a129a19b83fdc257510bdaf1c3f",
"shasum": ""
},
"require": {
@@ -1889,20 +1780,20 @@
],
"description": "The Illuminate Validation package.",
"homepage": "http://laravel.com",
- "time": "2015-12-09T15:24:53+00:00"
+ "time": "2016-05-28T21:16:16+00:00"
},
{
"name": "illuminate/view",
- "version": "v5.1.28",
+ "version": "v5.1.41",
"source": {
"type": "git",
"url": "https://github.com/illuminate/view.git",
- "reference": "f43a4600a2acfaf4d8734ebc1fa869ede1990b25"
+ "reference": "8dc810083f5c0dc889757d62be65a7307d92a30b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/illuminate/view/zipball/f43a4600a2acfaf4d8734ebc1fa869ede1990b25",
- "reference": "f43a4600a2acfaf4d8734ebc1fa869ede1990b25",
+ "url": "https://api.github.com/repos/illuminate/view/zipball/8dc810083f5c0dc889757d62be65a7307d92a30b",
+ "reference": "8dc810083f5c0dc889757d62be65a7307d92a30b",
"shasum": ""
},
"require": {
@@ -1911,7 +1802,8 @@
"illuminate/events": "5.1.*",
"illuminate/filesystem": "5.1.*",
"illuminate/support": "5.1.*",
- "php": ">=5.5.9"
+ "php": ">=5.5.9",
+ "symfony/debug": "2.7.*"
},
"type": "library",
"extra": {
@@ -1936,20 +1828,138 @@
],
"description": "The Illuminate View package.",
"homepage": "http://laravel.com",
- "time": "2015-11-29T16:58:05+00:00"
+ "time": "2016-07-18T11:06:23+00:00"
+ },
+ {
+ "name": "jeremeamia/superclosure",
+ "version": "2.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/jeremeamia/super_closure.git",
+ "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
+ "reference": "5707d5821b30b9a07acfb4d76949784aaa0e9ce9",
+ "shasum": ""
+ },
+ "require": {
+ "nikic/php-parser": "^1.2|^2.0|^3.0|^4.0",
+ "php": ">=5.4",
+ "symfony/polyfill-php56": "^1.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.0|^5.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.4-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "SuperClosure\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jeremy Lindblom",
+ "email": "jeremeamia@gmail.com",
+ "homepage": "https://github.com/jeremeamia",
+ "role": "Developer"
+ }
+ ],
+ "description": "Serialize Closure objects, including their context and binding",
+ "homepage": "https://github.com/jeremeamia/super_closure",
+ "keywords": [
+ "closure",
+ "function",
+ "lambda",
+ "parser",
+ "serializable",
+ "serialize",
+ "tokenizer"
+ ],
+ "abandoned": "opis/closure",
+ "time": "2018-03-21T22:21:57+00:00"
+ },
+ {
+ "name": "kylekatarnls/update-helper",
+ "version": "1.2.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/kylekatarnls/update-helper.git",
+ "reference": "429be50660ed8a196e0798e5939760f168ec8ce9"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9",
+ "reference": "429be50660ed8a196e0798e5939760f168ec8ce9",
+ "shasum": ""
+ },
+ "require": {
+ "composer-plugin-api": "^1.1.0 || ^2.0.0",
+ "php": ">=5.3.0"
+ },
+ "require-dev": {
+ "codeclimate/php-test-reporter": "dev-master",
+ "composer/composer": "2.0.x-dev || ^2.0.0-dev",
+ "phpunit/phpunit": ">=4.8.35 <6.0"
+ },
+ "type": "composer-plugin",
+ "extra": {
+ "class": "UpdateHelper\\ComposerPlugin"
+ },
+ "autoload": {
+ "psr-0": {
+ "UpdateHelper\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Kyle",
+ "email": "kylekatarnls@gmail.com"
+ }
+ ],
+ "description": "Update helper",
+ "funding": [
+ {
+ "url": "https://github.com/kylekatarnls",
+ "type": "github"
+ },
+ {
+ "url": "https://opencollective.com/Carbon",
+ "type": "open_collective"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-04-07T20:44:10+00:00"
},
{
"name": "laravel/lumen-framework",
- "version": "v5.1.6",
+ "version": "v5.1.7",
"source": {
"type": "git",
"url": "https://github.com/laravel/lumen-framework.git",
- "reference": "caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd"
+ "reference": "105029d56ea0de66a9528100de7acd5cfacf0116"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd",
- "reference": "caf37c0b556f3bb52dad3ef0efff7b297c9ad6cd",
+ "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/105029d56ea0de66a9528100de7acd5cfacf0116",
+ "reference": "105029d56ea0de66a9528100de7acd5cfacf0116",
"shasum": ""
},
"require": {
@@ -1978,12 +1988,11 @@
"monolog/monolog": "~1.0",
"mtdowling/cron-expression": "~1.0",
"nikic/fast-route": "0.4.*",
- "paragonie/random_compat": "^1.0.6",
+ "paragonie/random_compat": "~1.1",
"php": ">=5.5.9",
"symfony/dom-crawler": "2.7.*",
"symfony/http-foundation": "2.7.*",
"symfony/http-kernel": "2.7.*",
- "symfony/security-core": "2.7.*",
"symfony/var-dumper": "2.7.*"
},
"require-dev": {
@@ -2022,20 +2031,20 @@
"laravel",
"lumen"
],
- "time": "2015-10-28T22:19:15+00:00"
+ "time": "2016-06-06T16:14:00+00:00"
},
{
"name": "laravelcollective/html",
- "version": "v5.1.9",
+ "version": "v5.1.11",
"source": {
"type": "git",
"url": "https://github.com/LaravelCollective/html.git",
- "reference": "f62269629b2a1093039733517bd7e75b3f98dffb"
+ "reference": "99342cc22507cf8d7178bb390c215968183993bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/LaravelCollective/html/zipball/f62269629b2a1093039733517bd7e75b3f98dffb",
- "reference": "f62269629b2a1093039733517bd7e75b3f98dffb",
+ "url": "https://api.github.com/repos/LaravelCollective/html/zipball/99342cc22507cf8d7178bb390c215968183993bb",
+ "reference": "99342cc22507cf8d7178bb390c215968183993bb",
"shasum": ""
},
"require": {
@@ -2072,31 +2081,32 @@
"email": "adam@laravelcollective.com"
}
],
- "time": "2015-11-28T08:27:09+00:00"
+ "time": "2017-09-07T18:12:11+00:00"
},
{
"name": "league/fractal",
- "version": "0.14.0",
+ "version": "0.19.2",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/fractal.git",
- "reference": "56ad8933fbb40328ca3321c84143b2c16186eebf"
+ "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/fractal/zipball/56ad8933fbb40328ca3321c84143b2c16186eebf",
- "reference": "56ad8933fbb40328ca3321c84143b2c16186eebf",
+ "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
+ "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
"shasum": ""
},
"require": {
"php": ">=5.4"
},
"require-dev": {
+ "doctrine/orm": "^2.5",
"illuminate/contracts": "~5.0",
"mockery/mockery": "~0.9",
"pagerfanta/pagerfanta": "~1.0.0",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5",
+ "phpunit/phpunit": "^4.8.35 || ^7.5",
+ "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
"zendframework/zend-paginator": "~2.3"
},
"suggest": {
@@ -2135,45 +2145,56 @@
"league",
"rest"
],
- "time": "2016-07-21T09:56:14+00:00"
+ "time": "2020-01-24T23:17:29+00:00"
},
{
"name": "maatwebsite/excel",
- "version": "2.1.6",
+ "version": "2.1.30",
"source": {
"type": "git",
"url": "https://github.com/Maatwebsite/Laravel-Excel.git",
- "reference": "700eba02f76f2971c81726a4f6a04121c1977e64"
+ "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/700eba02f76f2971c81726a4f6a04121c1977e64",
- "reference": "700eba02f76f2971c81726a4f6a04121c1977e64",
+ "url": "https://api.github.com/repos/Maatwebsite/Laravel-Excel/zipball/f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
+ "reference": "f5540c4ba3ac50cebd98b09ca42e61f926ef299f",
"shasum": ""
},
"require": {
- "illuminate/cache": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/config": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "illuminate/cache": "^5.0",
+ "illuminate/config": "^5.0",
+ "illuminate/filesystem": "^5.0",
+ "illuminate/support": "^5.0",
+ "jeremeamia/superclosure": "^2.3",
"nesbot/carbon": "~1.0",
"php": ">=5.5",
- "phpoffice/phpexcel": "1.8.*",
- "tijsverkoyen/css-to-inline-styles": "~1.5"
+ "phpoffice/phpexcel": "^1.8.1",
+ "tijsverkoyen/css-to-inline-styles": "~2.0"
},
"require-dev": {
- "mockery/mockery": "~0.9",
- "orchestra/testbench": "3.1.*",
+ "mockery/mockery": "~1.0",
+ "orchestra/testbench": "3.1.*|3.2.*|3.3.*|3.4.*|3.5.*|3.6.*",
"phpseclib/phpseclib": "~1.0",
"phpunit/phpunit": "~4.0"
},
"suggest": {
- "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/queue": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/routing": "5.0.*|5.1.*|5.2.*|5.3.*",
- "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*"
+ "illuminate/http": "^5.0",
+ "illuminate/queue": "^5.0",
+ "illuminate/routing": "^5.0",
+ "illuminate/view": "^5.0"
},
"type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Maatwebsite\\Excel\\ExcelServiceProvider"
+ ],
+ "aliases": {
+ "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
+ }
+ }
+ },
"autoload": {
"classmap": [
"src/Maatwebsite/Excel"
@@ -2184,7 +2205,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "LGPL"
+ "MIT"
],
"authors": [
{
@@ -2192,7 +2213,7 @@
"email": "patrick@maatwebsite.nl"
}
],
- "description": "An eloquent way of importing and exporting Excel and CSV in Laravel 4 with the power of PHPExcel",
+ "description": "Supercharged Excel exports in Laravel",
"keywords": [
"PHPExcel",
"batch",
@@ -2202,33 +2223,38 @@
"import",
"laravel"
],
- "time": "2016-09-15T21:03:21+00:00"
+ "time": "2018-09-04T19:00:09+00:00"
},
{
"name": "maxmind-db/reader",
- "version": "v1.1.2",
+ "version": "v1.8.0",
"source": {
"type": "git",
"url": "https://github.com/maxmind/MaxMind-DB-Reader-php.git",
- "reference": "571279051c3339414dc91b422fb61af540c3431d"
+ "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/571279051c3339414dc91b422fb61af540c3431d",
- "reference": "571279051c3339414dc91b422fb61af540c3431d",
+ "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/b566d429ac9aec10594b0935be8ff38302f8d5c8",
+ "reference": "b566d429ac9aec10594b0935be8ff38302f8d5c8",
"shasum": ""
},
"require": {
- "php": ">=5.3.1"
+ "php": ">=7.2"
+ },
+ "conflict": {
+ "ext-maxminddb": "<1.8.0,>=2.0.0"
},
"require-dev": {
- "phpunit/phpunit": "4.2.*",
- "satooshi/php-coveralls": "1.0.*",
- "squizlabs/php_codesniffer": "2.*"
+ "friendsofphp/php-cs-fixer": "2.*",
+ "php-coveralls/php-coveralls": "^2.1",
+ "phpunit/phpcov": ">=6.0.0",
+ "phpunit/phpunit": ">=8.0.0,<10.0.0",
+ "squizlabs/php_codesniffer": "3.*"
},
"suggest": {
- "ext-bcmath": "bcmath or gmp is requred for decoding larger integers with the pure PHP decoder",
- "ext-gmp": "bcmath or gmp is requred for decoding larger integers with the pure PHP decoder",
+ "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
+ "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
"ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
},
"type": "library",
@@ -2245,7 +2271,7 @@
{
"name": "Gregory J. Oschwald",
"email": "goschwald@maxmind.com",
- "homepage": "http://www.maxmind.com/"
+ "homepage": "https://www.maxmind.com/"
}
],
"description": "MaxMind DB Reader API",
@@ -2257,36 +2283,38 @@
"geolocation",
"maxmind"
],
- "time": "2016-11-21T21:33:24+00:00"
+ "time": "2020-10-01T17:30:21+00:00"
},
{
"name": "maxmind/web-service-common",
- "version": "v0.3.1",
+ "version": "v0.8.0",
"source": {
"type": "git",
"url": "https://github.com/maxmind/web-service-common-php.git",
- "reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4"
+ "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4",
- "reference": "1fe780bcd6a9038b7e36b13fa0aeeeeca4cdb0a4",
+ "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/ba67d9532cfaf499bd71774b8170d05df4f75fb7",
+ "reference": "ba67d9532cfaf499bd71774b8170d05df4f75fb7",
"shasum": ""
},
"require": {
"composer/ca-bundle": "^1.0.3",
"ext-curl": "*",
"ext-json": "*",
- "php": ">=5.3"
+ "php": ">=7.2"
},
"require-dev": {
- "phpunit/phpunit": "4.*",
- "squizlabs/php_codesniffer": "2.*"
+ "friendsofphp/php-cs-fixer": "2.*",
+ "phpunit/phpunit": "^8.0 || ^9.0",
+ "squizlabs/php_codesniffer": "3.*"
},
"type": "library",
"autoload": {
"psr-4": {
- "MaxMind\\": "src"
+ "MaxMind\\Exception\\": "src/Exception",
+ "MaxMind\\WebService\\": "src/WebService"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2300,21 +2328,21 @@
}
],
"description": "Internal MaxMind Web Service API",
- "homepage": "https://github.com/maxmind/mm-web-service-api-php",
- "time": "2016-08-18T16:36:52+00:00"
+ "homepage": "https://github.com/maxmind/web-service-common-php",
+ "time": "2020-10-01T15:28:36+00:00"
},
{
"name": "monolog/monolog",
- "version": "1.17.2",
+ "version": "1.25.5",
"source": {
"type": "git",
"url": "https://github.com/Seldaek/monolog.git",
- "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24"
+ "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
- "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24",
+ "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1817faadd1846cd08be9a49e905dc68823bc38c0",
+ "reference": "1817faadd1846cd08be9a49e905dc68823bc38c0",
"shasum": ""
},
"require": {
@@ -2325,17 +2353,16 @@
"psr/log-implementation": "1.0.0"
},
"require-dev": {
- "aws/aws-sdk-php": "^2.4.9",
+ "aws/aws-sdk-php": "^2.4.9 || ^3.0",
"doctrine/couchdb": "~1.0@dev",
"graylog2/gelf-php": "~1.0",
- "jakub-onderka/php-parallel-lint": "0.9",
+ "php-amqplib/php-amqplib": "~2.4",
"php-console/php-console": "^3.1.3",
+ "php-parallel-lint/php-parallel-lint": "^1.0",
"phpunit/phpunit": "~4.5",
- "phpunit/phpunit-mock-objects": "2.3.0",
- "raven/raven": "^0.13",
"ruflin/elastica": ">=0.90 <3.0",
- "swiftmailer/swiftmailer": "~5.3",
- "videlalvaro/php-amqplib": "~2.4"
+ "sentry/sentry": "^0.13",
+ "swiftmailer/swiftmailer": "^5.3|^6.0"
},
"suggest": {
"aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
@@ -2343,16 +2370,17 @@
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
"ext-mongo": "Allow sending log messages to a MongoDB server",
"graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
+ "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
+ "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
"php-console/php-console": "Allow sending log messages to Google Chrome",
- "raven/raven": "Allow sending log messages to a Sentry server",
"rollbar/rollbar": "Allow sending log messages to Rollbar",
"ruflin/elastica": "Allow sending log messages to an Elastic Search server",
- "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib"
+ "sentry/sentry": "Allow sending log messages to a Sentry server"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.16.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -2378,20 +2406,30 @@
"logging",
"psr-3"
],
- "time": "2015-10-14T12:51:02+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/Seldaek",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-23T08:35:51+00:00"
},
{
"name": "mtdowling/cron-expression",
- "version": "v1.1.0",
+ "version": "v1.2.3",
"source": {
"type": "git",
"url": "https://github.com/mtdowling/cron-expression.git",
- "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5"
+ "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/c9ee7886f5a12902b225a1a12f36bb45f9ab89e5",
- "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5",
+ "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6",
+ "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6",
"shasum": ""
},
"require": {
@@ -2402,8 +2440,8 @@
},
"type": "library",
"autoload": {
- "psr-0": {
- "Cron": "src/"
+ "psr-4": {
+ "Cron\\": "src/Cron/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2422,39 +2460,48 @@
"cron",
"schedule"
],
- "time": "2016-01-26T21:23:30+00:00"
+ "abandoned": "dragonmantank/cron-expression",
+ "time": "2019-12-28T04:23:06+00:00"
},
{
"name": "nesbot/carbon",
- "version": "1.22.1",
+ "version": "1.39.1",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
+ "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
- "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33",
+ "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33",
"shasum": ""
},
"require": {
- "php": ">=5.3.0",
- "symfony/translation": "~2.6 || ~3.0"
+ "kylekatarnls/update-helper": "^1.1",
+ "php": ">=5.3.9",
+ "symfony/translation": "~2.6 || ~3.0 || ~4.0"
},
"require-dev": {
+ "composer/composer": "^1.2",
"friendsofphp/php-cs-fixer": "~2",
- "phpunit/phpunit": "~4.0 || ~5.0"
+ "phpunit/phpunit": "^4.8.35 || ^5.7"
},
+ "bin": [
+ "bin/upgrade-carbon"
+ ],
"type": "library",
"extra": {
- "branch-alias": {
- "dev-master": "1.23-dev"
+ "update-helper": "Carbon\\Upgrade",
+ "laravel": {
+ "providers": [
+ "Carbon\\Laravel\\ServiceProvider"
+ ]
}
},
"autoload": {
"psr-4": {
- "Carbon\\": "src/Carbon/"
+ "": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2475,7 +2522,7 @@
"datetime",
"time"
],
- "time": "2017-01-16T07:55:07+00:00"
+ "time": "2019-10-14T05:51:36+00:00"
},
{
"name": "nikic/fast-route",
@@ -2521,105 +2568,127 @@
"time": "2015-02-26T15:33:07+00:00"
},
{
- "name": "paragonie/random_compat",
- "version": "v1.4.1",
+ "name": "nikic/php-parser",
+ "version": "v4.10.2",
"source": {
"type": "git",
- "url": "https://github.com/paragonie/random_compat.git",
- "reference": "c7e26a21ba357863de030f0b9e701c7d04593774"
+ "url": "https://github.com/nikic/PHP-Parser.git",
+ "reference": "658f1be311a230e0907f5dfe0213742aff0596de"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/c7e26a21ba357863de030f0b9e701c7d04593774",
- "reference": "c7e26a21ba357863de030f0b9e701c7d04593774",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/658f1be311a230e0907f5dfe0213742aff0596de",
+ "reference": "658f1be311a230e0907f5dfe0213742aff0596de",
"shasum": ""
},
"require": {
- "php": ">=5.2.0"
+ "ext-tokenizer": "*",
+ "php": ">=7.0"
},
"require-dev": {
- "phpunit/phpunit": "4.*|5.*"
- },
- "suggest": {
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ "ircmaxell/php-yacc": "^0.0.7",
+ "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
},
+ "bin": [
+ "bin/php-parse"
+ ],
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.9-dev"
+ }
+ },
"autoload": {
- "files": [
- "lib/random.php"
- ]
+ "psr-4": {
+ "PhpParser\\": "lib/PhpParser"
+ }
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "MIT"
+ "BSD-3-Clause"
],
"authors": [
{
- "name": "Paragon Initiative Enterprises",
- "email": "security@paragonie.com",
- "homepage": "https://paragonie.com"
+ "name": "Nikita Popov"
}
],
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "description": "A PHP parser written in PHP",
"keywords": [
- "csprng",
- "pseudorandom",
- "random"
+ "parser",
+ "php"
],
- "time": "2016-03-18T20:34:03+00:00"
+ "time": "2020-09-26T10:30:38+00:00"
},
{
- "name": "phenx/php-font-lib",
- "version": "0.2.2",
+ "name": "paragonie/random_compat",
+ "version": "v1.4.3",
"source": {
"type": "git",
- "url": "https://github.com/PhenX/php-font-lib.git",
- "reference": "c30c7fc00a6b0d863e9bb4c5d5dd015298b2dc82"
+ "url": "https://github.com/paragonie/random_compat.git",
+ "reference": "9b3899e3c3ddde89016f576edb8c489708ad64cd"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PhenX/php-font-lib/zipball/c30c7fc00a6b0d863e9bb4c5d5dd015298b2dc82",
- "reference": "c30c7fc00a6b0d863e9bb4c5d5dd015298b2dc82",
+ "url": "https://api.github.com/repos/paragonie/random_compat/zipball/9b3899e3c3ddde89016f576edb8c489708ad64cd",
+ "reference": "9b3899e3c3ddde89016f576edb8c489708ad64cd",
"shasum": ""
},
+ "require": {
+ "php": ">=5.2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "4.*|5.*"
+ },
+ "suggest": {
+ "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
+ },
"type": "library",
"autoload": {
- "classmap": [
- "classes/"
+ "files": [
+ "lib/random.php"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "LGPL"
+ "MIT"
],
"authors": [
{
- "name": "Fabien Ménager",
- "email": "fabien.menager@gmail.com"
+ "name": "Paragon Initiative Enterprises",
+ "email": "security@paragonie.com",
+ "homepage": "https://paragonie.com"
}
],
- "description": "A library to read, parse, export and make subsets of different types of font files.",
- "homepage": "https://github.com/PhenX/php-font-lib",
- "time": "2014-02-01T15:22:28+00:00"
+ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
+ "keywords": [
+ "csprng",
+ "pseudorandom",
+ "random"
+ ],
+ "time": "2018-04-04T21:48:54+00:00"
},
{
"name": "phpoffice/phpexcel",
- "version": "1.8.1",
+ "version": "1.8.2",
"source": {
"type": "git",
"url": "https://github.com/PHPOffice/PHPExcel.git",
- "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32"
+ "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
- "reference": "372c7cbb695a6f6f1e62649381aeaa37e7e70b32",
+ "url": "https://api.github.com/repos/PHPOffice/PHPExcel/zipball/1441011fb7ecdd8cc689878f54f8b58a6805f870",
+ "reference": "1441011fb7ecdd8cc689878f54f8b58a6805f870",
"shasum": ""
},
"require": {
+ "ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
- "php": ">=5.2.0"
+ "php": "^5.2|^7.0"
+ },
+ "require-dev": {
+ "squizlabs/php_codesniffer": "2.*"
},
"type": "library",
"autoload": {
@@ -2629,7 +2698,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "LGPL"
+ "LGPL-2.1"
],
"authors": [
{
@@ -2637,18 +2706,19 @@
"homepage": "http://blog.maartenballiauw.be"
},
{
- "name": "Mark Baker"
+ "name": "Erik Tilt"
},
{
"name": "Franck Lefevre",
- "homepage": "http://blog.rootslabs.net"
+ "homepage": "http://rootslabs.net"
},
{
- "name": "Erik Tilt"
+ "name": "Mark Baker",
+ "homepage": "http://markbakeruk.net"
}
],
"description": "PHPExcel - OpenXML - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
- "homepage": "http://phpexcel.codeplex.com",
+ "homepage": "https://github.com/PHPOffice/PHPExcel",
"keywords": [
"OpenXML",
"excel",
@@ -2657,26 +2727,35 @@
"xls",
"xlsx"
],
- "time": "2015-05-01T07:00:55+00:00"
+ "abandoned": "phpoffice/phpspreadsheet",
+ "time": "2018-11-22T23:07:24+00:00"
},
{
"name": "psr/log",
- "version": "1.0.0",
+ "version": "1.1.3",
"source": {
"type": "git",
"url": "https://github.com/php-fig/log.git",
- "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b"
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b",
- "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b",
+ "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc",
+ "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc",
"shasum": ""
},
+ "require": {
+ "php": ">=5.3.0"
+ },
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.1.x-dev"
+ }
+ },
"autoload": {
- "psr-0": {
- "Psr\\Log\\": ""
+ "psr-4": {
+ "Psr\\Log\\": "Psr/Log/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2690,32 +2769,34 @@
}
],
"description": "Common interface for logging libraries",
+ "homepage": "https://github.com/php-fig/log",
"keywords": [
"log",
"psr",
"psr-3"
],
- "time": "2012-12-21T11:40:51+00:00"
+ "time": "2020-03-23T09:12:05+00:00"
},
{
"name": "swiftmailer/swiftmailer",
- "version": "v5.4.1",
+ "version": "v5.4.12",
"source": {
"type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421"
+ "reference": "181b89f18a90f8925ef805f950d47a7190e9b950"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421",
- "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/181b89f18a90f8925ef805f950d47a7190e9b950",
+ "reference": "181b89f18a90f8925ef805f950d47a7190e9b950",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
- "mockery/mockery": "~0.9.1,<0.9.4"
+ "mockery/mockery": "~0.9.1",
+ "symfony/phpunit-bridge": "~3.2"
},
"type": "library",
"extra": {
@@ -2742,30 +2823,31 @@
}
],
"description": "Swiftmailer, free feature-rich PHP mailer",
- "homepage": "http://swiftmailer.org",
+ "homepage": "https://swiftmailer.symfony.com",
"keywords": [
"email",
"mail",
"mailer"
],
- "time": "2015-06-06T14:19:39+00:00"
+ "time": "2018-07-31T09:26:32+00:00"
},
{
"name": "symfony/console",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "d3fc138b6ed8f8074591821d3416d8f9c04d6ca6"
+ "reference": "574cb4cfaa01ba115fc2fc0c2355b2c5472a4804"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/d3fc138b6ed8f8074591821d3416d8f9c04d6ca6",
- "reference": "d3fc138b6ed8f8074591821d3416d8f9c04d6ca6",
+ "url": "https://api.github.com/repos/symfony/console/zipball/574cb4cfaa01ba115fc2fc0c2355b2c5472a4804",
+ "reference": "574cb4cfaa01ba115fc2fc0c2355b2c5472a4804",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": ">=5.3.9",
+ "symfony/debug": "^2.7.2"
},
"require-dev": {
"psr/log": "~1.0",
@@ -2773,7 +2855,7 @@
"symfony/process": "~2.1"
},
"suggest": {
- "psr/log": "For using the console logger",
+ "psr/log-implementation": "For using the console logger",
"symfony/event-dispatcher": "",
"symfony/process": ""
},
@@ -2807,29 +2889,29 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
- "time": "2016-01-14T08:26:43+00:00"
+ "time": "2018-05-13T15:44:36+00:00"
},
{
"name": "symfony/css-selector",
- "version": "v3.0.2",
+ "version": "v3.4.45",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "6605602690578496091ac20ec7a5cbd160d4dff4"
+ "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/6605602690578496091ac20ec7a5cbd160d4dff4",
- "reference": "6605602690578496091ac20ec7a5cbd160d4dff4",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/9ccf6e78077a3fc1596e6c7b5958008965a11518",
+ "reference": "9ccf6e78077a3fc1596e6c7b5958008965a11518",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^5.5.9|>=7.0.8"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.4-dev"
}
},
"autoload": {
@@ -2846,34 +2928,48 @@
],
"authors": [
{
- "name": "Jean-François Simon",
- "email": "jeanfrancois.simon@sensiolabs.com"
- },
- {
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
+ "name": "Jean-François Simon",
+ "email": "jeanfrancois.simon@sensiolabs.com"
+ },
+ {
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com",
- "time": "2016-01-27T05:14:46+00:00"
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-03-16T08:31:04+00:00"
},
{
"name": "symfony/debug",
- "version": "v2.8.2",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
- "reference": "386364a0e71158615ab9ae76b74bf84efc0bac7e"
+ "reference": "4a7330f29b3d215f8bacf076689f9d1c3d568681"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/386364a0e71158615ab9ae76b74bf84efc0bac7e",
- "reference": "386364a0e71158615ab9ae76b74bf84efc0bac7e",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/4a7330f29b3d215f8bacf076689f9d1c3d568681",
+ "reference": "4a7330f29b3d215f8bacf076689f9d1c3d568681",
"shasum": ""
},
"require": {
@@ -2884,13 +2980,13 @@
"symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2"
},
"require-dev": {
- "symfony/class-loader": "~2.2|~3.0.0",
- "symfony/http-kernel": "~2.3.24|~2.5.9|~2.6,>=2.6.2|~3.0.0"
+ "symfony/class-loader": "~2.2",
+ "symfony/http-kernel": "~2.3.24|~2.5.9|^2.6.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.8-dev"
+ "dev-master": "2.7-dev"
}
},
"autoload": {
@@ -2917,24 +3013,25 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
- "time": "2016-01-13T10:28:07+00:00"
+ "time": "2018-08-03T11:24:48+00:00"
},
{
"name": "symfony/dom-crawler",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "55cc79a177193eb3bd74ac54b353691fbb211d3a"
+ "reference": "d905e1c5885735ee66af60c205429b9941f24752"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/55cc79a177193eb3bd74ac54b353691fbb211d3a",
- "reference": "55cc79a177193eb3bd74ac54b353691fbb211d3a",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/d905e1c5885735ee66af60c205429b9941f24752",
+ "reference": "d905e1c5885735ee66af60c205429b9941f24752",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": ">=5.3.9",
+ "symfony/polyfill-ctype": "~1.8"
},
"require-dev": {
"symfony/css-selector": "~2.3"
@@ -2972,20 +3069,20 @@
],
"description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com",
- "time": "2016-01-03T15:32:00+00:00"
+ "time": "2018-05-01T22:30:49+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v2.8.2",
+ "version": "v2.8.52",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "ee278f7c851533e58ca307f66305ccb9188aceda"
+ "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ee278f7c851533e58ca307f66305ccb9188aceda",
- "reference": "ee278f7c851533e58ca307f66305ccb9188aceda",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/a77e974a5fecb4398833b0709210e3d5e334ffb0",
+ "reference": "a77e974a5fecb4398833b0709210e3d5e334ffb0",
"shasum": ""
},
"require": {
@@ -2993,7 +3090,7 @@
},
"require-dev": {
"psr/log": "~1.0",
- "symfony/config": "~2.0,>=2.0.5|~3.0.0",
+ "symfony/config": "^2.0.5|~3.0.0",
"symfony/dependency-injection": "~2.6|~3.0.0",
"symfony/expression-language": "~2.6|~3.0.0",
"symfony/stopwatch": "~2.3|~3.0.0"
@@ -3032,20 +3129,20 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
- "time": "2016-01-13T10:28:07+00:00"
+ "time": "2018-11-21T14:20:20+00:00"
},
{
"name": "symfony/finder",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "d20ac81c81a67ab898b0c0afa435f3e9a7d460cf"
+ "reference": "34226a3aa279f1e356ad56181b91acfdc9a2525c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/d20ac81c81a67ab898b0c0afa435f3e9a7d460cf",
- "reference": "d20ac81c81a67ab898b0c0afa435f3e9a7d460cf",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/34226a3aa279f1e356ad56181b91acfdc9a2525c",
+ "reference": "34226a3aa279f1e356ad56181b91acfdc9a2525c",
"shasum": ""
},
"require": {
@@ -3081,24 +3178,25 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
- "time": "2016-01-14T08:26:43+00:00"
+ "time": "2018-05-14T06:36:14+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "2f9d240056f026af5f7ba7f7052b0c6709bf288c"
+ "reference": "b67e5cbd2bf837fb3681f2c4965826d6c6758532"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/2f9d240056f026af5f7ba7f7052b0c6709bf288c",
- "reference": "2f9d240056f026af5f7ba7f7052b0c6709bf288c",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b67e5cbd2bf837fb3681f2c4965826d6c6758532",
+ "reference": "b67e5cbd2bf837fb3681f2c4965826d6c6758532",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": ">=5.3.9",
+ "symfony/polyfill-mbstring": "~1.1"
},
"require-dev": {
"symfony/expression-language": "~2.4"
@@ -3136,47 +3234,49 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "time": "2016-01-13T10:26:43+00:00"
+ "time": "2019-04-16T09:58:21+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v2.7.9",
+ "version": "v2.7.52",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "aa2f1e544d6cb862452504b5479a5095b7bfc53f"
+ "reference": "435064b3b143f79469206915137c21e88b56bfb9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/aa2f1e544d6cb862452504b5479a5095b7bfc53f",
- "reference": "aa2f1e544d6cb862452504b5479a5095b7bfc53f",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/435064b3b143f79469206915137c21e88b56bfb9",
+ "reference": "435064b3b143f79469206915137c21e88b56bfb9",
"shasum": ""
},
"require": {
"php": ">=5.3.9",
"psr/log": "~1.0",
- "symfony/debug": "~2.6,>=2.6.2",
- "symfony/event-dispatcher": "~2.6,>=2.6.7",
- "symfony/http-foundation": "~2.5,>=2.5.4"
+ "symfony/debug": "^2.6.2",
+ "symfony/event-dispatcher": "^2.6.7",
+ "symfony/http-foundation": "~2.7.36|^2.8.29",
+ "symfony/polyfill-ctype": "~1.8"
},
"conflict": {
- "symfony/config": "<2.7"
+ "symfony/config": "<2.7",
+ "twig/twig": "<1.34|<2.4,>=2"
},
"require-dev": {
"symfony/browser-kit": "~2.3",
"symfony/class-loader": "~2.1",
"symfony/config": "~2.7",
"symfony/console": "~2.3",
- "symfony/css-selector": "~2.0,>=2.0.5",
+ "symfony/css-selector": "^2.0.5",
"symfony/dependency-injection": "~2.2",
- "symfony/dom-crawler": "~2.0,>=2.0.5",
+ "symfony/dom-crawler": "^2.0.5",
"symfony/expression-language": "~2.4",
- "symfony/finder": "~2.0,>=2.0.5",
- "symfony/process": "~2.0,>=2.0.5",
+ "symfony/finder": "^2.0.5",
+ "symfony/process": "^2.0.5",
"symfony/routing": "~2.2",
"symfony/stopwatch": "~2.3",
"symfony/templating": "~2.2",
- "symfony/translation": "~2.0,>=2.0.5",
+ "symfony/translation": "^2.0.5",
"symfony/var-dumper": "~2.6"
},
"suggest": {
@@ -3218,37 +3318,44 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
- "time": "2016-01-14T10:41:45+00:00"
+ "time": "2019-04-17T16:37:53+00:00"
},
{
- "name": "symfony/process",
- "version": "v2.7.9",
+ "name": "symfony/polyfill-ctype",
+ "version": "v1.18.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/process.git",
- "reference": "0570b9ca51135ee7da0f19239eaf7b07ffb87034"
+ "url": "https://github.com/symfony/polyfill-ctype.git",
+ "reference": "1c302646f6efc070cd46856e600e5e0684d6b454"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/0570b9ca51135ee7da0f19239eaf7b07ffb87034",
- "reference": "0570b9ca51135ee7da0f19239eaf7b07ffb87034",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454",
+ "reference": "1c302646f6efc070cd46856e600e5e0684d6b454",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": ">=5.3.3"
+ },
+ "suggest": {
+ "ext-ctype": "For best performance"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.7-dev"
+ "dev-master": "1.18-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
}
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Process\\": ""
+ "Symfony\\Polyfill\\Ctype\\": ""
},
- "exclude-from-classmap": [
- "/Tests/"
+ "files": [
+ "bootstrap.php"
]
},
"notification-url": "https://packagist.org/downloads/",
@@ -3257,53 +3364,275 @@
],
"authors": [
{
- "name": "Fabien Potencier",
- "email": "fabien@symfony.com"
+ "name": "Gert de Pagter",
+ "email": "BackEndTea@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Process Component",
+ "description": "Symfony polyfill for ctype functions",
"homepage": "https://symfony.com",
- "time": "2016-01-06T09:57:37+00:00"
+ "keywords": [
+ "compatibility",
+ "ctype",
+ "polyfill",
+ "portable"
+ ],
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-14T12:35:20+00:00"
},
{
- "name": "symfony/routing",
- "version": "v2.7.18",
+ "name": "symfony/polyfill-mbstring",
+ "version": "v1.18.1",
"source": {
"type": "git",
- "url": "https://github.com/symfony/routing.git",
- "reference": "c4509a70fdb18d63decd3c24c44734703ed5c7eb"
+ "url": "https://github.com/symfony/polyfill-mbstring.git",
+ "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/c4509a70fdb18d63decd3c24c44734703ed5c7eb",
- "reference": "c4509a70fdb18d63decd3c24c44734703ed5c7eb",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/a6977d63bf9a0ad4c65cd352709e230876f9904a",
+ "reference": "a6977d63bf9a0ad4c65cd352709e230876f9904a",
"shasum": ""
},
"require": {
- "php": ">=5.3.9"
+ "php": ">=5.3.3"
},
- "conflict": {
- "symfony/config": "<2.7"
+ "suggest": {
+ "ext-mbstring": "For best performance"
},
- "require-dev": {
- "doctrine/annotations": "~1.0",
- "doctrine/common": "~2.2",
- "psr/log": "~1.0",
- "symfony/config": "~2.7",
- "symfony/expression-language": "~2.4",
- "symfony/http-foundation": "~2.3",
- "symfony/yaml": "~2.0,>=2.0.5"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.18-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
},
- "suggest": {
- "doctrine/annotations": "For using the annotation loader",
- "symfony/config": "For using the all-in-one router or any loader",
- "symfony/expression-language": "For using expression matching",
- "symfony/http-foundation": "For using a Symfony Request object",
- "symfony/yaml": "For using the YAML loader"
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Mbstring\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill for the Mbstring extension",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "mbstring",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-14T12:35:20+00:00"
+ },
+ {
+ "name": "symfony/polyfill-php56",
+ "version": "v1.18.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-php56.git",
+ "reference": "13df84e91cd168f247c2f2ec82cc0fa24901c011"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/13df84e91cd168f247c2f2ec82cc0fa24901c011",
+ "reference": "13df84e91cd168f247c2f2ec82cc0fa24901c011",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3",
+ "symfony/polyfill-util": "~1.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.18-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Php56\\": ""
+ },
+ "files": [
+ "bootstrap.php"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compatibility",
+ "polyfill",
+ "portable",
+ "shim"
+ ],
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-14T12:35:20+00:00"
+ },
+ {
+ "name": "symfony/polyfill-util",
+ "version": "v1.18.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/polyfill-util.git",
+ "reference": "46b910c71e9828f8ec2aa7a0314de1130d9b295a"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/46b910c71e9828f8ec2aa7a0314de1130d9b295a",
+ "reference": "46b910c71e9828f8ec2aa7a0314de1130d9b295a",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.18-dev"
+ },
+ "thanks": {
+ "name": "symfony/polyfill",
+ "url": "https://github.com/symfony/polyfill"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Symfony\\Polyfill\\Util\\": ""
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Nicolas Grekas",
+ "email": "p@tchwork.com"
+ },
+ {
+ "name": "Symfony Community",
+ "homepage": "https://symfony.com/contributors"
+ }
+ ],
+ "description": "Symfony utilities for portability of PHP codes",
+ "homepage": "https://symfony.com",
+ "keywords": [
+ "compat",
+ "compatibility",
+ "polyfill",
+ "shim"
+ ],
+ "funding": [
+ {
+ "url": "https://symfony.com/sponsor",
+ "type": "custom"
+ },
+ {
+ "url": "https://github.com/fabpot",
+ "type": "github"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-07-14T12:35:20+00:00"
+ },
+ {
+ "name": "symfony/process",
+ "version": "v2.7.51",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/symfony/process.git",
+ "reference": "eda637e05670e2afeec3842dcd646dce94262f6b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/symfony/process/zipball/eda637e05670e2afeec3842dcd646dce94262f6b",
+ "reference": "eda637e05670e2afeec3842dcd646dce94262f6b",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.3.9"
},
"type": "library",
"extra": {
@@ -3313,7 +3642,7 @@
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Routing\\": ""
+ "Symfony\\Component\\Process\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3333,48 +3662,45 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Routing Component",
+ "description": "Symfony Process Component",
"homepage": "https://symfony.com",
- "keywords": [
- "router",
- "routing",
- "uri",
- "url"
- ],
- "time": "2016-08-16T10:55:04+00:00"
+ "time": "2018-08-03T11:24:48+00:00"
},
{
- "name": "symfony/security-core",
- "version": "v2.7.9",
+ "name": "symfony/routing",
+ "version": "v2.7.51",
"source": {
"type": "git",
- "url": "https://github.com/symfony/security-core.git",
- "reference": "2d9171c507de3987d3b7ec59d0c8eb90b2150e46"
+ "url": "https://github.com/symfony/routing.git",
+ "reference": "33bd5882f201f9a3b7dd9640b95710b71304c4fb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/security-core/zipball/2d9171c507de3987d3b7ec59d0c8eb90b2150e46",
- "reference": "2d9171c507de3987d3b7ec59d0c8eb90b2150e46",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/33bd5882f201f9a3b7dd9640b95710b71304c4fb",
+ "reference": "33bd5882f201f9a3b7dd9640b95710b71304c4fb",
"shasum": ""
},
"require": {
- "paragonie/random_compat": "~1.0",
"php": ">=5.3.9"
},
+ "conflict": {
+ "symfony/config": "<2.7"
+ },
"require-dev": {
- "ircmaxell/password-compat": "1.0.*",
+ "doctrine/annotations": "~1.0",
+ "doctrine/common": "~2.2",
"psr/log": "~1.0",
- "symfony/event-dispatcher": "~2.1",
- "symfony/expression-language": "~2.6",
- "symfony/http-foundation": "~2.4",
- "symfony/validator": "~2.5,>=2.5.9"
+ "symfony/config": "~2.7",
+ "symfony/expression-language": "~2.4",
+ "symfony/http-foundation": "~2.3",
+ "symfony/yaml": "^2.0.5"
},
"suggest": {
- "ircmaxell/password-compat": "For using the BCrypt password encoder in PHP <5.5",
- "symfony/event-dispatcher": "",
- "symfony/expression-language": "For using the expression voter",
- "symfony/http-foundation": "",
- "symfony/validator": "For using the user password constraint"
+ "doctrine/annotations": "For using the annotation loader",
+ "symfony/config": "For using the all-in-one router or any loader",
+ "symfony/expression-language": "For using expression matching",
+ "symfony/http-foundation": "For using a Symfony Request object",
+ "symfony/yaml": "For using the YAML loader"
},
"type": "library",
"extra": {
@@ -3384,7 +3710,7 @@
},
"autoload": {
"psr-4": {
- "Symfony\\Component\\Security\\Core\\": ""
+ "Symfony\\Component\\Routing\\": ""
},
"exclude-from-classmap": [
"/Tests/"
@@ -3404,22 +3730,28 @@
"homepage": "https://symfony.com/contributors"
}
],
- "description": "Symfony Security Component - Core Library",
+ "description": "Symfony Routing Component",
"homepage": "https://symfony.com",
- "time": "2016-01-14T09:08:21+00:00"
+ "keywords": [
+ "router",
+ "routing",
+ "uri",
+ "url"
+ ],
+ "time": "2018-02-28T09:36:59+00:00"
},
{
"name": "symfony/translation",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "8cbab8445ad4269427077ba02fff8718cb397e22"
+ "reference": "1959c78c5a32539ef221b3e18a961a96d949118f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/8cbab8445ad4269427077ba02fff8718cb397e22",
- "reference": "8cbab8445ad4269427077ba02fff8718cb397e22",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/1959c78c5a32539ef221b3e18a961a96d949118f",
+ "reference": "1959c78c5a32539ef221b3e18a961a96d949118f",
"shasum": ""
},
"require": {
@@ -3431,11 +3763,11 @@
"require-dev": {
"psr/log": "~1.0",
"symfony/config": "~2.7",
- "symfony/intl": "~2.4",
+ "symfony/intl": "~2.7.25|^2.8.18",
"symfony/yaml": "~2.2"
},
"suggest": {
- "psr/log": "To use logging capability in translator",
+ "psr/log-implementation": "To use logging capability in translator",
"symfony/config": "",
"symfony/yaml": ""
},
@@ -3469,25 +3801,28 @@
],
"description": "Symfony Translation Component",
"homepage": "https://symfony.com",
- "time": "2016-01-03T15:32:00+00:00"
+ "time": "2018-05-17T10:34:06+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v2.7.9",
+ "version": "v2.7.51",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "ad39199e91f2f845a0181b14d459fda13a622138"
+ "reference": "6f9271e94369db05807b261fcfefe4cd1aafd390"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad39199e91f2f845a0181b14d459fda13a622138",
- "reference": "ad39199e91f2f845a0181b14d459fda13a622138",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6f9271e94369db05807b261fcfefe4cd1aafd390",
+ "reference": "6f9271e94369db05807b261fcfefe4cd1aafd390",
"shasum": ""
},
"require": {
"php": ">=5.3.9"
},
+ "conflict": {
+ "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
+ },
"suggest": {
"ext-symfony_debug": ""
},
@@ -3528,33 +3863,35 @@
"debug",
"dump"
],
- "time": "2016-01-07T11:12:32+00:00"
+ "time": "2018-04-22T05:56:10+00:00"
},
{
"name": "tijsverkoyen/css-to-inline-styles",
- "version": "1.5.5",
+ "version": "2.2.3",
"source": {
"type": "git",
"url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
- "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3"
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/9753fc340726e327e4d48b7c0604f85475ae0bc3",
- "reference": "9753fc340726e327e4d48b7c0604f85475ae0bc3",
+ "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
+ "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
"shasum": ""
},
"require": {
- "php": ">=5.3.0",
- "symfony/css-selector": "~2.1|~3.0"
+ "ext-dom": "*",
+ "ext-libxml": "*",
+ "php": "^5.5 || ^7.0 || ^8.0",
+ "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.5.x-dev"
+ "dev-master": "2.2.x-dev"
}
},
"autoload": {
@@ -3564,7 +3901,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD"
+ "BSD-3-Clause"
],
"authors": [
{
@@ -3575,26 +3912,26 @@
],
"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": "2015-12-08T16:14:14+00:00"
+ "time": "2020-07-13T06:12:54+00:00"
},
{
"name": "torann/geoip",
- "version": "1.0.2",
+ "version": "1.0.9",
"source": {
"type": "git",
"url": "https://github.com/Torann/laravel-geoip.git",
- "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea"
+ "reference": "dc3c4fc17779b3521736dd4e04d1fa2dd8f55db9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/ae77f4ad99926fa35c89378f00a6a7295a7246ea",
- "reference": "ae77f4ad99926fa35c89378f00a6a7295a7246ea",
+ "url": "https://api.github.com/repos/Torann/laravel-geoip/zipball/dc3c4fc17779b3521736dd4e04d1fa2dd8f55db9",
+ "reference": "dc3c4fc17779b3521736dd4e04d1fa2dd8f55db9",
"shasum": ""
},
"require": {
"illuminate/console": "~5.0",
"illuminate/support": "~5.0",
- "php": ">=5.5.9"
+ "php": "^7.0"
},
"require-dev": {
"geoip2/geoip2": "~2.1",
@@ -3609,6 +3946,14 @@
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
+ },
+ "laravel": {
+ "providers": [
+ "Torann\\GeoIP\\GeoIPServiceProvider"
+ ],
+ "aliases": {
+ "GeoIP": "Torann\\GeoIP\\Facades\\GeoIP"
+ }
}
},
"autoload": {
@@ -3621,7 +3966,7 @@
},
"notification-url": "https://packagist.org/downloads/",
"license": [
- "BSD 2-Clause"
+ "BSD-2-Clause"
],
"authors": [
{
@@ -3640,7 +3985,7 @@
"location",
"maxmind"
],
- "time": "2016-10-17T17:29:40+00:00"
+ "time": "2019-01-21T15:59:28+00:00"
},
{
"name": "vlucas/phpdotenv",
@@ -3690,27 +4035,26 @@
},
{
"name": "yajra/laravel-datatables-oracle",
- "version": "v6.17.0",
+ "version": "v6.29.3",
"source": {
"type": "git",
"url": "https://github.com/yajra/laravel-datatables.git",
- "reference": "66186a1275156b922e5968a4d65bbc5966bbee5d"
+ "reference": "5ccbe38affa0a9930a2add19684e012bed09f62d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/66186a1275156b922e5968a4d65bbc5966bbee5d",
- "reference": "66186a1275156b922e5968a4d65bbc5966bbee5d",
+ "url": "https://api.github.com/repos/yajra/laravel-datatables/zipball/5ccbe38affa0a9930a2add19684e012bed09f62d",
+ "reference": "5ccbe38affa0a9930a2add19684e012bed09f62d",
"shasum": ""
},
"require": {
- "dompdf/dompdf": "^0.6.1",
- "illuminate/database": "~5.0",
- "illuminate/filesystem": "~5.0",
- "illuminate/http": "~5.0",
- "illuminate/support": "~5.0",
- "illuminate/view": "~5.0",
- "laravelcollective/html": "~5.0",
- "league/fractal": "~0.12",
+ "illuminate/database": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "illuminate/filesystem": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "illuminate/http": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "illuminate/support": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "illuminate/view": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "laravelcollective/html": "5.0.*|5.1.*|5.2.*|5.3.*",
+ "league/fractal": "~0.14",
"maatwebsite/excel": "^2.0",
"php": ">=5.5.9"
},
@@ -3722,6 +4066,11 @@
"barryvdh/laravel-snappy": "Allows exporting of dataTable to PDF using the print view."
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "6.0-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Yajra\\Datatables\\": "src/"
@@ -3746,38 +4095,40 @@
"laravel4",
"laravel5"
],
- "time": "2016-08-10T00:31:22+00:00"
+ "time": "2018-04-05T15:24:31+00:00"
}
],
"packages-dev": [
{
"name": "doctrine/instantiator",
- "version": "1.0.5",
+ "version": "1.3.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
+ "reference": "f350df0268e904597e3bd9c4685c53e0e333feea"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/f350df0268e904597e3bd9c4685c53e0e333feea",
+ "reference": "f350df0268e904597e3bd9c4685c53e0e333feea",
"shasum": ""
},
"require": {
- "php": ">=5.3,<8.0-DEV"
+ "php": "^7.1 || ^8.0"
},
"require-dev": {
- "athletic/athletic": "~0.1.8",
+ "doctrine/coding-standard": "^6.0",
"ext-pdo": "*",
"ext-phar": "*",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~2.0"
+ "phpbench/phpbench": "^0.13",
+ "phpstan/phpstan-phpunit": "^0.11",
+ "phpstan/phpstan-shim": "^0.11",
+ "phpunit/phpunit": "^7.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "1.2.x-dev"
}
},
"autoload": {
@@ -3797,41 +4148,53 @@
}
],
"description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
- "homepage": "https://github.com/doctrine/instantiator",
+ "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
"keywords": [
"constructor",
"instantiate"
],
- "time": "2015-06-14T21:17:01+00:00"
+ "funding": [
+ {
+ "url": "https://www.doctrine-project.org/sponsorship.html",
+ "type": "custom"
+ },
+ {
+ "url": "https://www.patreon.com/phpdoctrine",
+ "type": "patreon"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-05-29T17:27:14+00:00"
},
{
"name": "fzaninotto/faker",
- "version": "v1.5.0",
+ "version": "v1.9.1",
"source": {
"type": "git",
"url": "https://github.com/fzaninotto/Faker.git",
- "reference": "d0190b156bcca848d401fb80f31f504f37141c8d"
+ "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d",
- "reference": "d0190b156bcca848d401fb80f31f504f37141c8d",
+ "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f",
+ "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
- },
- "suggest": {
- "ext-intl": "*"
+ "ext-intl": "*",
+ "phpunit/phpunit": "^4.8.35 || ^5.7",
+ "squizlabs/php_codesniffer": "^2.9.2"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.5.x-dev"
+ "dev-master": "1.9-dev"
}
},
"autoload": {
@@ -3854,41 +4217,47 @@
"faker",
"fixtures"
],
- "time": "2015-05-29T06:29:14+00:00"
+ "time": "2019-12-12T13:22:17+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.5.0",
+ "version": "1.10.1",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc"
+ "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
+ "reference": "969b211f9a51aa1f6c01d1d2aef56d3bd91598e5",
"shasum": ""
},
"require": {
- "php": ">=5.4.0"
+ "php": "^7.1 || ^8.0"
+ },
+ "replace": {
+ "myclabs/deep-copy": "self.version"
},
"require-dev": {
- "doctrine/collections": "1.*",
- "phpunit/phpunit": "~4.1"
+ "doctrine/collections": "^1.0",
+ "doctrine/common": "^2.6",
+ "phpunit/phpunit": "^7.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",
@@ -3896,43 +4265,145 @@
"object",
"object graph"
],
- "time": "2015-11-07T22:20:37+00:00"
+ "funding": [
+ {
+ "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
+ "type": "tidelift"
+ }
+ ],
+ "time": "2020-06-29T13:22:24+00:00"
+ },
+ {
+ "name": "phpdocumentor/reflection-common",
+ "version": "2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-2.x": "2.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "opensource@ijaap.nl"
+ }
+ ],
+ "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
+ "homepage": "http://www.phpdoc.org",
+ "keywords": [
+ "FQSEN",
+ "phpDocumentor",
+ "phpdoc",
+ "reflection",
+ "static analysis"
+ ],
+ "time": "2020-06-27T09:03:43+00:00"
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "2.0.4",
+ "version": "5.2.2",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
+ "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "ext-filter": "*",
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.2",
+ "phpdocumentor/type-resolver": "^1.3",
+ "webmozart/assert": "^1.9.1"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "mockery/mockery": "~1.3.2"
},
- "suggest": {
- "dflydev/markdown": "~1.0",
- "erusev/parsedown": "~1.0"
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "5.x-dev"
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Mike van Riel",
+ "email": "me@mikevanriel.com"
+ },
+ {
+ "name": "Jaap van Otterdijk",
+ "email": "account@ijaap.nl"
+ }
+ ],
+ "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
+ "time": "2020-09-03T19:13:55+00:00"
+ },
+ {
+ "name": "phpdocumentor/type-resolver",
+ "version": "1.4.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/phpDocumentor/TypeResolver.git",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^7.2 || ^8.0",
+ "phpdocumentor/reflection-common": "^2.0"
+ },
+ "require-dev": {
+ "ext-tokenizer": "*"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "2.0.x-dev"
+ "dev-1.x": "1.x-dev"
}
},
"autoload": {
- "psr-0": {
- "phpDocumentor": [
- "src/"
- ]
+ "psr-4": {
+ "phpDocumentor\\Reflection\\": "src"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -3942,42 +4413,46 @@
"authors": [
{
"name": "Mike van Riel",
- "email": "mike.vanriel@naenius.com"
+ "email": "me@mikevanriel.com"
}
],
- "time": "2015-02-03T12:10:50+00:00"
+ "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
+ "time": "2020-09-17T18:55:26+00:00"
},
{
"name": "phpspec/prophecy",
- "version": "v1.5.0",
+ "version": "v1.10.3",
"source": {
"type": "git",
"url": "https://github.com/phpspec/prophecy.git",
- "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7"
+ "reference": "451c3cd1418cf640de218914901e51b064abb093"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4745ded9307786b730d7a60df5cb5a6c43cf95f7",
- "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7",
+ "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
+ "reference": "451c3cd1418cf640de218914901e51b064abb093",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.2",
- "phpdocumentor/reflection-docblock": "~2.0",
- "sebastian/comparator": "~1.1"
+ "php": "^5.3|^7.0",
+ "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
+ "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
+ "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
},
"require-dev": {
- "phpspec/phpspec": "~2.0"
+ "phpspec/phpspec": "^2.5 || ^3.2",
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4.x-dev"
+ "dev-master": "1.10.x-dev"
}
},
"autoload": {
- "psr-0": {
- "Prophecy\\": "src/"
+ "psr-4": {
+ "Prophecy\\": "src/Prophecy"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -4005,44 +4480,44 @@
"spy",
"stub"
],
- "time": "2015-08-13T10:07:40+00:00"
+ "time": "2020-03-05T15:02:03+00:00"
},
{
"name": "phpunit/php-code-coverage",
- "version": "3.2.0",
+ "version": "4.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "85f5db2d0a0da79ad6a256eb54148ba383059ad9"
+ "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85f5db2d0a0da79ad6a256eb54148ba383059ad9",
- "reference": "85f5db2d0a0da79ad6a256eb54148ba383059ad9",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
+ "reference": "ef7b2f56815df854e66ceaee8ebe9393ae36a40d",
"shasum": ""
},
"require": {
- "php": ">=5.6",
- "phpunit/php-file-iterator": "~1.3",
- "phpunit/php-text-template": "~1.2",
- "phpunit/php-token-stream": "~1.3",
- "sebastian/code-unit-reverse-lookup": "~1.0",
- "sebastian/environment": "^1.3.2",
- "sebastian/version": "~1.0|~2.0"
+ "ext-dom": "*",
+ "ext-xmlwriter": "*",
+ "php": "^5.6 || ^7.0",
+ "phpunit/php-file-iterator": "^1.3",
+ "phpunit/php-text-template": "^1.2",
+ "phpunit/php-token-stream": "^1.4.2 || ^2.0",
+ "sebastian/code-unit-reverse-lookup": "^1.0",
+ "sebastian/environment": "^1.3.2 || ^2.0",
+ "sebastian/version": "^1.0 || ^2.0"
},
"require-dev": {
- "ext-xdebug": ">=2.1.4",
- "phpunit/phpunit": "~5"
+ "ext-xdebug": "^2.1.4",
+ "phpunit/phpunit": "^5.7"
},
"suggest": {
- "ext-dom": "*",
- "ext-xdebug": ">=2.2.1",
- "ext-xmlwriter": "*"
+ "ext-xdebug": "^2.5.1"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.2.x-dev"
+ "dev-master": "4.0.x-dev"
}
},
"autoload": {
@@ -4068,20 +4543,20 @@
"testing",
"xunit"
],
- "time": "2016-02-13T06:47:56+00:00"
+ "time": "2017-04-02T07:44:40+00:00"
},
{
"name": "phpunit/php-file-iterator",
- "version": "1.4.1",
+ "version": "1.4.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-file-iterator.git",
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4",
+ "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4",
"shasum": ""
},
"require": {
@@ -4115,7 +4590,7 @@
"filesystem",
"iterator"
],
- "time": "2015-06-21T13:08:43+00:00"
+ "time": "2017-11-27T13:52:08+00:00"
},
{
"name": "phpunit/php-text-template",
@@ -4160,22 +4635,30 @@
},
{
"name": "phpunit/php-timer",
- "version": "1.0.7",
+ "version": "1.0.9",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-timer.git",
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
+ "reference": "3dcf38ca72b158baf0bc245e9184d3fdffa9c46f",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.3.3 || ^7.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.0-dev"
+ }
+ },
"autoload": {
"classmap": [
"src/"
@@ -4197,33 +4680,33 @@
"keywords": [
"timer"
],
- "time": "2015-06-21T08:01:12+00:00"
+ "time": "2017-02-26T11:10:40+00:00"
},
{
"name": "phpunit/php-token-stream",
- "version": "1.4.8",
+ "version": "2.0.2",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-token-stream.git",
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
+ "reference": "791198a2c6254db10131eecfe8c06670700904db"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db",
+ "reference": "791198a2c6254db10131eecfe8c06670700904db",
"shasum": ""
},
"require": {
"ext-tokenizer": "*",
- "php": ">=5.3.3"
+ "php": "^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.2"
+ "phpunit/phpunit": "^6.2.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.4-dev"
+ "dev-master": "2.0-dev"
}
},
"autoload": {
@@ -4246,46 +4729,55 @@
"keywords": [
"tokenizer"
],
- "time": "2015-09-15T10:49:45+00:00"
+ "abandoned": true,
+ "time": "2017-11-27T05:48:46+00:00"
},
{
"name": "phpunit/phpunit",
- "version": "5.2.5",
+ "version": "5.7.27",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "db79855b229d4bbcdc055ad74c5dc20ad3f5c5fe"
+ "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/db79855b229d4bbcdc055ad74c5dc20ad3f5c5fe",
- "reference": "db79855b229d4bbcdc055ad74c5dc20ad3f5c5fe",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
+ "reference": "b7803aeca3ccb99ad0a506fa80b64cd6a56bbc0c",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-json": "*",
- "ext-pcre": "*",
- "ext-reflection": "*",
- "ext-spl": "*",
+ "ext-libxml": "*",
+ "ext-mbstring": "*",
+ "ext-xml": "*",
"myclabs/deep-copy": "~1.3",
- "php": ">=5.6",
- "phpspec/prophecy": "^1.3.1",
- "phpunit/php-code-coverage": "~3.2",
+ "php": "^5.6 || ^7.0",
+ "phpspec/prophecy": "^1.6.2",
+ "phpunit/php-code-coverage": "^4.0.4",
"phpunit/php-file-iterator": "~1.4",
"phpunit/php-text-template": "~1.2",
- "phpunit/php-timer": ">=1.0.6",
- "phpunit/phpunit-mock-objects": ">=3.0.5",
- "sebastian/comparator": "~1.1",
- "sebastian/diff": "~1.2",
- "sebastian/environment": "~1.3",
- "sebastian/exporter": "~1.2",
- "sebastian/global-state": "~1.0",
+ "phpunit/php-timer": "^1.0.6",
+ "phpunit/phpunit-mock-objects": "^3.2",
+ "sebastian/comparator": "^1.2.4",
+ "sebastian/diff": "^1.4.3",
+ "sebastian/environment": "^1.3.4 || ^2.0",
+ "sebastian/exporter": "~2.0",
+ "sebastian/global-state": "^1.1",
+ "sebastian/object-enumerator": "~2.0",
"sebastian/resource-operations": "~1.0",
- "sebastian/version": "~1.0|~2.0",
- "symfony/yaml": "~2.1|~3.0"
+ "sebastian/version": "^1.0.6|^2.0.1",
+ "symfony/yaml": "~2.1|~3.0|~4.0"
+ },
+ "conflict": {
+ "phpdocumentor/reflection-docblock": "3.0.2"
+ },
+ "require-dev": {
+ "ext-pdo": "*"
},
"suggest": {
+ "ext-xdebug": "*",
"phpunit/php-invoker": "~1.1"
},
"bin": [
@@ -4294,7 +4786,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.2.x-dev"
+ "dev-master": "5.7.x-dev"
}
},
"autoload": {
@@ -4320,30 +4812,33 @@
"testing",
"xunit"
],
- "time": "2016-02-13T06:58:29+00:00"
+ "time": "2018-02-01T05:50:59+00:00"
},
{
"name": "phpunit/phpunit-mock-objects",
- "version": "3.0.6",
+ "version": "3.4.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
- "reference": "49bc700750196c04dd6bc2c4c99cb632b893836b"
+ "reference": "a23b761686d50a560cc56233b9ecf49597cc9118"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/49bc700750196c04dd6bc2c4c99cb632b893836b",
- "reference": "49bc700750196c04dd6bc2c4c99cb632b893836b",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/a23b761686d50a560cc56233b9ecf49597cc9118",
+ "reference": "a23b761686d50a560cc56233b9ecf49597cc9118",
"shasum": ""
},
"require": {
"doctrine/instantiator": "^1.0.2",
- "php": ">=5.6",
- "phpunit/php-text-template": "~1.2",
- "sebastian/exporter": "~1.2"
+ "php": "^5.6 || ^7.0",
+ "phpunit/php-text-template": "^1.2",
+ "sebastian/exporter": "^1.2 || ^2.0"
+ },
+ "conflict": {
+ "phpunit/phpunit": "<5.4.0"
},
"require-dev": {
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^5.4"
},
"suggest": {
"ext-soap": "*"
@@ -4351,7 +4846,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0.x-dev"
+ "dev-master": "3.2.x-dev"
}
},
"autoload": {
@@ -4376,27 +4871,28 @@
"mock",
"xunit"
],
- "time": "2015-12-08T08:47:06+00:00"
+ "abandoned": true,
+ "time": "2017-06-30T09:13:00+00:00"
},
{
"name": "sebastian/code-unit-reverse-lookup",
- "version": "1.0.0",
+ "version": "1.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
+ "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
+ "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18",
"shasum": ""
},
"require": {
- "php": ">=5.6"
+ "php": "^5.6 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~5"
+ "phpunit/phpunit": "^5.7 || ^6.0"
},
"type": "library",
"extra": {
@@ -4421,26 +4917,26 @@
],
"description": "Looks up which function or method a line of code belongs to",
"homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
- "time": "2016-02-13T06:45:14+00:00"
+ "time": "2017-03-04T06:30:41+00:00"
},
{
"name": "sebastian/comparator",
- "version": "1.2.0",
+ "version": "1.2.4",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
+ "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
+ "reference": "2b7424b55f5047b47ac6e5ccb20b2aea4011d9be",
"shasum": ""
},
"require": {
"php": ">=5.3.3",
"sebastian/diff": "~1.2",
- "sebastian/exporter": "~1.2"
+ "sebastian/exporter": "~1.2 || ~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4"
@@ -4485,27 +4981,27 @@
"compare",
"equality"
],
- "time": "2015-07-26T15:48:44+00:00"
+ "time": "2017-01-29T09:50:25+00:00"
},
{
"name": "sebastian/diff",
- "version": "1.4.1",
+ "version": "1.4.3",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/diff.git",
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
+ "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
+ "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7f066a26a962dbe58ddea9f72a4e82874a3975a4",
+ "reference": "7f066a26a962dbe58ddea9f72a4e82874a3975a4",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.3.3 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.8"
+ "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
},
"type": "library",
"extra": {
@@ -4537,32 +5033,32 @@
"keywords": [
"diff"
],
- "time": "2015-12-08T07:14:41+00:00"
+ "time": "2017-05-22T07:24:03+00:00"
},
{
"name": "sebastian/environment",
- "version": "1.3.3",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/environment.git",
- "reference": "6e7133793a8e5a5714a551a8324337374be209df"
+ "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6e7133793a8e5a5714a551a8324337374be209df",
- "reference": "6e7133793a8e5a5714a551a8324337374be209df",
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
+ "reference": "5795ffe5dc5b02460c3e34222fee8cbe245d8fac",
"shasum": ""
},
"require": {
- "php": ">=5.3.3"
+ "php": "^5.6 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.4"
+ "phpunit/phpunit": "^5.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.3.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -4587,33 +5083,34 @@
"environment",
"hhvm"
],
- "time": "2015-12-02T08:37:27+00:00"
+ "time": "2016-11-26T07:53:53+00:00"
},
{
"name": "sebastian/exporter",
- "version": "1.2.1",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
+ "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
- "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
+ "reference": "ce474bdd1a34744d7ac5d6aad3a46d48d9bac4c4",
"shasum": ""
},
"require": {
"php": ">=5.3.3",
- "sebastian/recursion-context": "~1.0"
+ "sebastian/recursion-context": "~2.0"
},
"require-dev": {
+ "ext-mbstring": "*",
"phpunit/phpunit": "~4.4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -4653,7 +5150,7 @@
"export",
"exporter"
],
- "time": "2015-06-21T07:55:53+00:00"
+ "time": "2016-11-19T08:54:04+00:00"
},
{
"name": "sebastian/global-state",
@@ -4707,17 +5204,63 @@
"time": "2015-10-12T03:26:01+00:00"
},
{
+ "name": "sebastian/object-enumerator",
+ "version": "2.0.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/sebastianbergmann/object-enumerator.git",
+ "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1311872ac850040a79c3c058bea3e22d0f09cbb7",
+ "reference": "1311872ac850040a79c3c058bea3e22d0f09cbb7",
+ "shasum": ""
+ },
+ "require": {
+ "php": ">=5.6",
+ "sebastian/recursion-context": "~2.0"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "~5"
+ },
+ "type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.0.x-dev"
+ }
+ },
+ "autoload": {
+ "classmap": [
+ "src/"
+ ]
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "BSD-3-Clause"
+ ],
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sebastian@phpunit.de"
+ }
+ ],
+ "description": "Traverses array structures and object graphs to enumerate all referenced objects",
+ "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
+ "time": "2017-02-18T15:18:39+00:00"
+ },
+ {
"name": "sebastian/recursion-context",
- "version": "1.0.2",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
+ "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/2c3ba150cbec723aa057506e73a8d33bdb286c9a",
+ "reference": "2c3ba150cbec723aa057506e73a8d33bdb286c9a",
"shasum": ""
},
"require": {
@@ -4729,7 +5272,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0.x-dev"
+ "dev-master": "2.0.x-dev"
}
},
"autoload": {
@@ -4757,7 +5300,7 @@
],
"description": "Provides functionality to recursively process PHP variables",
"homepage": "http://www.github.com/sebastianbergmann/recursion-context",
- "time": "2015-11-11T19:50:13+00:00"
+ "time": "2016-11-19T07:33:16+00:00"
},
{
"name": "sebastian/resource-operations",
@@ -4803,16 +5346,16 @@
},
{
"name": "sebastian/version",
- "version": "2.0.0",
+ "version": "2.0.1",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/version.git",
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
+ "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
+ "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
"shasum": ""
},
"require": {
@@ -4842,29 +5385,35 @@
],
"description": "Library that helps with managing the version number of Git-hosted PHP projects",
"homepage": "https://github.com/sebastianbergmann/version",
- "time": "2016-02-04T12:56:52+00:00"
+ "time": "2016-10-03T07:35:21+00:00"
},
{
"name": "symfony/yaml",
- "version": "v3.0.2",
+ "version": "v3.3.18",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "3cf0709d7fe936e97bee9e954382e449003f1d9a"
+ "reference": "af615970e265543a26ee712c958404eb9b7ac93d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/3cf0709d7fe936e97bee9e954382e449003f1d9a",
- "reference": "3cf0709d7fe936e97bee9e954382e449003f1d9a",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/af615970e265543a26ee712c958404eb9b7ac93d",
+ "reference": "af615970e265543a26ee712c958404eb9b7ac93d",
"shasum": ""
},
"require": {
- "php": ">=5.5.9"
+ "php": "^5.5.9|>=7.0.8"
+ },
+ "require-dev": {
+ "symfony/console": "~2.8|~3.0"
+ },
+ "suggest": {
+ "symfony/console": "For validating YAML files using the lint command"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "3.0-dev"
+ "dev-master": "3.3-dev"
}
},
"autoload": {
@@ -4891,7 +5440,56 @@
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
- "time": "2016-02-02T13:44:19+00:00"
+ "time": "2018-01-20T15:04:53+00:00"
+ },
+ {
+ "name": "webmozart/assert",
+ "version": "1.9.1",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/webmozart/assert.git",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389",
+ "shasum": ""
+ },
+ "require": {
+ "php": "^5.3.3 || ^7.0 || ^8.0",
+ "symfony/polyfill-ctype": "^1.8"
+ },
+ "conflict": {
+ "phpstan/phpstan": "<0.12.20",
+ "vimeo/psalm": "<3.9.1"
+ },
+ "require-dev": {
+ "phpunit/phpunit": "^4.8.36 || ^7.5.13"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Webmozart\\Assert\\": "src/"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Bernhard Schussek",
+ "email": "bschussek@gmail.com"
+ }
+ ],
+ "description": "Assertions to validate method input/output with nice error messages.",
+ "keywords": [
+ "assert",
+ "check",
+ "validate"
+ ],
+ "time": "2020-07-08T17:02:28+00:00"
}
],
"aliases": [],
@@ -4902,5 +5500,6 @@
"platform": {
"php": ">=5.5.9"
},
- "platform-dev": []
+ "platform-dev": [],
+ "plugin-api-version": "1.1.0"
}
diff --git a/config/geoip.php b/config/geoip.php
index 8225f0a..49d52a4 100644
--- a/config/geoip.php
+++ b/config/geoip.php
@@ -54,7 +54,7 @@ return [
'maxmind_database' => [
'class' => \Torann\GeoIP\Services\MaxMindDatabase::class,
'database_path' => storage_path('app/geoip.mmdb'),
- 'update_url' => 'https://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz',
+ 'update_url' => sprintf('https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-City&license_key=%s&suffix=tar.gz', env('MAXMIND_LICENSE_KEY')),
'locales' => ['en'],
],
diff --git a/docs/user-guide/maxmind-license.md b/docs/user-guide/maxmind-license.md
new file mode 100644
index 0000000..1779a5d
--- /dev/null
+++ b/docs/user-guide/maxmind-license.md
@@ -0,0 +1,20 @@
+# Obtaining a MaxMind GeoIP License Key
+-----------------
+
+If you would like to use "advanced analytics" in order to get more insights on your users, you must input a MaxMind GeoIP license key during the setup process or add it later to your configuration file (`.env`).
+
+To obtain a license key, create an account on [MaxMind's website](https://www.maxmind.com/en/geolite2/signup). After you create your account and confirm your email, go to your [MaxMind account page](https://www.maxmind.com/en/accounts/current/license-key) to generate a license key for use with Polr. If you are asked whether your license key will be used for "GeoIP Update", answer no.
+
+Copy your newly generated license key and input it into Polr.
+
+## Troubleshooting
+
+### I'm having trouble running `php artisan geoip:update`, and I'm using an older version of Polr
+
+If you are on an older version of Polr, your installation may be updated. Update Polr by running `git pull` and then add a new entry to your `.env` configuration file:
+
+```
+MAXMIND_LICENSE_KEY="LICENSE_KEY_GOES_HERE"
+```
+
+Then, run `php artisan config:cache` and `php artisan geoip:update` again. \ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index 53198a1..ad9faa7 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -4,6 +4,7 @@ pages:
- User Guide:
- 'Installation': 'user-guide/installation.md'
- 'Upgrading': 'user-guide/upgrading.md'
+ - 'Obtaining a MaxMind License Key': 'user-guide/maxmind-license.md'
- 'Troubleshooting': 'user-guide/troubleshooting.md'
- Developer Guide:
- 'Libraries': 'developer-guide/libraries.md'
diff --git a/resources/views/env.blade.php b/resources/views/env.blade.php
index f36b23d..c3a1a23 100644
--- a/resources/views/env.blade.php
+++ b/resources/views/env.blade.php
@@ -26,6 +26,9 @@ POLR_GENERATED_AT="{{$POLR_GENERATED_AT}}"
# e.g true
POLR_SETUP_RAN={{$POLR_SETUP_RAN}}
+# Steps for obtaining a Maxmind License Key: https://docs.polrproject.org/en/latest/user-guide/maxmind-license
+MAXMIND_LICENSE_KEY="{{$MAXMIND_LICENSE_KEY}}"
+
DB_CONNECTION=mysql
# Set to your DB host (e.g localhost)
DB_HOST="{{{$DB_HOST}}}"
diff --git a/resources/views/setup.blade.php b/resources/views/setup.blade.php
index 39fbd6c..d19f032 100644
--- a/resources/views/setup.blade.php
+++ b/resources/views/setup.blade.php
@@ -65,6 +65,16 @@ Setup
<option value='true'>Enable advanced analytics</option>
</select>
+ <p>
+ MaxMind GeoIP License Key (required for advanced analytics only):
+ </p>
+ <p>
+ <input type='text' class='form-control' name='maxmind:license_key' value=''>
+
+ <p class='text-muted'>
+ To obtain a free MaxMind GeoIP license key, follow <a href="https://docs.polrproject.org/en/latest/user-guide/maxmind-license">these instructions</a> on Polr's documentation website.
+ </p>
+
<p>Shortening Permissions:</p>
<select name='setting:shorten_permission' class='form-control'>
<option value='false' selected='selected'>Anyone can shorten URLs</option>