From 7cd304fae85ab5cba584beb6cc7734ca73c84724 Mon Sep 17 00:00:00 2001 From: Fabiano Date: Mon, 5 Feb 2018 15:37:46 -0200 Subject: [PATCH 1/7] Fix deixar de seguir em tela 1024px --- public/wp-content/themes/rhs/assets/scss/_single-page.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public/wp-content/themes/rhs/assets/scss/_single-page.scss b/public/wp-content/themes/rhs/assets/scss/_single-page.scss index bac673d9..af8e01f7 100644 --- a/public/wp-content/themes/rhs/assets/scss/_single-page.scss +++ b/public/wp-content/themes/rhs/assets/scss/_single-page.scss @@ -133,6 +133,13 @@ @media only screen and (max-width: 420px){ float: none !important; } + .publish{ + @media only screen and (width: 1024px){ + padding: 6px 0 !important; + margin-left: -37px; + width: 50% !important; + } + } } .share, .share a { text-decoration: none; From f5a11d7dd45424014227101cb1d62cbf92afde3b Mon Sep 17 00:00:00 2001 From: Pedro Naves Date: Wed, 7 Feb 2018 12:32:15 -0200 Subject: [PATCH 2/7] =?UTF-8?q?adicionando=20captcha=20para=20formul=C3=A1?= =?UTF-8?q?rio=20de=20contato?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../themes/rhs/assets/js/valida-form-registro.js | 9 ++++++++- public/wp-content/themes/rhs/contato.php | 12 +++++++++--- public/wp-content/themes/rhs/inc/captcha/captcha.php | 10 +++++++++- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js index 7ef3da09..a763b727 100644 --- a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js +++ b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js @@ -629,5 +629,12 @@ jQuery( function( $ ) { $('.remove-link').live("click", function() { $(this).closest('.links').remove(); }); + + document.getElementById("send_contact").disabled = true; + }); -}); \ No newline at end of file +}); + +function enableButton(){ + document.getElementById("send_contact").disabled = false; +} \ No newline at end of file diff --git a/public/wp-content/themes/rhs/contato.php b/public/wp-content/themes/rhs/contato.php index 28546706..a2dd83a5 100644 --- a/public/wp-content/themes/rhs/contato.php +++ b/public/wp-content/themes/rhs/contato.php @@ -2,10 +2,12 @@ /** * Template name: Contato */ +global $RHSCaptcha; +global $RHSTicket; +global $RHSUsers; ?> - - +

Contato

