diff --git a/.babelrc b/.babelrc
new file mode 100644
index 00000000..afb524e7
--- /dev/null
+++ b/.babelrc
@@ -0,0 +1,9 @@
+{
+ "presets": [
+ ["latest", {
+ "es2015": {
+ "modules": false
+ }
+ }]
+ ]
+}
diff --git a/Makefile b/Makefile
index df91c0ef..b181abc5 100644
--- a/Makefile
+++ b/Makefile
@@ -3,16 +3,11 @@
.PHONY: sass frontend js compress lint-sass lint-js
jsfiles := $(wildcard resources/assets/js/*.js)
sassfiles := $(wildcard resources/assets/sass/*.scss)
-yarnfiles:= node_modules/whatwg-fetch/fetch.js \
-node_modules/alertify.js/dist/js/alertify.js \
-node_modules/store2/dist/store2.min.js \
-node_modules/autolinker/dist/Autolinker.min.js \
-node_modules/marked/marked.min.js
+yarnfiles:= node_modules/mapbox-gl/dist/mapbox-gl.css
assets := public/assets/css/app.css \
public/assets/prism/prism.css public/assets/prism/prism.js \
$(wildcard public/assets/js/*.js) \
-$(wildcard pubilc/assets/frontend/*.css) \
-$(wildcard public/assets/frontend/*.js)
+$(wildcard public/assets/frontend/*.css)
sass: public/assets/css/app.css
diff --git a/app/Http/Controllers/NotesController.php b/app/Http/Controllers/NotesController.php
index c63c029c..ee25f641 100644
--- a/app/Http/Controllers/NotesController.php
+++ b/app/Http/Controllers/NotesController.php
@@ -51,6 +51,7 @@ class NotesController extends Controller
$note->longitude = $lnglat[0];
$note->address = $note->place->name;
$note->placeLink = '/places/' . $note->place->slug;
+ $note->geoJson = $this->getGeoJson($note->longitude, $note->latitude, $note->place->name, $note->place->icon);
}
$photoURLs = [];
$photos = $note->getMedia();
@@ -150,6 +151,7 @@ class NotesController extends Controller
$note->longitude = $lnglat[0];
$note->address = $note->place->name;
$note->placeLink = '/places/' . $note->place->slug;
+ $note->geoJson = $this->getGeoJson($note->longitude, $note->latitude, $note->place->name, $note->place->icon);
}
$photoURLs = [];
@@ -348,4 +350,21 @@ class NotesController extends Controller
return $address;
});
}
+
+ private function getGeoJson($longitude, $latitude, $title, $icon)
+ {
+ $icon = $icon ?? 'marker';
+
+ return '{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [' . $longitude . ', ' . $latitude . ']
+ },
+ "properties": {
+ "title": "' . $title . '",
+ "icon": "' . $icon . '"
+ }
+ }';
+ }
}
diff --git a/changelog.md b/changelog.md
index 34ccc35b..19aa3472 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,23 @@
# Changelog
-## Version {next}
+## Version 0.1.7 (2017-01-27)
+ - Add a rel=me link to my own domain in my h-card.
+
+## Version 0.1.6 (2017-01-27)
+ - Update the webmention parser to a version with a verified fix
+
+## Version 0.1.5 (2017-01-27)
+ - Update the webmention parser version to fix a bug with displaying webmentions
+
+## Version 0.1.4 (2017-01-27)
+ - Fix: refactor code slightly to allow multiple maps to be added to a page
+
+## Version 0.1.3 (2017-01-26)
+ - cleanup frontend assets, update compressed versions
+
+## Version 0.1.2 (2017-01-26)
- Improve syndication flow when working out which targets to use
+ - Use webpack/babel/es6 (this was a big one, code wise, functionality now basically the same though)
## Version 0.1.1 (2016-12-10)
- Fix: use correct link for footer iwc icon
diff --git a/composer.lock b/composer.lock
index 5f6a3750..c05858af 100644
--- a/composer.lock
+++ b/composer.lock
@@ -58,16 +58,16 @@
},
{
"name": "aws/aws-sdk-php",
- "version": "3.20.7",
+ "version": "3.21.6",
"source": {
"type": "git",
"url": "https://github.com/aws/aws-sdk-php.git",
- "reference": "d45648693759a237ad991f15c011136d77cfffb5"
+ "reference": "b51512a4ad4aa080ab963942a1e234265771fcde"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/d45648693759a237ad991f15c011136d77cfffb5",
- "reference": "d45648693759a237ad991f15c011136d77cfffb5",
+ "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/b51512a4ad4aa080ab963942a1e234265771fcde",
+ "reference": "b51512a4ad4aa080ab963942a1e234265771fcde",
"shasum": ""
},
"require": {
@@ -134,7 +134,7 @@
"s3",
"sdk"
],
- "time": "2016-12-15T21:05:32+00:00"
+ "time": "2017-01-27T00:34:55+00:00"
},
{
"name": "barnabywalters/mf-cleaner",
@@ -319,16 +319,16 @@
},
{
"name": "doctrine/annotations",
- "version": "v1.3.0",
+ "version": "v1.3.1",
"source": {
"type": "git",
"url": "https://github.com/doctrine/annotations.git",
- "reference": "30e07cf03edc3cd3ef579d0dd4dd8c58250799a5"
+ "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/annotations/zipball/30e07cf03edc3cd3ef579d0dd4dd8c58250799a5",
- "reference": "30e07cf03edc3cd3ef579d0dd4dd8c58250799a5",
+ "url": "https://api.github.com/repos/doctrine/annotations/zipball/bd4461328621bde0ae6b1b2675fbc6aca4ceb558",
+ "reference": "bd4461328621bde0ae6b1b2675fbc6aca4ceb558",
"shasum": ""
},
"require": {
@@ -383,7 +383,7 @@
"docblock",
"parser"
],
- "time": "2016-10-24T11:45:47+00:00"
+ "time": "2016-12-30T15:59:45+00:00"
},
{
"name": "doctrine/cache",
@@ -457,28 +457,29 @@
},
{
"name": "doctrine/collections",
- "version": "v1.3.0",
+ "version": "v1.4.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/collections.git",
- "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a"
+ "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/collections/zipball/6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
- "reference": "6c1e4eef75f310ea1b3e30945e9f06e652128b8a",
+ "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba",
+ "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba",
"shasum": ""
},
"require": {
- "php": ">=5.3.2"
+ "php": "^5.6 || ^7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "doctrine/coding-standard": "~0.1@dev",
+ "phpunit/phpunit": "^5.7"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.2.x-dev"
+ "dev-master": "1.3.x-dev"
}
},
"autoload": {
@@ -519,20 +520,20 @@
"collections",
"iterator"
],
- "time": "2015-04-14T22:21:58+00:00"
+ "time": "2017-01-03T10:49:41+00:00"
},
{
"name": "doctrine/common",
- "version": "v2.6.2",
+ "version": "v2.7.2",
"source": {
"type": "git",
"url": "https://github.com/doctrine/common.git",
- "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3"
+ "reference": "930297026c8009a567ac051fd545bf6124150347"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/common/zipball/7bce00698899aa2c06fe7365c76e4d78ddb15fa3",
- "reference": "7bce00698899aa2c06fe7365c76e4d78ddb15fa3",
+ "url": "https://api.github.com/repos/doctrine/common/zipball/930297026c8009a567ac051fd545bf6124150347",
+ "reference": "930297026c8009a567ac051fd545bf6124150347",
"shasum": ""
},
"require": {
@@ -541,10 +542,10 @@
"doctrine/collections": "1.*",
"doctrine/inflector": "1.*",
"doctrine/lexer": "1.*",
- "php": "~5.5|~7.0"
+ "php": "~5.6|~7.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.8|~5.0"
+ "phpunit/phpunit": "^5.4.6"
},
"type": "library",
"extra": {
@@ -592,24 +593,24 @@
"persistence",
"spl"
],
- "time": "2016-11-30T16:50:46+00:00"
+ "time": "2017-01-13T14:02:13+00:00"
},
{
"name": "doctrine/dbal",
- "version": "v2.5.5",
+ "version": "v2.5.10",
"source": {
"type": "git",
"url": "https://github.com/doctrine/dbal.git",
- "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9"
+ "reference": "fc376f7a61498e18520cd6fa083752a4ca08072b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/dbal/zipball/9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
- "reference": "9f8c05cd5225a320d56d4bfdb4772f10d045a0c9",
+ "url": "https://api.github.com/repos/doctrine/dbal/zipball/fc376f7a61498e18520cd6fa083752a4ca08072b",
+ "reference": "fc376f7a61498e18520cd6fa083752a4ca08072b",
"shasum": ""
},
"require": {
- "doctrine/common": ">=2.4,<2.7-dev",
+ "doctrine/common": ">=2.4,<2.8-dev",
"php": ">=5.3.2"
},
"require-dev": {
@@ -663,7 +664,7 @@
"persistence",
"queryobject"
],
- "time": "2016-09-09T19:13:33+00:00"
+ "time": "2017-01-23T23:17:10+00:00"
},
{
"name": "doctrine/inflector",
@@ -788,21 +789,24 @@
},
{
"name": "ezyang/htmlpurifier",
- "version": "v4.8.0",
+ "version": "v4.9.0",
"source": {
"type": "git",
"url": "https://github.com/ezyang/htmlpurifier.git",
- "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2"
+ "reference": "a1c09b09e398687deeb8e309a6305def4b43439b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
- "reference": "d0c392f77d2f2a3dcf7fcb79e2a1e2b8804e75b2",
+ "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/a1c09b09e398687deeb8e309a6305def4b43439b",
+ "reference": "a1c09b09e398687deeb8e309a6305def4b43439b",
"shasum": ""
},
"require": {
"php": ">=5.2"
},
+ "require-dev": {
+ "simpletest/simpletest": "^1.1"
+ },
"type": "library",
"autoload": {
"psr-0": {
@@ -828,7 +832,7 @@
"keywords": [
"html"
],
- "time": "2016-07-16T12:58:58+00:00"
+ "time": "2017-01-13T12:31:37+00:00"
},
{
"name": "geo-io/interface",
@@ -987,28 +991,28 @@
},
{
"name": "guzzlehttp/promises",
- "version": "1.3.0",
+ "version": "v1.3.1",
"source": {
"type": "git",
"url": "https://github.com/guzzle/promises.git",
- "reference": "2693c101803ca78b27972d84081d027fca790a1e"
+ "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/guzzle/promises/zipball/2693c101803ca78b27972d84081d027fca790a1e",
- "reference": "2693c101803ca78b27972d84081d027fca790a1e",
+ "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646",
+ "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646",
"shasum": ""
},
"require": {
"php": ">=5.5.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0"
+ "phpunit/phpunit": "^4.0"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "1.0-dev"
+ "dev-master": "1.4-dev"
}
},
"autoload": {
@@ -1034,7 +1038,7 @@
"keywords": [
"promise"
],
- "time": "2016-11-18T17:47:58+00:00"
+ "time": "2016-12-20T10:07:11+00:00"
},
{
"name": "guzzlehttp/psr7",
@@ -1135,16 +1139,16 @@
},
{
"name": "indieweb/link-rel-parser",
- "version": "0.1.2",
+ "version": "0.1.3",
"source": {
"type": "git",
"url": "https://github.com/indieweb/link-rel-parser-php.git",
- "reference": "7127a92f32cecbf8166fb3b34130a59ea63e2041"
+ "reference": "295420e4f16d9a9d262a3c25a7a583794428f055"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/indieweb/link-rel-parser-php/zipball/7127a92f32cecbf8166fb3b34130a59ea63e2041",
- "reference": "7127a92f32cecbf8166fb3b34130a59ea63e2041",
+ "url": "https://api.github.com/repos/indieweb/link-rel-parser-php/zipball/295420e4f16d9a9d262a3c25a7a583794428f055",
+ "reference": "295420e4f16d9a9d262a3c25a7a583794428f055",
"shasum": ""
},
"require": {
@@ -1177,20 +1181,20 @@
"indieweb",
"microformats2"
],
- "time": "2016-04-13T17:48:59+00:00"
+ "time": "2017-01-11T17:14:49+00:00"
},
{
"name": "intervention/image",
- "version": "2.3.8",
+ "version": "2.3.9",
"source": {
"type": "git",
"url": "https://github.com/Intervention/image.git",
- "reference": "4064a980324f6c3bfa2bd981dfb247afa705ec3c"
+ "reference": "2bce9a59c43b868300b02a7d31a1e4aa67a200ae"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/Intervention/image/zipball/4064a980324f6c3bfa2bd981dfb247afa705ec3c",
- "reference": "4064a980324f6c3bfa2bd981dfb247afa705ec3c",
+ "url": "https://api.github.com/repos/Intervention/image/zipball/2bce9a59c43b868300b02a7d31a1e4aa67a200ae",
+ "reference": "2bce9a59c43b868300b02a7d31a1e4aa67a200ae",
"shasum": ""
},
"require": {
@@ -1239,7 +1243,7 @@
"thumbnail",
"watermark"
],
- "time": "2016-09-01T17:04:03+00:00"
+ "time": "2017-01-10T14:15:56+00:00"
},
{
"name": "jakub-onderka/php-console-color",
@@ -1485,22 +1489,22 @@
},
{
"name": "jonnybarnes/webmentions-parser",
- "version": "v0.4.4",
+ "version": "v0.4.7",
"source": {
"type": "git",
"url": "https://github.com/jonnybarnes/webmentions-parser.git",
- "reference": "111aae8fdf9fd31417865d28fe2160ad3c2a10c5"
+ "reference": "62f9b64ddeb3678f9e7da8f503267c74c5d24da2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/jonnybarnes/webmentions-parser/zipball/111aae8fdf9fd31417865d28fe2160ad3c2a10c5",
- "reference": "111aae8fdf9fd31417865d28fe2160ad3c2a10c5",
+ "url": "https://api.github.com/repos/jonnybarnes/webmentions-parser/zipball/62f9b64ddeb3678f9e7da8f503267c74c5d24da2",
+ "reference": "62f9b64ddeb3678f9e7da8f503267c74c5d24da2",
"shasum": ""
},
"require": {
"guzzlehttp/guzzle": "~6.0",
"mf2/mf2": "~0.3",
- "php": ">=5.6"
+ "php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "~5.0"
@@ -1528,20 +1532,20 @@
"microformats",
"webmentions"
],
- "time": "2016-10-20T15:48:02+00:00"
+ "time": "2017-01-27T18:17:56+00:00"
},
{
"name": "laravel/framework",
- "version": "v5.3.28",
+ "version": "v5.3.30",
"source": {
"type": "git",
"url": "https://github.com/laravel/framework.git",
- "reference": "a64fc4f8958091ca39623b2e8c8f173cb34fa47a"
+ "reference": "2d4e8c95f584b38d2279b552e2868fc447b97578"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/laravel/framework/zipball/a64fc4f8958091ca39623b2e8c8f173cb34fa47a",
- "reference": "a64fc4f8958091ca39623b2e8c8f173cb34fa47a",
+ "url": "https://api.github.com/repos/laravel/framework/zipball/2d4e8c95f584b38d2279b552e2868fc447b97578",
+ "reference": "2d4e8c95f584b38d2279b552e2868fc447b97578",
"shasum": ""
},
"require": {
@@ -1558,7 +1562,7 @@
"php": ">=5.6.4",
"psy/psysh": "0.7.*|0.8.*",
"ramsey/uuid": "~3.0",
- "swiftmailer/swiftmailer": "~5.1",
+ "swiftmailer/swiftmailer": "~5.4",
"symfony/console": "3.1.*",
"symfony/debug": "3.1.*",
"symfony/finder": "3.1.*",
@@ -1656,7 +1660,7 @@
"framework",
"laravel"
],
- "time": "2016-12-15T18:03:17+00:00"
+ "time": "2017-01-26T14:29:55+00:00"
},
{
"name": "laravel/scout",
@@ -1781,16 +1785,16 @@
},
{
"name": "league/commonmark",
- "version": "0.15.2",
+ "version": "0.15.3",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/commonmark.git",
- "reference": "c3b08b911e7344e45b87529eabc8b559d48093d4"
+ "reference": "c8b43ee5821362216f8e9ac684f0f59de164edcc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c3b08b911e7344e45b87529eabc8b559d48093d4",
- "reference": "c3b08b911e7344e45b87529eabc8b559d48093d4",
+ "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c8b43ee5821362216f8e9ac684f0f59de164edcc",
+ "reference": "c8b43ee5821362216f8e9ac684f0f59de164edcc",
"shasum": ""
},
"require": {
@@ -1846,20 +1850,20 @@
"markdown",
"parser"
],
- "time": "2016-11-22T17:30:29+00:00"
+ "time": "2016-12-19T00:11:43+00:00"
},
{
"name": "league/flysystem",
- "version": "1.0.32",
+ "version": "1.0.33",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/flysystem.git",
- "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab"
+ "reference": "5c7f98498b12d47f9de90ec9186a90000125777c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1b5c4a0031697f46e779a9d1b309c2e1b24daeab",
- "reference": "1b5c4a0031697f46e779a9d1b309c2e1b24daeab",
+ "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/5c7f98498b12d47f9de90ec9186a90000125777c",
+ "reference": "5c7f98498b12d47f9de90ec9186a90000125777c",
"shasum": ""
},
"require": {
@@ -1929,7 +1933,7 @@
"sftp",
"storage"
],
- "time": "2016-10-19T20:38:46+00:00"
+ "time": "2017-01-23T10:32:09+00:00"
},
{
"name": "league/flysystem-aws-s3-v3",
@@ -1980,16 +1984,16 @@
},
{
"name": "league/glide",
- "version": "1.2.0",
+ "version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/glide.git",
- "reference": "93bfc82142c62bf3d18420cc6c0fc0b1a8f82274"
+ "reference": "ae6351088b148ed73ebd1270e312b07fd35dd37d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/glide/zipball/93bfc82142c62bf3d18420cc6c0fc0b1a8f82274",
- "reference": "93bfc82142c62bf3d18420cc6c0fc0b1a8f82274",
+ "url": "https://api.github.com/repos/thephpleague/glide/zipball/ae6351088b148ed73ebd1270e312b07fd35dd37d",
+ "reference": "ae6351088b148ed73ebd1270e312b07fd35dd37d",
"shasum": ""
},
"require": {
@@ -2037,7 +2041,7 @@
"manipulation",
"processing"
],
- "time": "2016-11-14T16:36:03+00:00"
+ "time": "2017-01-19T01:26:54+00:00"
},
{
"name": "martinbean/laravel-sluggable-trait",
@@ -2214,16 +2218,16 @@
},
{
"name": "mtdowling/cron-expression",
- "version": "v1.1.0",
+ "version": "v1.2.0",
"source": {
"type": "git",
"url": "https://github.com/mtdowling/cron-expression.git",
- "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5"
+ "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad"
},
"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/9504fa9ea681b586028adaaa0877db4aecf32bad",
+ "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad",
"shasum": ""
},
"require": {
@@ -2234,8 +2238,8 @@
},
"type": "library",
"autoload": {
- "psr-0": {
- "Cron": "src/"
+ "psr-4": {
+ "Cron\\": "src/Cron/"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -2254,7 +2258,7 @@
"cron",
"schedule"
],
- "time": "2016-01-26T21:23:30+00:00"
+ "time": "2017-01-23T04:29:33+00:00"
},
{
"name": "mtdowling/jmespath.php",
@@ -2313,26 +2317,32 @@
},
{
"name": "nesbot/carbon",
- "version": "1.21.0",
+ "version": "1.22.1",
"source": {
"type": "git",
"url": "https://github.com/briannesbitt/Carbon.git",
- "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7"
+ "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
- "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7",
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
+ "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc",
"shasum": ""
},
"require": {
"php": ">=5.3.0",
- "symfony/translation": "~2.6|~3.0"
+ "symfony/translation": "~2.6 || ~3.0"
},
"require-dev": {
- "phpunit/phpunit": "~4.0|~5.0"
+ "friendsofphp/php-cs-fixer": "~2",
+ "phpunit/phpunit": "~4.0 || ~5.0"
},
"type": "library",
+ "extra": {
+ "branch-alias": {
+ "dev-master": "1.23-dev"
+ }
+ },
"autoload": {
"psr-4": {
"Carbon\\": "src/Carbon/"
@@ -2356,7 +2366,7 @@
"datetime",
"time"
],
- "time": "2015-11-04T20:07:17+00:00"
+ "time": "2017-01-16T07:55:07+00:00"
},
{
"name": "nikic/php-parser",
@@ -2518,16 +2528,16 @@
},
{
"name": "phaza/laravel-postgis",
- "version": "3.1",
+ "version": "3.1.1",
"source": {
"type": "git",
"url": "https://github.com/njbarrett/laravel-postgis.git",
- "reference": "accec379af8ceba903ceb10df37beeb9bfb411cc"
+ "reference": "5af1d261b400b803be2299ed59d3b38c2d82e550"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/njbarrett/laravel-postgis/zipball/accec379af8ceba903ceb10df37beeb9bfb411cc",
- "reference": "accec379af8ceba903ceb10df37beeb9bfb411cc",
+ "url": "https://api.github.com/repos/njbarrett/laravel-postgis/zipball/5af1d261b400b803be2299ed59d3b38c2d82e550",
+ "reference": "5af1d261b400b803be2299ed59d3b38c2d82e550",
"shasum": ""
},
"require": {
@@ -2564,20 +2574,20 @@
}
],
"description": "Postgis extensions for laravel. Aims to make it easy to work with geometries from laravel models",
- "time": "2016-05-21T08:00:18+00:00"
+ "time": "2017-01-16T08:04:22+00:00"
},
{
"name": "pmatseykanets/laravel-scout-postgres",
- "version": "v0.2.0",
+ "version": "v0.2.1",
"source": {
"type": "git",
"url": "https://github.com/pmatseykanets/laravel-scout-postgres.git",
- "reference": "f45230853a367f522bb0551d1641e7e133011ee4"
+ "reference": "1b94f766f0e45caf526e7c1bc8299e280a05da99"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/pmatseykanets/laravel-scout-postgres/zipball/f45230853a367f522bb0551d1641e7e133011ee4",
- "reference": "f45230853a367f522bb0551d1641e7e133011ee4",
+ "url": "https://api.github.com/repos/pmatseykanets/laravel-scout-postgres/zipball/1b94f766f0e45caf526e7c1bc8299e280a05da99",
+ "reference": "1b94f766f0e45caf526e7c1bc8299e280a05da99",
"shasum": ""
},
"require": {
@@ -2619,7 +2629,7 @@
"postgresql",
"search"
],
- "time": "2016-10-07T18:54:49+00:00"
+ "time": "2016-12-23T19:42:15+00:00"
},
{
"name": "predis/predis",
@@ -2770,16 +2780,16 @@
},
{
"name": "psy/psysh",
- "version": "v0.8.0",
+ "version": "v0.8.1",
"source": {
"type": "git",
"url": "https://github.com/bobthecow/psysh.git",
- "reference": "4a8860e13aa68a4bbf2476c014f8a1f14f1bf991"
+ "reference": "701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bobthecow/psysh/zipball/4a8860e13aa68a4bbf2476c014f8a1f14f1bf991",
- "reference": "4a8860e13aa68a4bbf2476c014f8a1f14f1bf991",
+ "url": "https://api.github.com/repos/bobthecow/psysh/zipball/701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a",
+ "reference": "701e8a1cc426ee170f1296f5d9f6b8a26ad25c4a",
"shasum": ""
},
"require": {
@@ -2809,7 +2819,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-develop": "0.8.x-dev"
+ "dev-develop": "0.9.x-dev"
}
},
"autoload": {
@@ -2839,7 +2849,7 @@
"interactive",
"shell"
],
- "time": "2016-12-07T17:15:07+00:00"
+ "time": "2017-01-15T17:54:13+00:00"
},
{
"name": "ramsey/uuid",
@@ -2969,25 +2979,25 @@
},
{
"name": "spatie/laravel-glide",
- "version": "3.0.1",
+ "version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-glide.git",
- "reference": "9a5f8cac9ed2246b41afd6aa1f2b3034a6aa9ba4"
+ "reference": "a75f9069a04a1337e7c5308fd4975821f8177f23"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-glide/zipball/9a5f8cac9ed2246b41afd6aa1f2b3034a6aa9ba4",
- "reference": "9a5f8cac9ed2246b41afd6aa1f2b3034a6aa9ba4",
+ "url": "https://api.github.com/repos/spatie/laravel-glide/zipball/a75f9069a04a1337e7c5308fd4975821f8177f23",
+ "reference": "a75f9069a04a1337e7c5308fd4975821f8177f23",
"shasum": ""
},
"require": {
- "illuminate/support": "5.*",
+ "illuminate/support": "~5.3.0|~5.4.0",
"league/glide": "^1.0",
"php": "^7.0"
},
"require-dev": {
- "orchestra/testbench": "^3.2",
+ "orchestra/testbench": "~3.3.0|~3.4.0",
"phpunit/phpunit": "5.*"
},
"type": "library",
@@ -3008,27 +3018,31 @@
],
"description": "Easily convert images with Glide",
"homepage": "https://github.com/spatie/laravel-glide",
- "time": "2016-05-05T15:35:48+00:00"
+ "time": "2017-01-24T10:51:47+00:00"
},
{
"name": "spatie/laravel-medialibrary",
- "version": "4.10.1",
+ "version": "4.12.0",
"source": {
"type": "git",
"url": "https://github.com/spatie/laravel-medialibrary.git",
- "reference": "090ba5ff7b378487171bd986501e29192a432962"
+ "reference": "e549689b136ea489d2bffc7bdd16c0ef7a93f9d5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/090ba5ff7b378487171bd986501e29192a432962",
- "reference": "090ba5ff7b378487171bd986501e29192a432962",
+ "url": "https://api.github.com/repos/spatie/laravel-medialibrary/zipball/e549689b136ea489d2bffc7bdd16c0ef7a93f9d5",
+ "reference": "e549689b136ea489d2bffc7bdd16c0ef7a93f9d5",
"shasum": ""
},
"require": {
- "illuminate/bus": "~5.1.16|~5.2.0|~5.3.0",
- "illuminate/console": "~5.1.16|~5.2.0|~5.3.0",
- "illuminate/database": "~5.1.16|~5.2.0|~5.3.0",
- "illuminate/support": "~5.1.16|~5.2.0|~5.3.0",
+ "illuminate/bus": "~5.2.0|~5.3.0|~5.4.0",
+ "illuminate/console": "~5.2.0|~5.3.0|~5.4.0",
+ "illuminate/container": "~5.2.0|~5.3.28|~5.4.0",
+ "illuminate/contracts": "~5.2.0|~5.3.28|~5.4.0",
+ "illuminate/database": "~5.2.0|~5.3.0|~5.4.0",
+ "illuminate/filesystem": "~5.2.0|~5.3.0|~5.4.0",
+ "illuminate/support": "~5.2.0|~5.3.0|~5.4.0",
+ "league/flysystem": "^1.0.13",
"php": "^7.0",
"spatie/laravel-glide": "^3.0.0",
"spatie/pdf-to-image": "^1.2",
@@ -3039,10 +3053,10 @@
},
"require-dev": {
"doctrine/dbal": "^2.5.2",
- "league/flysystem-aws-s3-v3": "^1.0",
+ "league/flysystem-aws-s3-v3": "^1.0.13",
"mockery/mockery": "^0.9.4",
- "orchestra/testbench": "^3.1",
- "phpunit/phpunit": "^5.0.0"
+ "orchestra/testbench": "~3.2.0|~3.3.0|~3.4.0",
+ "phpunit/phpunit": "^5.7.0"
},
"suggest": {
"league/flysystem-aws-s3-v3": "Required to use AWS S3 file storage",
@@ -3075,7 +3089,7 @@
"media",
"spatie"
],
- "time": "2016-12-12T07:24:32+00:00"
+ "time": "2017-01-23T15:15:53+00:00"
},
{
"name": "spatie/pdf-to-image",
@@ -3182,23 +3196,24 @@
},
{
"name": "swiftmailer/swiftmailer",
- "version": "v5.4.4",
+ "version": "v5.4.5",
"source": {
"type": "git",
"url": "https://github.com/swiftmailer/swiftmailer.git",
- "reference": "545ce9136690cea74f98f86fbb9c92dd9ab1a756"
+ "reference": "cd142238a339459b10da3d8234220963f392540c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/545ce9136690cea74f98f86fbb9c92dd9ab1a756",
- "reference": "545ce9136690cea74f98f86fbb9c92dd9ab1a756",
+ "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/cd142238a339459b10da3d8234220963f392540c",
+ "reference": "cd142238a339459b10da3d8234220963f392540c",
"shasum": ""
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
- "mockery/mockery": "~0.9.1"
+ "mockery/mockery": "~0.9.1",
+ "symfony/phpunit-bridge": "~3.2"
},
"type": "library",
"extra": {
@@ -3231,20 +3246,20 @@
"mail",
"mailer"
],
- "time": "2016-11-24T01:01:23+00:00"
+ "time": "2016-12-29T10:02:40+00:00"
},
{
"name": "symfony/console",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "221a60fb2f369a065eea1ed96b61183219fdfa6e"
+ "reference": "047f16485d68c083bd5d9b73ff16f9cb9c1a9f52"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/221a60fb2f369a065eea1ed96b61183219fdfa6e",
- "reference": "221a60fb2f369a065eea1ed96b61183219fdfa6e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/047f16485d68c083bd5d9b73ff16f9cb9c1a9f52",
+ "reference": "047f16485d68c083bd5d9b73ff16f9cb9c1a9f52",
"shasum": ""
},
"require": {
@@ -3292,20 +3307,20 @@
],
"description": "Symfony Console Component",
"homepage": "https://symfony.com",
- "time": "2016-12-08T14:58:14+00:00"
+ "time": "2017-01-08T20:43:43+00:00"
},
{
"name": "symfony/debug",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/debug.git",
- "reference": "c058661c32f5b462722e36d120905940089cbd9a"
+ "reference": "73f1c337907ba963af8028844fea1af98498dfff"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/debug/zipball/c058661c32f5b462722e36d120905940089cbd9a",
- "reference": "c058661c32f5b462722e36d120905940089cbd9a",
+ "url": "https://api.github.com/repos/symfony/debug/zipball/73f1c337907ba963af8028844fea1af98498dfff",
+ "reference": "73f1c337907ba963af8028844fea1af98498dfff",
"shasum": ""
},
"require": {
@@ -3349,20 +3364,20 @@
],
"description": "Symfony Debug Component",
"homepage": "https://symfony.com",
- "time": "2016-11-15T12:55:20+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/event-dispatcher",
- "version": "v3.2.1",
+ "version": "v3.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/event-dispatcher.git",
- "reference": "e8f47a327c2f0fd5aa04fa60af2b693006ed7283"
+ "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/e8f47a327c2f0fd5aa04fa60af2b693006ed7283",
- "reference": "e8f47a327c2f0fd5aa04fa60af2b693006ed7283",
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9137eb3a3328e413212826d63eeeb0217836e2b6",
+ "reference": "9137eb3a3328e413212826d63eeeb0217836e2b6",
"shasum": ""
},
"require": {
@@ -3409,20 +3424,20 @@
],
"description": "Symfony EventDispatcher Component",
"homepage": "https://symfony.com",
- "time": "2016-10-13T06:29:04+00:00"
+ "time": "2017-01-02T20:32:22+00:00"
},
{
"name": "symfony/finder",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/finder.git",
- "reference": "74dcd370c8d057882575e535616fde935e411b19"
+ "reference": "59687a255d1562f2c17b012418273862083d85f7"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/finder/zipball/74dcd370c8d057882575e535616fde935e411b19",
- "reference": "74dcd370c8d057882575e535616fde935e411b19",
+ "url": "https://api.github.com/repos/symfony/finder/zipball/59687a255d1562f2c17b012418273862083d85f7",
+ "reference": "59687a255d1562f2c17b012418273862083d85f7",
"shasum": ""
},
"require": {
@@ -3458,20 +3473,20 @@
],
"description": "Symfony Finder Component",
"homepage": "https://symfony.com",
- "time": "2016-12-13T09:38:21+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/http-foundation",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-foundation.git",
- "reference": "88a1d3cee2dbd06f7103ff63938743b903b65a92"
+ "reference": "cef0ad49a2e90455cfc649522025b5a2929648c0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-foundation/zipball/88a1d3cee2dbd06f7103ff63938743b903b65a92",
- "reference": "88a1d3cee2dbd06f7103ff63938743b903b65a92",
+ "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cef0ad49a2e90455cfc649522025b5a2929648c0",
+ "reference": "cef0ad49a2e90455cfc649522025b5a2929648c0",
"shasum": ""
},
"require": {
@@ -3511,20 +3526,20 @@
],
"description": "Symfony HttpFoundation Component",
"homepage": "https://symfony.com",
- "time": "2016-11-27T04:21:07+00:00"
+ "time": "2017-01-08T20:43:43+00:00"
},
{
"name": "symfony/http-kernel",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
- "reference": "d7a4671a6f8e4174127770263dcd95bee5713f76"
+ "reference": "d7578a0ed01e689f5b058e1ed37b9ad0718a1ef3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d7a4671a6f8e4174127770263dcd95bee5713f76",
- "reference": "d7a4671a6f8e4174127770263dcd95bee5713f76",
+ "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d7578a0ed01e689f5b058e1ed37b9ad0718a1ef3",
+ "reference": "d7578a0ed01e689f5b058e1ed37b9ad0718a1ef3",
"shasum": ""
},
"require": {
@@ -3593,7 +3608,7 @@
],
"description": "Symfony HttpKernel Component",
"homepage": "https://symfony.com",
- "time": "2016-12-13T12:52:10+00:00"
+ "time": "2017-01-12T20:43:39+00:00"
},
{
"name": "symfony/polyfill-mbstring",
@@ -3764,16 +3779,16 @@
},
{
"name": "symfony/process",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/process.git",
- "reference": "d23427a7f97a373129f61bc3b876fe4c66e2b3c7"
+ "reference": "b525066a9efe372f0910296e486aa61741b09025"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/process/zipball/d23427a7f97a373129f61bc3b876fe4c66e2b3c7",
- "reference": "d23427a7f97a373129f61bc3b876fe4c66e2b3c7",
+ "url": "https://api.github.com/repos/symfony/process/zipball/b525066a9efe372f0910296e486aa61741b09025",
+ "reference": "b525066a9efe372f0910296e486aa61741b09025",
"shasum": ""
},
"require": {
@@ -3809,20 +3824,20 @@
],
"description": "Symfony Process Component",
"homepage": "https://symfony.com",
- "time": "2016-11-24T01:08:05+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/routing",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/routing.git",
- "reference": "4beb3dceb14cf2dd63dd222d1825ca981a2952cb"
+ "reference": "5cd8d7b88e9f30a7d830fa15876828da272685d3"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/routing/zipball/4beb3dceb14cf2dd63dd222d1825ca981a2952cb",
- "reference": "4beb3dceb14cf2dd63dd222d1825ca981a2952cb",
+ "url": "https://api.github.com/repos/symfony/routing/zipball/5cd8d7b88e9f30a7d830fa15876828da272685d3",
+ "reference": "5cd8d7b88e9f30a7d830fa15876828da272685d3",
"shasum": ""
},
"require": {
@@ -3884,20 +3899,20 @@
"uri",
"url"
],
- "time": "2016-11-25T12:27:14+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/translation",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/translation.git",
- "reference": "2f4b6114b75c506dd1ee7eb485b35facbcb2d873"
+ "reference": "7882149d1e1fd46d960f3e42344c9caf2e535573"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/translation/zipball/2f4b6114b75c506dd1ee7eb485b35facbcb2d873",
- "reference": "2f4b6114b75c506dd1ee7eb485b35facbcb2d873",
+ "url": "https://api.github.com/repos/symfony/translation/zipball/7882149d1e1fd46d960f3e42344c9caf2e535573",
+ "reference": "7882149d1e1fd46d960f3e42344c9caf2e535573",
"shasum": ""
},
"require": {
@@ -3948,20 +3963,20 @@
],
"description": "Symfony Translation Component",
"homepage": "https://symfony.com",
- "time": "2016-11-18T21:15:08+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/var-dumper",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
- "reference": "5ccbd23a97035886e595ce497dbe94bc88ac0b57"
+ "reference": "d34a930421233f119fe61149ce046bb5b0b412d9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/var-dumper/zipball/5ccbd23a97035886e595ce497dbe94bc88ac0b57",
- "reference": "5ccbd23a97035886e595ce497dbe94bc88ac0b57",
+ "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d34a930421233f119fe61149ce046bb5b0b412d9",
+ "reference": "d34a930421233f119fe61149ce046bb5b0b412d9",
"shasum": ""
},
"require": {
@@ -4011,7 +4026,7 @@
"debug",
"dump"
],
- "time": "2016-12-08T14:58:14+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "themattharris/tmhoauth",
@@ -4153,20 +4168,20 @@
"packages-dev": [
{
"name": "barryvdh/laravel-debugbar",
- "version": "v2.3.0",
+ "version": "v2.3.2",
"source": {
"type": "git",
"url": "https://github.com/barryvdh/laravel-debugbar.git",
- "reference": "0c87981df959c7c1943abe227baf607c92f204f9"
+ "reference": "24e4f0261e352d3fd86d0447791b56ae49398674"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0c87981df959c7c1943abe227baf607c92f204f9",
- "reference": "0c87981df959c7c1943abe227baf607c92f204f9",
+ "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/24e4f0261e352d3fd86d0447791b56ae49398674",
+ "reference": "24e4f0261e352d3fd86d0447791b56ae49398674",
"shasum": ""
},
"require": {
- "illuminate/support": "5.1.*|5.2.*|5.3.*",
+ "illuminate/support": "5.1.*|5.2.*|5.3.*|5.4.*",
"maximebf/debugbar": "~1.13.0",
"php": ">=5.5.9",
"symfony/finder": "~2.7|~3.0"
@@ -4203,7 +4218,7 @@
"profiler",
"webprofiler"
],
- "time": "2016-09-15T14:05:56+00:00"
+ "time": "2017-01-19T08:19:49+00:00"
},
{
"name": "doctrine/instantiator",
@@ -4401,16 +4416,16 @@
},
{
"name": "maximebf/debugbar",
- "version": "v1.13.0",
+ "version": "1.13.1",
"source": {
"type": "git",
"url": "https://github.com/maximebf/php-debugbar.git",
- "reference": "5f49a5ed6cfde81d31d89378806670d77462526e"
+ "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/5f49a5ed6cfde81d31d89378806670d77462526e",
- "reference": "5f49a5ed6cfde81d31d89378806670d77462526e",
+ "url": "https://api.github.com/repos/maximebf/php-debugbar/zipball/afee79a236348e39a44cb837106b7c5b4897ac2a",
+ "reference": "afee79a236348e39a44cb837106b7c5b4897ac2a",
"shasum": ""
},
"require": {
@@ -4458,20 +4473,20 @@
"debug",
"debugbar"
],
- "time": "2016-09-15T14:01:59+00:00"
+ "time": "2017-01-05T08:46:19+00:00"
},
{
"name": "mockery/mockery",
- "version": "0.9.6",
+ "version": "0.9.7",
"source": {
"type": "git",
"url": "https://github.com/padraic/mockery.git",
- "reference": "65d4ca18e15cb02eeb1e5336f884e46b9b905be0"
+ "reference": "4de7969f4664da3cef1ccd83866c9f59378c3371"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/padraic/mockery/zipball/65d4ca18e15cb02eeb1e5336f884e46b9b905be0",
- "reference": "65d4ca18e15cb02eeb1e5336f884e46b9b905be0",
+ "url": "https://api.github.com/repos/padraic/mockery/zipball/4de7969f4664da3cef1ccd83866c9f59378c3371",
+ "reference": "4de7969f4664da3cef1ccd83866c9f59378c3371",
"shasum": ""
},
"require": {
@@ -4523,20 +4538,20 @@
"test double",
"testing"
],
- "time": "2016-09-30T12:09:40+00:00"
+ "time": "2016-12-19T14:50:55+00:00"
},
{
"name": "myclabs/deep-copy",
- "version": "1.5.5",
+ "version": "1.6.0",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "399c1f9781e222f6eb6cc238796f5200d1b7f108"
+ "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/399c1f9781e222f6eb6cc238796f5200d1b7f108",
- "reference": "399c1f9781e222f6eb6cc238796f5200d1b7f108",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/5a5a9fc8025a08d8919be87d6884d5a92520cefe",
+ "reference": "5a5a9fc8025a08d8919be87d6884d5a92520cefe",
"shasum": ""
},
"require": {
@@ -4565,7 +4580,7 @@
"object",
"object graph"
],
- "time": "2016-10-31T17:19:45+00:00"
+ "time": "2017-01-26T22:05:40+00:00"
},
{
"name": "phpdocumentor/reflection-common",
@@ -4778,16 +4793,16 @@
},
{
"name": "phpunit/php-code-coverage",
- "version": "4.0.3",
+ "version": "4.0.5",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "903fd6318d0a90b4770a009ff73e4a4e9c437929"
+ "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/903fd6318d0a90b4770a009ff73e4a4e9c437929",
- "reference": "903fd6318d0a90b4770a009ff73e4a4e9c437929",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c19cfc7cbb0e9338d8c469c7eedecc2a428b0971",
+ "reference": "c19cfc7cbb0e9338d8c469c7eedecc2a428b0971",
"shasum": ""
},
"require": {
@@ -4837,7 +4852,7 @@
"testing",
"xunit"
],
- "time": "2016-11-28T16:00:31+00:00"
+ "time": "2017-01-20T15:06:43+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -5022,16 +5037,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "5.7.4",
+ "version": "5.7.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "af91da3f2671006ff5d0628023de3b7ac4d1ef09"
+ "reference": "bee7755d964f8e56d6ecb79046480fd0320b686d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/af91da3f2671006ff5d0628023de3b7ac4d1ef09",
- "reference": "af91da3f2671006ff5d0628023de3b7ac4d1ef09",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bee7755d964f8e56d6ecb79046480fd0320b686d",
+ "reference": "bee7755d964f8e56d6ecb79046480fd0320b686d",
"shasum": ""
},
"require": {
@@ -5043,7 +5058,7 @@
"myclabs/deep-copy": "~1.3",
"php": "^5.6 || ^7.0",
"phpspec/prophecy": "^1.6.2",
- "phpunit/php-code-coverage": "^4.0.3",
+ "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",
@@ -5100,7 +5115,7 @@
"testing",
"xunit"
],
- "time": "2016-12-13T16:19:44+00:00"
+ "time": "2017-01-26T15:28:51+00:00"
},
{
"name": "phpunit/phpunit-mock-objects",
@@ -5676,16 +5691,16 @@
},
{
"name": "symfony/css-selector",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/css-selector.git",
- "reference": "a37b3359566415a91cba55a2d95820b3fa1a9658"
+ "reference": "722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/a37b3359566415a91cba55a2d95820b3fa1a9658",
- "reference": "a37b3359566415a91cba55a2d95820b3fa1a9658",
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d",
+ "reference": "722a87478a72d95dc2a3bcf41dc9c2d13fd4cb2d",
"shasum": ""
},
"require": {
@@ -5725,20 +5740,20 @@
],
"description": "Symfony CssSelector Component",
"homepage": "https://symfony.com",
- "time": "2016-11-03T08:04:31+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/dom-crawler",
- "version": "v3.1.8",
+ "version": "v3.1.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/dom-crawler.git",
- "reference": "51e979357eba65b1e6aac7cba75cf5aa6379b8f3"
+ "reference": "a950260ebc947578fba82a3222e2085d90682376"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/51e979357eba65b1e6aac7cba75cf5aa6379b8f3",
- "reference": "51e979357eba65b1e6aac7cba75cf5aa6379b8f3",
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/a950260ebc947578fba82a3222e2085d90682376",
+ "reference": "a950260ebc947578fba82a3222e2085d90682376",
"shasum": ""
},
"require": {
@@ -5781,20 +5796,20 @@
],
"description": "Symfony DomCrawler Component",
"homepage": "https://symfony.com",
- "time": "2016-12-10T14:24:45+00:00"
+ "time": "2017-01-02T20:31:54+00:00"
},
{
"name": "symfony/yaml",
- "version": "v3.2.1",
+ "version": "v3.2.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/yaml.git",
- "reference": "a7095af4b97a0955f85c8989106c249fa649011f"
+ "reference": "50eadbd7926e31842893c957eca362b21592a97d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/yaml/zipball/a7095af4b97a0955f85c8989106c249fa649011f",
- "reference": "a7095af4b97a0955f85c8989106c249fa649011f",
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/50eadbd7926e31842893c957eca362b21592a97d",
+ "reference": "50eadbd7926e31842893c957eca362b21592a97d",
"shasum": ""
},
"require": {
@@ -5836,7 +5851,7 @@
],
"description": "Symfony Yaml Component",
"homepage": "https://symfony.com",
- "time": "2016-12-10T10:07:06+00:00"
+ "time": "2017-01-03T13:51:32+00:00"
},
{
"name": "webmozart/assert",
diff --git a/database/migrations/2016_12_28_160024_add_icon_to_places.php b/database/migrations/2016_12_28_160024_add_icon_to_places.php
new file mode 100644
index 00000000..986a3970
--- /dev/null
+++ b/database/migrations/2016_12_28_160024_add_icon_to_places.php
@@ -0,0 +1,32 @@
+string('icon')->nullable();
+ });
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down()
+ {
+ Schema::table('places', function (Blueprint $table) {
+ $table->dropColumn('icon');
+ });
+ }
+}
diff --git a/package.json b/package.json
index be068807..967c06db 100644
--- a/package.json
+++ b/package.json
@@ -6,15 +6,23 @@
"dependencies": {
"alertify.js": "^1.0.12",
"autolinker": "^1.2.0",
+ "mapbox-gl": "^0.29.0",
"marked": "^0.3.6",
"normalize.css": "^5.0.0",
- "store2": "^2.3.2",
+ "webStorage": "^1.2.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
+ "babel-cli": "^6.18.0",
+ "babel-core": "^6.21.0",
+ "babel-loader": "^6.2.10",
+ "babel-preset-es2015": "^6.18.0",
+ "babel-preset-latest": "^6.16.0",
+ "babel-runtime": "^6.20.0",
"lint-staged": "^3.2.1",
"pre-commit": "^1.1.3",
- "stylelint-config-standard": "^14.0.0"
+ "stylelint-config-standard": "^14.0.0",
+ "webpack": "^2.2.0"
},
"private": true,
"scripts": {
diff --git a/public/assets/css/app.css.gz b/public/assets/css/app.css.gz
index a6811385..3441fdda 100644
Binary files a/public/assets/css/app.css.gz and b/public/assets/css/app.css.gz differ
diff --git a/public/assets/css/app.css.map b/public/assets/css/app.css.map
index 4e10bfa2..8109d64c 100644
--- a/public/assets/css/app.css.map
+++ b/public/assets/css/app.css.map
@@ -1 +1 @@
-{"version":3,"sources":["../../../resources/assets/sass/app.scss","../../../resources/assets/sass/layout.scss","../../../resources/assets/sass/styles.scss","../../../resources/assets/sass/pagination.scss","../../../resources/assets/sass/note-form.scss","../../../resources/assets/sass/mapbox.scss","../../../resources/assets/sass/contacts.scss"],"names":[],"mappings":"AAIA,KACI,sBACA,cAAgB,CACnB,qBAKG,kBAAoB,CACvB,KCVG,eACA,cACA,iBACA,kBACA,oBAAsB,CACzB,WAGG,iBAAmB,CACtB,SAGG,gBAAkB,CACrB,MAGG,oBACA,AADA,aACA,4BAAuB,AAAvB,6BAAuB,AAAvB,qBAAuB,CAC1B,eAGG,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,yBACA,AADA,8BACA,gBAAkB,CACrB,cAGG,oBACA,AADA,aACA,yBAAoB,AAApB,kBAAoB,CACvB,kBAGG,gBAAkB,CACrB,iBAGG,qBACA,WAAa,CAChB,aAGG,eACA,yBAA2B,CAC9B,OAGG,eAAiB,CACpB,cAGG,eAAiB,CACpB,WAGG,eACA,cACA,iBAAmB,CACtB,sBAGG,cAAgB,CACnB,sBAGG,iBACA,cAAgB,CACnB,KClEG,6JAWe,CAClB,EAGG,qBACA,wBACA,UAAY,CACf,gBAGG,kBAAoB,CACvB,MAGG,WACA,UAAY,CACf,OAGG,iBACA,iBAAmB,CACtB,WAGG,kBAAoB,CACvB,UAGG,YACA,WAAa,CAChB,YC1CG,WACA,YACA,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,yBACA,AADA,8BACA,yBAAoB,AAApB,kBAAoB,CACvB,eAGG,oBAAsB,CACzB,SCVG,oBACA,AADA,aACA,4BAAuB,AAAvB,6BAAuB,AAAvB,qBAAuB,CAC1B,0BAGG,aACI,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,cAAgB,CACnB,CAGL,0BACI,sBACI,UAAY,CACf,CAGL,eACI,UACA,oBACA,gBAAkB,CACrB,oDAIG,mBAAQ,AAAR,MAAQ,CACX,kBAGG,qBAAuB,CAC1B,QAGG,mBAAqB,CACxB,KCnCG,eACA,YAAc,CACjB,QAGG,y4HACA,wBACA,WACA,WAAa,CAChB,UAGG,kBACA,MACA,OACA,iBACA,cAAgB,CACnB,gBAGG,gBACA,gBAAkB,CACrB,SCtBG,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,eACA,6BAA+B,CAClC,aAGG,oBACA,YACA,YAAc,CACjB","file":"app.css"}
\ No newline at end of file
+{"version":3,"sources":["../../../resources/assets/sass/app.scss","../../../resources/assets/sass/layout.scss","../../../resources/assets/sass/styles.scss","../../../resources/assets/sass/pagination.scss","../../../resources/assets/sass/note-form.scss","../../../resources/assets/sass/mapbox.scss","../../../resources/assets/sass/contacts.scss"],"names":[],"mappings":"AAIA,KACI,sBACA,cAAe,CAClB,qBAKG,kBAAmB,CACtB,KCVG,eACA,cACA,iBACA,kBACA,oBAAqB,CACxB,WAGG,iBAAkB,CACrB,SAGG,gBAAiB,CACpB,MAGG,oBACA,AADA,aACA,4BAAsB,AAAtB,6BAAsB,AAAtB,qBAAsB,CACzB,eAGG,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,yBACA,AADA,8BACA,gBAAiB,CACpB,cAGG,oBACA,AADA,aACA,yBAAmB,AAAnB,kBAAmB,CACtB,kBAGG,gBAAiB,CACpB,iBAGG,qBACA,WAAY,CACf,aAGG,eACA,yBAA0B,CAC7B,OAGG,eAAgB,CACnB,cAGG,eAAgB,CACnB,WAGG,eACA,cACA,iBAAkB,CACrB,sBAGG,cAAe,CAClB,sBAGG,iBACA,cAAe,CAClB,KClEG,6JAWc,CACjB,EAGG,qBACA,wBACA,UAAW,CACd,gBAGG,kBAAmB,CACtB,MAGG,WACA,UAAW,CACd,OAGG,iBACA,iBAAkB,CACrB,WAGG,kBAAmB,CACtB,UAGG,YACA,WAAY,CACf,YC1CG,WACA,YACA,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,yBACA,AADA,8BACA,yBAAmB,AAAnB,kBAAmB,CACtB,eAGG,oBAAqB,CACxB,SCVG,oBACA,AADA,aACA,4BAAsB,AAAtB,6BAAsB,AAAtB,qBAAsB,CACzB,0BAGG,aACI,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,cAAe,CAClB,CAGL,0BACI,sBACI,UAAW,CACd,CAGL,eACI,UACA,oBACA,gBAAiB,CACpB,oDAIG,mBAAO,AAAP,MAAO,CACV,kBAGG,qBAAsB,CACzB,QAGG,mBAAoB,CACvB,KCnCG,eACA,YAAa,CAChB,QAGG,y4HACA,wBACA,WACA,WAAY,CACf,UAGG,kBACA,MACA,OACA,iBACA,cAAe,CAClB,gBAGG,gBACA,gBAAiB,CACpB,SCtBG,oBACA,AADA,aACA,8BACA,AADA,6BACA,AADA,mBACA,eACA,6BAA8B,CACjC,aAGG,oBACA,YACA,YAAa,CAChB","file":"app.css"}
\ No newline at end of file
diff --git a/public/assets/frontend/Autolinker.min.js b/public/assets/frontend/Autolinker.min.js
deleted file mode 100644
index a2b38921..00000000
--- a/public/assets/frontend/Autolinker.min.js
+++ /dev/null
@@ -1,10 +0,0 @@
-/*!
- * Autolinker.js
- * 1.4.0
- *
- * Copyright(c) 2016 Gregory Jacobs {{message}} {{message}} "+text+"e&&(null==r?(r="…",a=3):a=r.length,t=t.substring(0,e-a)+r),t},indexOf:function(t,e){if(Array.prototype.indexOf)return t.indexOf(e);for(var r=0,a=t.length;r=0;r--)e(t[r])===!0&&t.splice(r,1)},splitAndCapture:function(t,e){for(var r,a=[],n=0;r=e.exec(t);)a.push(t.substring(n,r.index)),a.push(r[0]),n=r.index+r[0].length;return a.push(t.substring(n)),a},trim:function(t){return t.replace(this.trimRegex,"")}},t.HtmlTag=t.Util.extend(Object,{whitespaceRegex:/\s+/,constructor:function(e){t.Util.assign(this,e),this.innerHtml=this.innerHtml||this.innerHTML},setTagName:function(t){return this.tagName=t,this},getTagName:function(){return this.tagName||""},setAttr:function(t,e){var r=this.getAttrs();return r[t]=e,this},getAttr:function(t){return this.getAttrs()[t]},setAttrs:function(e){var r=this.getAttrs();return t.Util.assign(r,e),this},getAttrs:function(){return this.attrs||(this.attrs={})},setClass:function(t){return this.setAttr("class",t)},addClass:function(e){for(var r,a=this.getClass(),n=this.whitespaceRegex,i=t.Util.indexOf,s=a?a.split(n):[],o=e.split(n);r=o.shift();)i(s,r)===-1&&s.push(r);return this.getAttrs()["class"]=s.join(" "),this},removeClass:function(e){for(var r,a=this.getClass(),n=this.whitespaceRegex,i=t.Util.indexOf,s=a?a.split(n):[],o=e.split(n);s.length&&(r=o.shift());){var c=i(s,r);c!==-1&&s.splice(c,1)}return this.getAttrs()["class"]=s.join(" "),this},getClass:function(){return this.getAttrs()["class"]||""},hasClass:function(t){return(" "+this.getClass()+" ").indexOf(" "+t+" ")!==-1},setInnerHtml:function(t){return this.innerHtml=t,this},getInnerHtml:function(){return this.innerHtml||""},toAnchorString:function(){var t=this.getTagName(),e=this.buildAttrsStr();return e=e?" "+e:"",["<",t,e,">",this.getInnerHtml(),"",t,">"].join("")},buildAttrsStr:function(){if(!this.attrs)return"";var t=this.getAttrs(),e=[];for(var r in t)t.hasOwnProperty(r)&&e.push(r+'="'+t[r]+'"');return e.join(" ")}}),t.RegexLib=function(){var t="A-Za-z\\xAA\\xB5\\xBA\\xC0-\\xD6\\xD8-\\xF6\\xF8-ˁˆ-ˑˠ-ˤˬˮͰ-ʹͶͷͺ-ͽͿΆΈ-ΊΌΎ-ΡΣ-ϵϷ-ҁҊ-ԯԱ-Ֆՙա-ևא-תװ-ײؠ-يٮٯٱ-ۓەۥۦۮۯۺ-ۼۿܐܒ-ܯݍ-ޥޱߊ-ߪߴߵߺࠀ-ࠕࠚࠤࠨࡀ-ࡘࢠ-ࢴऄ-हऽॐक़-ॡॱ-ঀঅ-ঌএঐও-নপ-রলশ-হঽৎড়ঢ়য়-ৡৰৱਅ-ਊਏਐਓ-ਨਪ-ਰਲਲ਼ਵਸ਼ਸਹਖ਼-ੜਫ਼ੲ-ੴઅ-ઍએ-ઑઓ-નપ-રલળવ-હઽૐૠૡૹଅ-ଌଏଐଓ-ନପ-ରଲଳଵ-ହଽଡ଼ଢ଼ୟ-ୡୱஃஅ-ஊஎ-ஐஒ-கஙசஜஞடணதந-பம-ஹௐఅ-ఌఎ-ఐఒ-నప-హఽౘ-ౚౠౡಅ-ಌಎ-ಐಒ-ನಪ-ಳವ-ಹಽೞೠೡೱೲഅ-ഌഎ-ഐഒ-ഺഽൎൟ-ൡൺ-ൿඅ-ඖක-නඳ-රලව-ෆก-ะาำเ-ๆກຂຄງຈຊຍດ-ທນ-ຟມ-ຣລວສຫອ-ະາຳຽເ-ໄໆໜ-ໟༀཀ-ཇཉ-ཬྈ-ྌက-ဪဿၐ-ၕၚ-ၝၡၥၦၮ-ၰၵ-ႁႎႠ-ჅჇჍა-ჺჼ-ቈቊ-ቍቐ-ቖቘቚ-ቝበ-ኈኊ-ኍነ-ኰኲ-ኵኸ-ኾዀዂ-ዅወ-ዖዘ-ጐጒ-ጕጘ-ፚᎀ-ᎏᎠ-Ᏽᏸ-ᏽᐁ-ᙬᙯ-ᙿᚁ-ᚚᚠ-ᛪᛱ-ᛸᜀ-ᜌᜎ-ᜑᜠ-ᜱᝀ-ᝑᝠ-ᝬᝮ-ᝰក-ឳៗៜᠠ-ᡷᢀ-ᢨᢪᢰ-ᣵᤀ-ᤞᥐ-ᥭᥰ-ᥴᦀ-ᦫᦰ-ᧉᨀ-ᨖᨠ-ᩔᪧᬅ-ᬳᭅ-ᭋᮃ-ᮠᮮᮯᮺ-ᯥᰀ-ᰣᱍ-ᱏᱚ-ᱽᳩ-ᳬᳮ-ᳱᳵᳶᴀ-ᶿḀ-ἕἘ-Ἕἠ-ὅὈ-Ὅὐ-ὗὙὛὝὟ-ώᾀ-ᾴᾶ-ᾼιῂ-ῄῆ-ῌῐ-ΐῖ-Ίῠ-Ῥῲ-ῴῶ-ῼⁱⁿₐ-ₜℂℇℊ-ℓℕℙ-ℝℤΩℨK-ℭℯ-ℹℼ-ℿⅅ-ⅉⅎↃↄⰀ-Ⱞⰰ-ⱞⱠ-ⳤⳫ-ⳮⳲⳳⴀ-ⴥⴧⴭⴰ-ⵧⵯⶀ-ⶖⶠ-ⶦⶨ-ⶮⶰ-ⶶⶸ-ⶾⷀ-ⷆⷈ-ⷎⷐ-ⷖⷘ-ⷞⸯ々〆〱-〵〻〼ぁ-ゖゝ-ゟァ-ヺー-ヿㄅ-ㄭㄱ-ㆎㆠ-ㆺㇰ-ㇿ㐀-䶵一-鿕ꀀ-ꒌꓐ-ꓽꔀ-ꘌꘐ-ꘟꘪꘫꙀ-ꙮꙿ-ꚝꚠ-ꛥꜗ-ꜟꜢ-ꞈꞋ-ꞭꞰ-ꞷꟷ-ꠁꠃ-ꠅꠇ-ꠊꠌ-ꠢꡀ-ꡳꢂ-ꢳꣲ-ꣷꣻꣽꤊ-ꤥꤰ-ꥆꥠ-ꥼꦄ-ꦲꧏꧠ-ꧤꧦ-ꧯꧺ-ꧾꨀ-ꨨꩀ-ꩂꩄ-ꩋꩠ-ꩶꩺꩾ-ꪯꪱꪵꪶꪹ-ꪽꫀꫂꫛ-ꫝꫠ-ꫪꫲ-ꫴꬁ-ꬆꬉ-ꬎꬑ-ꬖꬠ-ꬦꬨ-ꬮꬰ-ꭚꭜ-ꭥꭰ-ꯢ가-힣ힰ-ퟆퟋ-ퟻ豈-舘並-龎ff-stﬓ-ﬗיִײַ-ﬨשׁ-זּטּ-לּמּנּסּףּפּצּ-ﮱﯓ-ﴽﵐ-ﶏﶒ-ﷇﷰ-ﷻﹰ-ﹴﹶ-ﻼA-Za-zヲ-하-ᅦᅧ-ᅬᅭ-ᅲᅳ-ᅵ",e="0-9٠-٩۰-۹߀-߉०-९০-৯੦-੯૦-૯୦-୯௦-௯౦-౯೦-೯൦-൯෦-෯๐-๙໐-໙༠-༩၀-၉႐-႙០-៩᠐-᠙᥆-᥏᧐-᧙᪀-᪉᪐-᪙᭐-᭙᮰-᮹᱀-᱉᱐-᱙꘠-꘩꣐-꣙꤀-꤉꧐-꧙꧰-꧹꩐-꩙꯰-꯹0-9",r=t+e,a=new RegExp("["+r+".\\-]*["+r+"\\-]"),n=/(?:travelersinsurance|sandvikcoromant|kerryproperties|cancerresearch|weatherchannel|kerrylogistics|spreadbetting|international|wolterskluwer|lifeinsurance|construction|pamperedchef|scholarships|versicherung|bridgestone|creditunion|kerryhotels|investments|productions|blackfriday|enterprises|lamborghini|photography|motorcycles|williamhill|playstation|contractors|barclaycard|accountants|redumbrella|engineering|management|telefonica|protection|consulting|tatamotors|creditcard|vlaanderen|schaeffler|associates|properties|foundation|republican|bnpparibas|boehringer|eurovision|extraspace|industries|immobilien|university|technology|volkswagen|healthcare|restaurant|cuisinella|vistaprint|apartments|accountant|travelers|homedepot|institute|vacations|furniture|fresenius|insurance|christmas|bloomberg|solutions|barcelona|firestone|financial|kuokgroup|fairwinds|community|passagens|goldpoint|equipment|lifestyle|yodobashi|aquarelle|marketing|analytics|education|amsterdam|statefarm|melbourne|allfinanz|directory|microsoft|stockholm|montblanc|accenture|lancaster|landrover|everbank|istanbul|graphics|grainger|ipiranga|softbank|attorney|pharmacy|saarland|catering|airforce|yokohama|mortgage|frontier|mutuelle|stcgroup|memorial|pictures|football|symantec|cipriani|ventures|telecity|cityeats|verisign|flsmidth|boutique|cleaning|firmdale|clinique|clothing|redstone|infiniti|deloitte|feedback|services|broadway|plumbing|commbank|training|barclays|exchange|computer|brussels|software|delivery|barefoot|builders|business|bargains|engineer|holdings|download|security|helsinki|lighting|movistar|discount|hdfcbank|supplies|marriott|property|diamonds|capetown|partners|democrat|jpmorgan|bradesco|budapest|rexroth|zuerich|shriram|academy|science|support|youtube|singles|surgery|alibaba|statoil|dentist|schwarz|android|cruises|cricket|digital|markets|starhub|systems|courses|coupons|netbank|country|domains|corsica|network|neustar|realtor|lincoln|limited|schmidt|yamaxun|cooking|contact|auction|spiegel|liaison|leclerc|latrobe|lasalle|abogado|compare|lanxess|exposed|express|company|cologne|college|avianca|lacaixa|fashion|recipes|ferrero|komatsu|storage|wanggou|clubmed|sandvik|fishing|fitness|bauhaus|kitchen|flights|florist|flowers|watches|weather|temasek|samsung|bentley|forsale|channel|theater|frogans|theatre|okinawa|website|tickets|jewelry|gallery|tiffany|iselect|shiksha|brother|organic|wedding|genting|toshiba|origins|philips|hyundai|hotmail|hoteles|hosting|rentals|windows|cartier|bugatti|holiday|careers|whoswho|hitachi|panerai|caravan|reviews|guitars|capital|trading|hamburg|hangout|finance|stream|family|abbott|health|review|travel|report|hermes|hiphop|gratis|career|toyota|hockey|dating|repair|google|social|soccer|reisen|global|otsuka|giving|unicom|casino|photos|center|broker|rocher|orange|bostik|garden|insure|ryukyu|bharti|safety|physio|sakura|oracle|online|jaguar|gallup|piaget|tienda|futbol|pictet|joburg|webcam|berlin|office|juegos|kaufen|chanel|chrome|xihuan|church|tennis|circle|kinder|flickr|bayern|claims|clinic|viajes|nowruz|xperia|norton|yachts|studio|coffee|camera|sanofi|nissan|author|expert|events|comsec|lawyer|tattoo|viking|estate|villas|condos|realty|yandex|energy|emerck|virgin|vision|durban|living|school|coupon|london|taobao|natura|taipei|nagoya|luxury|walter|aramco|sydney|madrid|credit|maison|makeup|schule|market|anquan|direct|design|swatch|suzuki|alsace|vuelos|dental|alipay|voyage|shouji|voting|airtel|mutual|degree|supply|agency|museum|mobily|dealer|monash|select|mormon|active|moscow|racing|datsun|quebec|nissay|rodeo|email|gifts|works|photo|chloe|edeka|cheap|earth|vista|tushu|koeln|glass|shoes|globo|tunes|gmail|nokia|space|kyoto|black|ricoh|seven|lamer|sener|epson|cisco|praxi|trust|citic|crown|shell|lease|green|legal|lexus|ninja|tatar|gripe|nikon|group|video|wales|autos|gucci|party|nexus|guide|linde|adult|parts|amica|lixil|boats|azure|loans|locus|cymru|lotte|lotto|stada|click|poker|quest|dabur|lupin|nadex|paris|faith|dance|canon|place|gives|trade|skype|rocks|mango|cloud|boots|smile|final|swiss|homes|honda|media|horse|cards|deals|watch|bosch|house|pizza|miami|osaka|tours|total|xerox|coach|sucks|style|delta|toray|iinet|tools|money|codes|beats|tokyo|salon|archi|movie|baidu|study|actor|yahoo|store|apple|world|forex|today|bible|tmall|tirol|irish|tires|forum|reise|vegas|vodka|sharp|omega|weber|jetzt|audio|promo|build|bingo|chase|gallo|drive|dubai|rehab|press|solar|sale|beer|bbva|bank|band|auto|sapo|sarl|saxo|audi|asia|arte|arpa|army|yoga|ally|zara|scor|scot|sexy|seat|zero|seek|aero|adac|zone|aarp|maif|meet|meme|menu|surf|mini|mobi|mtpc|porn|desi|star|ltda|name|talk|navy|love|loan|live|link|news|limo|like|spot|life|nico|lidl|lgbt|land|taxi|team|tech|kred|kpmg|sony|song|kiwi|kddi|jprs|jobs|sohu|java|itau|tips|info|immo|icbc|hsbc|town|host|page|toys|here|help|pars|haus|guru|guge|tube|goog|golf|gold|sncf|gmbh|gift|ggee|gent|gbiz|game|vana|pics|fund|ford|ping|pink|fish|film|fast|farm|play|fans|fail|plus|skin|pohl|fage|moda|post|erni|dvag|prod|doha|prof|docs|viva|diet|luxe|site|dell|sina|dclk|show|qpon|date|vote|cyou|voto|read|coop|cool|wang|club|city|chat|cern|cash|reit|rent|casa|cars|care|camp|rest|call|cafe|weir|wien|rich|wiki|buzz|wine|book|bond|room|work|rsvp|shia|ruhr|blue|bing|shaw|bike|safe|xbox|best|pwc|mtn|lds|aig|boo|fyi|nra|nrw|ntt|car|gal|obi|zip|aeg|vin|how|one|ong|onl|dad|ooo|bet|esq|org|htc|bar|uol|ibm|ovh|gdn|ice|icu|uno|gea|ifm|bot|top|wtf|lol|day|pet|eus|wtc|ubs|tvs|aco|ing|ltd|ink|tab|abb|afl|cat|int|pid|pin|bid|cba|gle|com|cbn|ads|man|wed|ceb|gmo|sky|ist|gmx|tui|mba|fan|ski|iwc|app|pro|med|ceo|jcb|jcp|goo|dev|men|aaa|meo|pub|jlc|bom|jll|gop|jmp|mil|got|gov|win|jot|mma|joy|trv|red|cfa|cfd|bio|moe|moi|mom|ren|biz|aws|xin|bbc|dnp|buy|kfh|mov|thd|xyz|fit|kia|rio|rip|kim|dog|vet|nyc|bcg|mtr|bcn|bms|bmw|run|bzh|rwe|tel|stc|axa|kpn|fly|krd|cab|bnl|foo|crs|eat|tci|sap|srl|nec|sas|net|cal|sbs|sfr|sca|scb|csc|edu|new|xxx|hiv|fox|wme|ngo|nhk|vip|sex|frl|lat|yun|law|you|tax|soy|sew|om|ac|hu|se|sc|sg|sh|sb|sa|rw|ru|rs|ro|re|qa|py|si|pw|pt|ps|sj|sk|pr|pn|pm|pl|sl|sm|pk|sn|ph|so|pg|pf|pe|pa|zw|nz|nu|nr|np|no|nl|ni|ng|nf|sr|ne|st|nc|na|mz|my|mx|mw|mv|mu|mt|ms|mr|mq|mp|mo|su|mn|mm|ml|mk|mh|mg|me|sv|md|mc|sx|sy|ma|ly|lv|sz|lu|lt|ls|lr|lk|li|lc|lb|la|tc|kz|td|ky|kw|kr|kp|kn|km|ki|kh|tf|tg|th|kg|ke|jp|jo|jm|je|it|is|ir|tj|tk|tl|tm|iq|tn|to|io|in|im|il|ie|ad|sd|ht|hr|hn|hm|tr|hk|gy|gw|gu|gt|gs|gr|gq|tt|gp|gn|gm|gl|tv|gi|tw|tz|ua|gh|ug|uk|gg|gf|ge|gd|us|uy|uz|va|gb|ga|vc|ve|fr|fo|fm|fk|fj|vg|vi|fi|eu|et|es|er|eg|ee|ec|dz|do|dm|dk|vn|dj|de|cz|cy|cx|cw|vu|cv|cu|cr|co|cn|cm|cl|ck|ci|ch|cg|cf|cd|cc|ca|wf|bz|by|bw|bv|bt|bs|br|bo|bn|bm|bj|bi|ws|bh|bg|bf|be|bd|bb|ba|az|ax|aw|au|at|as|ye|ar|aq|ao|am|al|yt|ai|za|ag|af|ae|zm|id)\b/;return{alphaNumericCharsStr:r,domainNameRegex:a,tldRegex:n}}(),t.AnchorTagBuilder=t.Util.extend(Object,{constructor:function(t){t=t||{},this.newWindow=t.newWindow,this.truncate=t.truncate,this.className=t.className},build:function(e){return new t.HtmlTag({tagName:"a",attrs:this.createAttrs(e),innerHtml:this.processAnchorText(e.getAnchorText())})},createAttrs:function(t){var e={href:t.getAnchorHref()},r=this.createCssClass(t);return r&&(e["class"]=r),this.newWindow&&(e.target="_blank",e.rel="noopener noreferrer"),this.truncate&&this.truncate.length&&this.truncate.length
"}return'"+(escaped?code:escape(code,true))+"\n
\n"};Renderer.prototype.blockquote=function(quote){return"'+(escaped?code:escape(code,true))+"\n
\n"+quote+"
\n"};Renderer.prototype.html=function(html){return html};Renderer.prototype.heading=function(text,level,raw){return"
\n":"
\n"};Renderer.prototype.list=function(body,ordered){var type=ordered?"ol":"ul";return"<"+type+">\n"+body+""+type+">\n"};Renderer.prototype.listitem=function(text){return"\n"+"\n"+header+"\n"+"\n"+body+"\n"+"
\n"};Renderer.prototype.tablerow=function(content){return"\n"+content+" \n"};Renderer.prototype.tablecell=function(content,flags){var type=flags.header?"th":"td";var tag=flags.align?"<"+type+' style="text-align:'+flags.align+'">':"<"+type+">";return tag+content+""+type+">\n"};Renderer.prototype.strong=function(text){return""+text+""};Renderer.prototype.em=function(text){return""+text+""};Renderer.prototype.codespan=function(text){return""+text+"
"};Renderer.prototype.br=function(){return this.options.xhtml?"
":"
"};Renderer.prototype.del=function(text){return""+text+""};Renderer.prototype.link=function(href,title,text){if(this.options.sanitize){try{var prot=decodeURIComponent(unescape(href)).replace(/[^\w:]/g,"").toLowerCase()}catch(e){return""}if(prot.indexOf("javascript:")===0||prot.indexOf("vbscript:")===0){return""}}var out='"+text+"";return out};Renderer.prototype.image=function(href,title,text){var out='":">";return out};Renderer.prototype.text=function(text){return text};function Parser(options){this.tokens=[];this.token=null;this.options=options||marked.defaults;this.options.renderer=this.options.renderer||new Renderer;this.renderer=this.options.renderer;this.renderer.options=this.options}Parser.parse=function(src,options,renderer){var parser=new Parser(options,renderer);return parser.parse(src)};Parser.prototype.parse=function(src){this.inline=new InlineLexer(src.links,this.options,this.renderer);this.tokens=src.reverse();var out="";while(this.next()){out+=this.tok()}return out};Parser.prototype.next=function(){return this.token=this.tokens.pop()};Parser.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0};Parser.prototype.parseText=function(){var body=this.token.text;while(this.peek().type==="text"){body+="\n"+this.next().text}return this.inline.output(body)};Parser.prototype.tok=function(){switch(this.token.type){case"space":{return""}case"hr":{return this.renderer.hr()}case"heading":{return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text)}case"code":{return this.renderer.code(this.token.text,this.token.lang,this.token.escaped)}case"table":{var header="",body="",i,row,cell,flags,j;cell="";for(i=0;i
"+escape(e.message+"",true)+""}throw e}}marked.options=marked.setOptions=function(opt){merge(marked.defaults,opt);return marked};marked.defaults={gfm:true,tables:true,breaks:false,pedantic:false,sanitize:false,sanitizer:null,mangle:true,smartLists:false,silent:false,highlight:null,langPrefix:"lang-",smartypants:false,headerPrefix:"",renderer:new Renderer,xhtml:false};marked.Parser=Parser;marked.parser=Parser.parse;marked.Renderer=Renderer;marked.Lexer=Lexer;marked.lexer=Lexer.lex;marked.InlineLexer=InlineLexer;marked.inlineLexer=InlineLexer.output;marked.parse=marked;if(typeof module!=="undefined"&&typeof exports==="object"){module.exports=marked}else if(typeof define==="function"&&define.amd){define(function(){return marked})}else{this.marked=marked}}).call(function(){return this||(typeof window!=="undefined"?window:global)}()); \ No newline at end of file diff --git a/public/assets/frontend/marked.min.js.br b/public/assets/frontend/marked.min.js.br deleted file mode 100644 index aee08471..00000000 Binary files a/public/assets/frontend/marked.min.js.br and /dev/null differ diff --git a/public/assets/frontend/marked.min.js.gz b/public/assets/frontend/marked.min.js.gz deleted file mode 100644 index 23d8aff6..00000000 Binary files a/public/assets/frontend/marked.min.js.gz and /dev/null differ diff --git a/public/assets/frontend/store2.min.js b/public/assets/frontend/store2.min.js deleted file mode 100644 index 72aff0ab..00000000 --- a/public/assets/frontend/store2.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! store2 - v2.3.2 - 2015-10-27 -* Copyright (c) 2015 Nathan Bubna; Licensed MIT, GPL */ - -!function(a,b){var c={version:"2.3.2",areas:{},apis:{},inherit:function(a,b){for(var c in a)b.hasOwnProperty(c)||(b[c]=a[c]);return b},stringify:function(a){return void 0===a||"function"==typeof a?a+"":JSON.stringify(a)},parse:function(a){try{return JSON.parse(a)}catch(b){return a}},fn:function(a,b){c.storeAPI[a]=b;for(var d in c.apis)c.apis[d][a]=b},get:function(a,b){return a.getItem(b)},set:function(a,b,c){a.setItem(b,c)},remove:function(a,b){a.removeItem(b)},key:function(a,b){return a.key(b)},length:function(a){return a.length},clear:function(a){a.clear()},Store:function(a,b,d){var e=c.inherit(c.storeAPI,function(a,b,c){return 0===arguments.length?e.getAll():void 0!==b?e.set(a,b,c):"string"==typeof a||"number"==typeof a?e.get(a):a?e.setAll(a,b):e.clear()});e._id=a;try{var f="_safariPrivate_";b.setItem(f,"sucks"),e._area=b,b.removeItem(f)}catch(g){}return e._area||(e._area=c.inherit(c.storageAPI,{items:{},name:"fake"})),e._ns=d||"",c.areas[a]||(c.areas[a]=e._area),c.apis[e._ns+e._id]||(c.apis[e._ns+e._id]=e),e},storeAPI:{area:function(a,b){var d=this[a];return d&&d.area||(d=c.Store(a,b,this._ns),this[a]||(this[a]=d)),d},namespace:function(a,b){if(!a)return this._ns?this._ns.substring(0,this._ns.length-1):"";var d=a,e=this[d];return e&&e.namespace||(e=c.Store(this._id,this._area,this._ns+d+"."),this[d]||(this[d]=e),b||e.area("session",c.areas.session)),e},isFake:function(){return"fake"===this._area.name},toString:function(){return"store"+(this._ns?"."+this.namespace():"")+"["+this._id+"]"},has:function(a){return this._area.has?this._area.has(this._in(a)):!!(this._in(a)in this._area)},size:function(){return this.keys().length},each:function(a,b){for(var d=0,e=c.length(this._area);e>d;d++){var f=this._out(c.key(this._area,d));if(void 0!==f&&a.call(this,f,b||this.get(f))===!1)break;e>c.length(this._area)&&(e--,d--)}return b||this},keys:function(){return this.each(function(a,b){b.push(a)},[])},get:function(a,b){var d=c.get(this._area,this._in(a));return null!==d?c.parse(d):b||d},getAll:function(){return this.each(function(a,b){b[a]=this.get(a)},{})},set:function(a,b,d){var e=this.get(a);return null!=e&&d===!1?b:c.set(this._area,this._in(a),c.stringify(b),d)||e},setAll:function(a,b){var c,d;for(var e in a)d=a[e],this.set(e,d,b)!==d&&(c=!0);return c},remove:function(a){var b=this.get(a);return c.remove(this._area,this._in(a)),b},clear:function(){return this._ns?this.each(function(a){c.remove(this._area,this._in(a))},1):c.clear(this._area),this},clearAll:function(){var a=this._area;for(var b in c.areas)c.areas.hasOwnProperty(b)&&(this._area=c.areas[b],this.clear());return this._area=a,this},_in:function(a){return"string"!=typeof a&&(a=c.stringify(a)),this._ns?this._ns+a:a},_out:function(a){return this._ns?a&&0===a.indexOf(this._ns)?a.substring(this._ns.length):void 0:a}},storageAPI:{length:0,has:function(a){return this.items.hasOwnProperty(a)},key:function(a){var b=0;for(var c in this.items)if(this.has(c)&&a===b++)return c},setItem:function(a,b){this.has(a)||this.length++,this.items[a]=b},removeItem:function(a){this.has(a)&&(delete this.items[a],this.length--)},getItem:function(a){return this.has(a)?this.items[a]:null},clear:function(){for(var a in this.list)this.removeItem(a)},toString:function(){return this.length+" items in "+this.name+"Storage"}}};a.store&&(c.conflict=a.store);var d=c.Store("local",function(){try{return localStorage}catch(a){}}());d.local=d,d._=c,d.area("session",function(){try{return sessionStorage}catch(a){}}()),a.store=d,"function"==typeof b&&void 0!==b.amd?b(function(){return d}):"undefined"!=typeof module&&module.exports&&(module.exports=d)}(this,this.define); -//# sourceMappingURL=store2.min.js.map \ No newline at end of file diff --git a/public/assets/frontend/store2.min.js.br b/public/assets/frontend/store2.min.js.br deleted file mode 100644 index b607d188..00000000 Binary files a/public/assets/frontend/store2.min.js.br and /dev/null differ diff --git a/public/assets/frontend/store2.min.js.gz b/public/assets/frontend/store2.min.js.gz deleted file mode 100644 index 657123f1..00000000 Binary files a/public/assets/frontend/store2.min.js.gz and /dev/null differ diff --git a/public/assets/js/form-save.js b/public/assets/js/form-save.js deleted file mode 100644 index ae320e8f..00000000 --- a/public/assets/js/form-save.js +++ /dev/null @@ -1,2 +0,0 @@ -function getKeys(){for(var e=[],t=document.querySelectorAll("input[type=text], textarea"),r=0;r
r.x)&&S(n,t)&&(r=n,h=u)),n=n.next;return r}function m(t,e,r,n){var i=t;do null===i.z&&(i.z=v(i.x,i.y,e,r,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next;while(i!==t);i.prevZ.nextZ=null,i.prevZ=null,y(i)}function y(t){var e,r,n,i,o,a,s,u,l=1;do{for(r=t,t=null,o=null,a=0;r;){for(a++,n=r,s=0,e=0;e {{message}} {{message}}-1&&(s=o?s.split("\n").map(function(t){return" "+t}).join("\n").substr(2):"\n"+s.split("\n").map(function(t){return" "+t}).join("\n"))):s=t.stylize("[Circular]","special")),b(a)){if(o&&i.match(/^\d+$/))return s;a=JSON.stringify(""+i),a.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(a=a.substr(1,a.length-2),a=t.stylize(a,"name")):(a=a.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),a=t.stylize(a,"string"))}return a+": "+s}function f(t,e,r){var n=0,i=t.reduce(function(t,e){return n++,e.indexOf("\n")>=0&&n++,t+e.replace(/\u001b\[\d\d?m/g,"").length+1},0);return i>60?r[0]+(""===e?"":e+"\n ")+" "+t.join(",\n ")+" "+r[1]:r[0]+e+" "+t.join(", ")+" "+r[1]}function d(t){return Array.isArray(t)}function m(t){return"boolean"==typeof t}function y(t){return null===t}function v(t){return null==t}function g(t){return"number"==typeof t}function _(t){return"string"==typeof t}function x(t){return"symbol"==typeof t}function b(t){return void 0===t}function w(t){return E(t)&&"[object RegExp]"===M(t)}function E(t){return"object"==typeof t&&null!==t}function T(t){return E(t)&&"[object Date]"===M(t)}function S(t){return E(t)&&("[object Error]"===M(t)||t instanceof Error)}function z(t){return"function"==typeof t}function A(t){return null===t||"boolean"==typeof t||"number"==typeof t||"string"==typeof t||"symbol"==typeof t||"undefined"==typeof t}function M(t){return Object.prototype.toString.call(t)}function P(t){return t<10?"0"+t.toString(10):t.toString(10)}function I(){var t=new Date,e=[P(t.getHours()),P(t.getMinutes()),P(t.getSeconds())].join(":");return[t.getDate(),D[t.getMonth()],e].join(" ")}function L(t,e){return Object.prototype.hasOwnProperty.call(t,e)}var k=/%[sdj%]/g;n.format=function(t){if(!_(t)){for(var e=[],r=0;rs&&(r=s-u),l=r;l>=0;l--){for(var p=!0,h=0;hi&&(n=i)):n=i;var o=e.length;if(o%2!==0)throw new TypeError("Invalid hex string");n>o/2&&(n=o/2);for(var a=0;a0){var C=v.dist(g);if(C>2*l){var I=v.sub(v.sub(g)._mult(l/C)._round());a.distance+=I.dist(g),a.addCurrentVertex(I,a.distance,x.mult(1),0,0,!1,y),g=I}}var R=g&&_,D=R?r:_?T:S;if(R&&"round"===D&&(L