@@ -115,8 +117,12 @@
+ +
+ display_contact_captcha(); ?> +
- +
diff --git a/public/wp-content/themes/rhs/inc/captcha/captcha.php b/public/wp-content/themes/rhs/inc/captcha/captcha.php index d55ae95b..f91c0ee6 100644 --- a/public/wp-content/themes/rhs/inc/captcha/captcha.php +++ b/public/wp-content/themes/rhs/inc/captcha/captcha.php @@ -76,10 +76,18 @@ function display_captcha_secret_key_element() { ?> value=""/> + function display_recuperar_captcha() { + ?>
+
+ + Date: Wed, 7 Feb 2018 15:24:53 -0200 Subject: [PATCH 3/7] alterando de javascript de captcha (ref. #260) --- .../wp-content/themes/rhs/assets/js/valida-form-registro.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js index a763b727..b007b446 100644 --- a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js +++ b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js @@ -630,11 +630,11 @@ jQuery( function( $ ) { $(this).closest('.links').remove(); }); - document.getElementById("send_contact").disabled = true; - + $('#send_contact').prop("disabled",true) }); + }); function enableButton(){ - document.getElementById("send_contact").disabled = false; + jQuery('#send_contact').prop("disabled",false) } \ No newline at end of file From 249932bbc77c6e8ac39a4b064f829095c062b30f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Guimara=CC=83es?= Date: Wed, 7 Feb 2018 15:36:53 -0200 Subject: [PATCH 4/7] =?UTF-8?q?ReCaptcha=20no=20FC=20para=20usu=C3=A1rios?= =?UTF-8?q?=20n=C3=A3o-logados?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/wp-content/themes/rhs/contato.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/public/wp-content/themes/rhs/contato.php b/public/wp-content/themes/rhs/contato.php index a2dd83a5..6e283966 100644 --- a/public/wp-content/themes/rhs/contato.php +++ b/public/wp-content/themes/rhs/contato.php @@ -118,9 +118,12 @@
-
- display_contact_captcha(); ?> -
+ +
+ display_contact_captcha(); ?> +
+ +
From 75a419ea01b6f4ae022f1d5e7d927a2e2b79e209 Mon Sep 17 00:00:00 2001 From: Pedro Naves Date: Thu, 8 Feb 2018 10:00:19 -0200 Subject: [PATCH 5/7] =?UTF-8?q?corrigindo=20captcha=20com=20melhor=20valid?= =?UTF-8?q?a=C3=A7=C3=A3o=20(ref.=20#260)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../rhs/assets/js/valida-form-registro.js | 22 +++++++++++++------ public/wp-content/themes/rhs/contato.php | 8 +++---- .../themes/rhs/inc/captcha/captcha.php | 7 ------ 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js index b007b446..b9db7dc9 100644 --- a/public/wp-content/themes/rhs/assets/js/valida-form-registro.js +++ b/public/wp-content/themes/rhs/assets/js/valida-form-registro.js @@ -41,6 +41,7 @@ jQuery( function( $ ) { municipio: { required: true }, + hiddenRecaptcha: { required: function () { if (grecaptcha.getResponse() == '') { @@ -492,7 +493,7 @@ jQuery( function( $ ) { focusInvalid: true, focusCleanup: false, onkeyup: false, - ignore: ':hidden:not(.validate)', + ignore: '', rules: { name: { maxlength: 128, @@ -518,6 +519,15 @@ jQuery( function( $ ) { message: { maxlength: 500, required: true + }, + hiddenRecaptcha: { + required: function () { + if (grecaptcha.getResponse() == '') { + return true; + } else { + return false; + } + } } }, messages: { @@ -545,6 +555,9 @@ jQuery( function( $ ) { message: { maxlength: 'Tamanho maximo de 500 caracteres.', required: 'Preencha com a sua mensagem.', + }, + hiddenRecaptcha: { + required: "Valide o Captcha primeiro." } }, invalidHandler: function (event, validator) {}, @@ -630,11 +643,6 @@ jQuery( function( $ ) { $(this).closest('.links').remove(); }); - $('#send_contact').prop("disabled",true) }); -}); - -function enableButton(){ - jQuery('#send_contact').prop("disabled",false) -} \ No newline at end of file +}); \ No newline at end of file diff --git a/public/wp-content/themes/rhs/contato.php b/public/wp-content/themes/rhs/contato.php index 6e283966..d9352a05 100644 --- a/public/wp-content/themes/rhs/contato.php +++ b/public/wp-content/themes/rhs/contato.php @@ -118,11 +118,11 @@ - -
- display_contact_captcha(); ?> +
+
+ display_recuperar_captcha(); ?>
- +
diff --git a/public/wp-content/themes/rhs/inc/captcha/captcha.php b/public/wp-content/themes/rhs/inc/captcha/captcha.php index f91c0ee6..07cb71fd 100644 --- a/public/wp-content/themes/rhs/inc/captcha/captcha.php +++ b/public/wp-content/themes/rhs/inc/captcha/captcha.php @@ -81,13 +81,6 @@ function display_recuperar_captcha() {
-
- - Date: Thu, 8 Feb 2018 10:07:47 -0200 Subject: [PATCH 6/7] =?UTF-8?q?adicionando=20verifica=C3=A7=C3=A3o=20de=20?= =?UTF-8?q?usu=C3=A1rio=20logado=20para=20n=C3=A3o=20exibir=20captcha=20em?= =?UTF-8?q?=20contato=20(ref.=20#260)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/wp-content/themes/rhs/contato.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/public/wp-content/themes/rhs/contato.php b/public/wp-content/themes/rhs/contato.php index d9352a05..c9c19b73 100644 --- a/public/wp-content/themes/rhs/contato.php +++ b/public/wp-content/themes/rhs/contato.php @@ -117,12 +117,14 @@
- + +
display_recuperar_captcha(); ?>
-
+
+
From b3b95928c6137580f9e61add9ad52bcc22750964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Guimara=CC=83es?= Date: Thu, 8 Feb 2018 13:08:26 -0200 Subject: [PATCH 7/7] =?UTF-8?q?Atualiza=20vers=C3=A3o=20do=20WordPress?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- composer.json | 2 +- composer.lock | 301 ++++++++++++++++++++++++++++++-------------------- 2 files changed, 183 insertions(+), 120 deletions(-) diff --git a/composer.json b/composer.json index cacf2bb5..ad095d3b 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ } ], "require": { - "johnpbloch/wordpress": "4.8.*", + "johnpbloch/wordpress": "4.9.*", "twbs/bootstrap": "3.3.7", "wp-bootstrap/wp-bootstrap-navwalker" : "2.0.5", "cwspear/bootstrap-hover-dropdown" : "2.2.1", diff --git a/composer.lock b/composer.lock index 3059095c..b6718efd 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "hash": "931016fe9213f5ccc487f1369c764ea6", - "content-hash": "b90c1b84fa95ada3b6ae201894714283", + "content-hash": "24f58c0de15dcb8f6ddbcb01d21d23cb", "packages": [ { "name": "components/bootstrap", @@ -73,7 +72,7 @@ "responsive", "web" ], - "time": "2016-07-26 05:59:20" + "time": "2016-07-26T05:59:20+00:00" }, { "name": "components/jquery", @@ -115,20 +114,20 @@ ], "description": "jQuery JavaScript Library", "homepage": "http://jquery.com", - "time": "2017-03-21 07:01:49" + "time": "2017-03-21T07:01:49+00:00" }, { "name": "composer/installers", - "version": "v1.4.0", + "version": "v1.5.0", "source": { "type": "git", "url": "https://github.com/composer/installers.git", - "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b" + "reference": "049797d727261bf27f2690430d935067710049c2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/installers/zipball/9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b", - "reference": "9ce17fb70e9a38dd8acff0636a29f5cf4d575c1b", + "url": "https://api.github.com/repos/composer/installers/zipball/049797d727261bf27f2690430d935067710049c2", + "reference": "049797d727261bf27f2690430d935067710049c2", "shasum": "" }, "require": { @@ -140,7 +139,7 @@ }, "require-dev": { "composer/composer": "1.0.*@dev", - "phpunit/phpunit": "4.1.*" + "phpunit/phpunit": "^4.8.36" }, "type": "composer-plugin", "extra": { @@ -211,15 +210,18 @@ "lavalite", "lithium", "magento", + "majima", "mako", "mediawiki", "modulework", + "modx", "moodle", "osclass", "phpbb", "piwik", "ppi", "puppet", + "pxcms", "reindex", "roundcube", "shopware", @@ -232,7 +234,7 @@ "zend", "zikula" ], - "time": "2017-08-09 07:53:48" + "time": "2017-12-29T09:13:20+00:00" }, { "name": "cwspear/bootstrap-hover-dropdown", @@ -280,7 +282,7 @@ "hover", "twitter" ], - "time": "2015-12-01 23:35:57" + "time": "2015-12-01T23:35:57+00:00" }, { "name": "eternicode/bootstrap-datepicker", @@ -335,7 +337,7 @@ "bootstrap", "datepicker" ], - "time": "2017-07-06 12:14:34" + "time": "2017-07-06T12:14:34+00:00" }, { "name": "fortawesome/font-awesome", @@ -383,7 +385,7 @@ "font", "icon" ], - "time": "2016-10-24 15:52:54" + "time": "2016-10-24T15:52:54+00:00" }, { "name": "google/recaptcha", @@ -428,24 +430,24 @@ "recaptcha", "spam" ], - "time": "2017-03-09 18:44:34" + "time": "2017-03-09T18:44:34+00:00" }, { "name": "johnpbloch/wordpress", - "version": "4.8.2", + "version": "4.9.4", "source": { "type": "git", "url": "https://github.com/johnpbloch/wordpress.git", - "reference": "d500aae1793990e4874cf794b6cf88ce60a38918" + "reference": "5394373d26a8e304eb293c2a9359701a7ab03131" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/johnpbloch/wordpress/zipball/d500aae1793990e4874cf794b6cf88ce60a38918", - "reference": "d500aae1793990e4874cf794b6cf88ce60a38918", + "url": "https://api.github.com/repos/johnpbloch/wordpress/zipball/5394373d26a8e304eb293c2a9359701a7ab03131", + "reference": "5394373d26a8e304eb293c2a9359701a7ab03131", "shasum": "" }, "require": { - "johnpbloch/wordpress-core": "4.8.2", + "johnpbloch/wordpress-core": "4.9.4", "johnpbloch/wordpress-core-installer": "^1.0", "php": ">=5.3.2" }, @@ -467,32 +469,32 @@ "cms", "wordpress" ], - "time": "2017-09-19 22:27:16" + "time": "2018-02-06T16:42:18+00:00" }, { "name": "johnpbloch/wordpress-core", - "version": "4.8.2", + "version": "4.9.4", "source": { "type": "git", "url": "https://github.com/johnpbloch/wordpress-core.git", - "reference": "706faa0d7b6b57a25d4acd18331dd71dfa6b01cf" + "reference": "eef672cdb4ae9e846c464d4d03684b43d4108eda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/johnpbloch/wordpress-core/zipball/706faa0d7b6b57a25d4acd18331dd71dfa6b01cf", - "reference": "706faa0d7b6b57a25d4acd18331dd71dfa6b01cf", + "url": "https://api.github.com/repos/johnpbloch/wordpress-core/zipball/eef672cdb4ae9e846c464d4d03684b43d4108eda", + "reference": "eef672cdb4ae9e846c464d4d03684b43d4108eda", "shasum": "" }, "require": { "php": ">=5.3.2" }, "provide": { - "wordpress/core-implementation": "4.8.2" + "wordpress/core-implementation": "4.9.4" }, "type": "wordpress-core", "notification-url": "https://packagist.org/downloads/", "license": [ - "GPL-2.0+" + "GPL-2.0-or-later" ], "authors": [ { @@ -507,20 +509,20 @@ "cms", "wordpress" ], - "time": "2017-09-19 22:27:11" + "time": "2018-02-06T16:42:13+00:00" }, { "name": "johnpbloch/wordpress-core-installer", - "version": "1.0.0", + "version": "1.0.0.2", "source": { "type": "git", "url": "https://github.com/johnpbloch/wordpress-core-installer.git", - "reference": "e9e767f2d9f994f358c34b41def2c410ad8717f2" + "reference": "7941acd71725710a789daabe0557429da63e7ac6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/johnpbloch/wordpress-core-installer/zipball/e9e767f2d9f994f358c34b41def2c410ad8717f2", - "reference": "e9e767f2d9f994f358c34b41def2c410ad8717f2", + "url": "https://api.github.com/repos/johnpbloch/wordpress-core-installer/zipball/7941acd71725710a789daabe0557429da63e7ac6", + "reference": "7941acd71725710a789daabe0557429da63e7ac6", "shasum": "" }, "require": { @@ -556,7 +558,7 @@ "keywords": [ "wordpress" ], - "time": "2017-05-31 18:42:33" + "time": "2018-01-29T14:49:29+00:00" }, { "name": "kriswallsmith/assetic", @@ -633,7 +635,7 @@ "compression", "minification" ], - "time": "2016-11-11 18:43:20" + "time": "2016-11-11T18:43:20+00:00" }, { "name": "nicolasbize/magicsuggest", @@ -670,7 +672,56 @@ ], "description": "MagicSuggest is a multiple selection auto suggest combo box for Bootstrap 3.", "homepage": "http://nicolasbize.com/magicsuggest", - "time": "2014-10-16 23:17:26" + "time": "2014-10-16T23:17:26+00:00" + }, + { + "name": "nostalgiaz/bootstrap-switch", + "version": "3.3.4", + "source": { + "type": "git", + "url": "https://github.com/Bttstrp/bootstrap-switch.git", + "reference": "02721b769a6ac83eabe733fd9f08a2ddc7320756" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Bttstrp/bootstrap-switch/zipball/02721b769a6ac83eabe733fd9f08a2ddc7320756", + "reference": "02721b769a6ac83eabe733fd9f08a2ddc7320756", + "shasum": "" + }, + "type": "component", + "extra": { + "component": { + "name": "bootstrap-switch", + "files": [ + "dist/**" + ], + "scripts": [ + "dist/js/bootstrap-switch.js" + ], + "shim": { + "exports": "BootstrapSwitch" + } + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache License Version 2.0" + ], + "authors": [ + { + "name": "Mattia Larentis", + "homepage": "http://www.larentis.eu" + } + ], + "description": "Turn checkboxes and radio buttons into toggle switches.", + "homepage": "https://bttstrp.github.io/bootstrap-switch", + "keywords": [ + "JS", + "bootstrap", + "javascript", + "switch" + ], + "time": "2017-02-25T18:32:28+00:00" }, { "name": "phpmailer/phpmailer", @@ -747,7 +798,7 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", - "time": "2017-08-28 11:12:07" + "time": "2017-08-28T11:12:07+00:00" }, { "name": "robloach/component-installer", @@ -795,20 +846,20 @@ } ], "description": "Allows installation of Components via Composer.", - "time": "2015-08-10 12:35:38" + "time": "2015-08-10T12:35:38+00:00" }, { "name": "symfony/process", - "version": "v3.3.9", + "version": "v3.4.4", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0" + "reference": "09a5172057be8fc677840e591b17f385e58c7c0d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", - "reference": "b7666e9b438027a1ea0e1ee813ec5042d5d7f6f0", + "url": "https://api.github.com/repos/symfony/process/zipball/09a5172057be8fc677840e591b17f385e58c7c0d", + "reference": "09a5172057be8fc677840e591b17f385e58c7c0d", "shasum": "" }, "require": { @@ -817,7 +868,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -844,7 +895,7 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2018-01-29T09:03:43+00:00" }, { "name": "twbs/bootstrap", @@ -895,7 +946,7 @@ "responsive", "web" ], - "time": "2016-07-25 15:51:55" + "time": "2016-07-25T15:51:55+00:00" }, { "name": "wp-bootstrap/wp-bootstrap-navwalker", @@ -928,7 +979,7 @@ } ], "description": "A custom WordPress nav walker class to fully implement the Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager.", - "time": "2017-03-14 19:36:23" + "time": "2017-03-14T19:36:23+00:00" }, { "name": "wpackagist-plugin/akismet", @@ -972,15 +1023,15 @@ }, { "name": "wpackagist-plugin/jetpack", - "version": "5.3", + "version": "5.8", "source": { "type": "svn", "url": "https://plugins.svn.wordpress.org/jetpack/", - "reference": "tags/5.3" + "reference": "tags/5.8" }, "dist": { "type": "zip", - "url": "https://downloads.wordpress.org/plugin/jetpack.5.3.zip", + "url": "https://downloads.wordpress.org/plugin/jetpack.5.8.zip", "reference": null, "shasum": null }, @@ -1054,32 +1105,32 @@ "packages-dev": [ { "name": "doctrine/instantiator", - "version": "1.0.5", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", + "reference": "185b8868aa9bf7159f5f953ed5afb2d7fcdc3bda", "shasum": "" }, "require": { - "php": ">=5.3,<8.0-DEV" + "php": "^7.1" }, "require-dev": { "athletic/athletic": "~0.1.8", "ext-pdo": "*", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0" + "phpunit/phpunit": "^6.2.3", + "squizlabs/php_codesniffer": "^3.0.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -1104,41 +1155,44 @@ "constructor", "instantiate" ], - "time": "2015-06-14 21:17:01" + "time": "2017-07-22T11:58:36+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102" + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/8e6e04167378abf1ddb4d3522d8755c5fd90d102", - "reference": "8e6e04167378abf1ddb4d3522d8755c5fd90d102", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": "^5.6 || ^7.0" }, "require-dev": { - "doctrine/collections": "1.*", - "phpunit/phpunit": "~4.1" + "doctrine/collections": "^1.0", + "doctrine/common": "^2.6", + "phpunit/phpunit": "^4.1" }, "type": "library", "autoload": { "psr-4": { "DeepCopy\\": "src/DeepCopy/" - } + }, + "files": [ + "src/DeepCopy/deep_copy.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "description": "Create deep copies (clones) of your objects", - "homepage": "https://github.com/myclabs/DeepCopy", "keywords": [ "clone", "copy", @@ -1146,7 +1200,7 @@ "object", "object graph" ], - "time": "2017-04-12 18:52:22" + "time": "2017-10-19T19:58:43+00:00" }, { "name": "phpdocumentor/reflection-common", @@ -1200,33 +1254,39 @@ "reflection", "static analysis" ], - "time": "2017-09-11 18:02:19" + "time": "2017-09-11T18:02:19+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "4.1.1", + "version": "4.3.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2" + "reference": "94fd0001232e47129dd3504189fa1c7225010d08" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/2d3d238c433cf69caeb4842e97a3223a116f94b2", - "reference": "2d3d238c433cf69caeb4842e97a3223a116f94b2", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94fd0001232e47129dd3504189fa1c7225010d08", + "reference": "94fd0001232e47129dd3504189fa1c7225010d08", "shasum": "" }, "require": { "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0@dev", + "phpdocumentor/reflection-common": "^1.0.0", "phpdocumentor/type-resolver": "^0.4.0", "webmozart/assert": "^1.0" }, "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^4.4" + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.x-dev" + } + }, "autoload": { "psr-4": { "phpDocumentor\\Reflection\\": [ @@ -1245,7 +1305,7 @@ } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2017-08-30 18:51:59" + "time": "2017-11-30T07:14:17+00:00" }, { "name": "phpdocumentor/type-resolver", @@ -1292,20 +1352,20 @@ "email": "me@mikevanriel.com" } ], - "time": "2017-07-14 14:27:02" + "time": "2017-07-14T14:27:02+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.7.2", + "version": "1.7.3", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6" + "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", - "reference": "c9b8c6088acd19d769d4cc0ffa60a9fe34344bd6", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", + "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", "shasum": "" }, "require": { @@ -1317,7 +1377,7 @@ }, "require-dev": { "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8 || ^5.6.5" + "phpunit/phpunit": "^4.8.35 || ^5.7" }, "type": "library", "extra": { @@ -1355,7 +1415,7 @@ "spy", "stub" ], - "time": "2017-09-04 11:05:03" + "time": "2017-11-24T13:59:53+00:00" }, { "name": "phpunit/php-code-coverage", @@ -1418,20 +1478,20 @@ "testing", "xunit" ], - "time": "2017-04-02 07:44:40" + "time": "2017-04-02T07:44:40+00:00" }, { "name": "phpunit/php-file-iterator", - "version": "1.4.2", + "version": "1.4.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-file-iterator.git", - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5" + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/3cc8f69b3028d0f96a9078e6295d86e9bf019be5", - "reference": "3cc8f69b3028d0f96a9078e6295d86e9bf019be5", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/730b01bc3e867237eaac355e06a36b85dd93a8b4", + "reference": "730b01bc3e867237eaac355e06a36b85dd93a8b4", "shasum": "" }, "require": { @@ -1465,7 +1525,7 @@ "filesystem", "iterator" ], - "time": "2016-10-03 07:40:28" + "time": "2017-11-27T13:52:08+00:00" }, { "name": "phpunit/php-text-template", @@ -1506,7 +1566,7 @@ "keywords": [ "template" ], - "time": "2015-06-21 13:50:34" + "time": "2015-06-21T13:50:34+00:00" }, { "name": "phpunit/php-timer", @@ -1555,20 +1615,20 @@ "keywords": [ "timer" ], - "time": "2017-02-26 11:10:40" + "time": "2017-02-26T11:10:40+00:00" }, { "name": "phpunit/php-token-stream", - "version": "2.0.1", + "version": "2.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-token-stream.git", - "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0" + "reference": "791198a2c6254db10131eecfe8c06670700904db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/9a02332089ac48e704c70f6cefed30c224e3c0b0", - "reference": "9a02332089ac48e704c70f6cefed30c224e3c0b0", + "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/791198a2c6254db10131eecfe8c06670700904db", + "reference": "791198a2c6254db10131eecfe8c06670700904db", "shasum": "" }, "require": { @@ -1604,7 +1664,7 @@ "keywords": [ "tokenizer" ], - "time": "2017-08-20 05:47:52" + "time": "2017-11-27T05:48:46+00:00" }, { "name": "phpunit/phpunit", @@ -1687,7 +1747,7 @@ "testing", "xunit" ], - "time": "2016-10-03 13:04:15" + "time": "2016-10-03T13:04:15+00:00" }, { "name": "phpunit/phpunit-mock-objects", @@ -1746,7 +1806,7 @@ "mock", "xunit" ], - "time": "2017-06-30 09:13:00" + "time": "2017-06-30T09:13:00+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", @@ -1791,7 +1851,7 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04 06:30:41" + "time": "2017-03-04T06:30:41+00:00" }, { "name": "sebastian/comparator", @@ -1855,7 +1915,7 @@ "compare", "equality" ], - "time": "2017-01-29 09:50:25" + "time": "2017-01-29T09:50:25+00:00" }, { "name": "sebastian/diff", @@ -1907,7 +1967,7 @@ "keywords": [ "diff" ], - "time": "2017-05-22 07:24:03" + "time": "2017-05-22T07:24:03+00:00" }, { "name": "sebastian/environment", @@ -1957,7 +2017,7 @@ "environment", "hhvm" ], - "time": "2016-11-26 07:53:53" + "time": "2016-11-26T07:53:53+00:00" }, { "name": "sebastian/exporter", @@ -2024,7 +2084,7 @@ "export", "exporter" ], - "time": "2016-06-17 09:04:28" + "time": "2016-06-17T09:04:28+00:00" }, { "name": "sebastian/global-state", @@ -2075,7 +2135,7 @@ "keywords": [ "global state" ], - "time": "2015-10-12 03:26:01" + "time": "2015-10-12T03:26:01+00:00" }, { "name": "sebastian/object-enumerator", @@ -2121,7 +2181,7 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2016-01-28 13:25:10" + "time": "2016-01-28T13:25:10+00:00" }, { "name": "sebastian/recursion-context", @@ -2174,7 +2234,7 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2016-10-03 07:41:43" + "time": "2016-10-03T07:41:43+00:00" }, { "name": "sebastian/resource-operations", @@ -2216,7 +2276,7 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", - "time": "2015-07-28 20:34:47" + "time": "2015-07-28T20:34:47+00:00" }, { "name": "sebastian/version", @@ -2259,27 +2319,30 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", - "time": "2016-10-03 07:35:21" + "time": "2016-10-03T07:35:21+00:00" }, { "name": "symfony/yaml", - "version": "v3.3.9", + "version": "v3.4.4", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "1d8c2a99c80862bdc3af94c1781bf70f86bccac0" + "reference": "eab73b6c21d27ae4cd037c417618dfd4befb0bfe" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/1d8c2a99c80862bdc3af94c1781bf70f86bccac0", - "reference": "1d8c2a99c80862bdc3af94c1781bf70f86bccac0", + "url": "https://api.github.com/repos/symfony/yaml/zipball/eab73b6c21d27ae4cd037c417618dfd4befb0bfe", + "reference": "eab73b6c21d27ae4cd037c417618dfd4befb0bfe", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, + "conflict": { + "symfony/console": "<3.4" + }, "require-dev": { - "symfony/console": "~2.8|~3.0" + "symfony/console": "~3.4|~4.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -2287,7 +2350,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.3-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -2314,20 +2377,20 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2017-07-29 21:54:42" + "time": "2018-01-21T19:05:02+00:00" }, { "name": "webmozart/assert", - "version": "1.2.0", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" + "reference": "0df1908962e7a3071564e857d86874dad1ef204a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", + "url": "https://api.github.com/repos/webmozart/assert/zipball/0df1908962e7a3071564e857d86874dad1ef204a", + "reference": "0df1908962e7a3071564e857d86874dad1ef204a", "shasum": "" }, "require": { @@ -2364,7 +2427,7 @@ "check", "validate" ], - "time": "2016-11-23 20:04:58" + "time": "2018-01-29T19:49:41+00:00" } ], "aliases": [],