Post Expirator - Version 2.7.4

Version Description

Download this release

Release Info

Developer andergmartins
Plugin Icon 128x128 Post Expirator
Version 2.7.4
Comparing to
See all releases

Code changes from version 2.7.3 to 2.7.4

assets/css/edit.css CHANGED
@@ -38,3 +38,8 @@ div.pe-qe-fields > div {
38
  .post-expire-col .dashicons {
39
  cursor: help;
40
  }
 
 
 
 
 
38
  .post-expire-col .dashicons {
39
  cursor: help;
40
  }
41
+
42
+ .pe-qe-fields input.invalid {
43
+ border: 2px solid #b15b5b;
44
+ background-color: #ffdede;
45
+ }
assets/js/admin-edit.js CHANGED
@@ -44,6 +44,7 @@
44
  $bulk_row.find('.pe-qe-fields select[name="expirationdate_status"]').prop('selectedIndex', 0);
45
  $bulk_row.find('.pe-qe-fields .post-expirator-date-fields').hide();
46
  $bulk_row.find('.pe-qe-fields .pe-category-list').hide();
 
47
  };
48
 
49
  // we create a copy of the WP inline edit post function
@@ -118,51 +119,52 @@
118
  }
119
  };
120
 
121
- $('#bulk_edit').on('click', function () {
 
 
122
 
123
- // define the bulk edit row
124
- var $bulk_row = $('#bulk-edit');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
 
126
- // get the selected post ids that are being edited
127
- var $post_ids = [];
128
- $bulk_row.find('#bulk-titles').children().each(function () {
129
- $post_ids.push($(this).attr('id').replace(/^(ttle)/i, ''));
130
- });
131
-
132
- // get the custom fields
133
- var $expirationdate_month = $bulk_row.find('select[name="expirationdate_month"]').val();
134
- var $expirationdate_day = $bulk_row.find('input[name="expirationdate_day"]').val();
135
- var $expirationdate_year = $bulk_row.find('input[name="expirationdate_year"]').val();
136
- var $expirationdate_hour = $bulk_row.find('input[name="expirationdate_hour"]').val();
137
- var $expirationdate_minute = $bulk_row.find('input[name="expirationdate_minute"]').val();
138
- var $expirationdate_status = $bulk_row.find('select[name="expirationdate_status"]').val();
139
- var $expirationdate_expireType = $bulk_row.find('select[name="expirationdate_expiretype"]').val();
140
- var expirationdate_category = [];
141
- $bulk_row.find('input[name="expirationdate_category[]"]:checked').each(function () {
142
- expirationdate_category.push($(this).val());
143
- });
144
-
145
- // save the data
146
- $.ajax({
147
- url: ajaxurl, // this is a variable that WordPress has already defined for us
148
- type: 'POST',
149
- async: false,
150
- cache: false,
151
- data: {
152
- action: config.ajax.bulk_edit,
153
- post_ids: $post_ids, // and these are the 2 parameters we're passing to our function
154
- expirationdate_month: $expirationdate_month,
155
- expirationdate_day: $expirationdate_day,
156
- expirationdate_year: $expirationdate_year,
157
- expirationdate_hour: $expirationdate_hour,
158
- expirationdate_minute: $expirationdate_minute,
159
- expirationdate_status: $expirationdate_status,
160
- expirationdate_expiretype: $expirationdate_expireType,
161
- expirationdate_category: expirationdate_category,
162
- nonce: config.ajax.nonce
163
  }
164
- });
165
 
166
- });
 
 
 
 
 
 
167
 
168
- })(jQuery, config);
 
 
 
 
 
 
 
 
 
44
  $bulk_row.find('.pe-qe-fields select[name="expirationdate_status"]').prop('selectedIndex', 0);
45
  $bulk_row.find('.pe-qe-fields .post-expirator-date-fields').hide();
46
  $bulk_row.find('.pe-qe-fields .pe-category-list').hide();
47
+ $bulk_row.find('.pe-qe-fields input').removeClass('invalid');
48
  };
49
 
50
  // we create a copy of the WP inline edit post function
119
  }
120
  };
121
 
122
+ function validateBulkFields()
123
+ {
124
+ const $statusField = $('#bulk-edit').find('.pe-qe-fields select[name="expirationdate_status"]');
125
 
126
+ if ($statusField.val() === 'no-change' || $statusField.val() === 'remove-only') {
127
+ return true;
128
+ }
129
+
130
+ const fields = [
131
+ 'expirationdate_day',
132
+ 'expirationdate_year',
133
+ 'expirationdate_hour',
134
+ 'expirationdate_minute'
135
+ ];
136
+
137
+ let isValid = true;
138
+
139
+ let $field;
140
+ let value;
141
+ for (let i = 0; i < fields.length; i++) {
142
+ $field = $('#bulk-edit').find('.pe-qe-fields input[name="' + fields[i] + '"]');
143
+
144
+ $field.removeClass('invalid');
145
 
146
+ value = parseInt($field.val());
147
+ if (isNaN(value) || value <= 0) {
148
+ $field.addClass('invalid');
149
+ isValid = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  }
151
+ }
152
 
153
+ return isValid;
154
+ }
155
+
156
+ $('.pe-qe-fields input[name="expirationdate_day"]').on('blur', validateBulkFields);
157
+ $('.pe-qe-fields input[name="expirationdate_year"]').on('blur', validateBulkFields);
158
+ $('.pe-qe-fields input[name="expirationdate_hour"]').on('blur', validateBulkFields);
159
+ $('.pe-qe-fields input[name="expirationdate_minute"]').on('blur', validateBulkFields);
160
 
161
+ $('#bulk_edit').on('click', function(e) {
162
+ const isValid = validateBulkFields();
163
+ console.log(isValid);
164
+ if (! isValid) {
165
+ e.preventDefault();
166
+
167
+ return false;
168
+ }
169
+ });
170
+ })(jQuery, postexpiratorConfig);
assets/js/gutenberg-panel.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./assets/jsx/gutenberg-panel.jsx"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","wp","config","registerPlugin","PluginDocumentSettingPanel","PanelRow","DateTimePicker","CheckboxControl","SelectControl","FormTokenField","Spinner","Fragment","Component","decodeEntities","isEmpty","keys","compact","window","postExpiratorPanelConfig","plugins","editPost","components","element","htmlEntities","lodash","render","arguments","state","categoriesList","catIdVsName","postMeta","this","attributes","data","select","getEditedPostAttribute","postType","getCurrentPostType","setPostMeta","newMeta","dispatch","meta","enabled","date","Date","expireAction","getExpireType","categories","includes","getCategories","browserTimezoneOffset","getTimezoneOffset","wpTimezoneOffset","timezone_offset","setTime","default_categories","default_date","parseInt","taxonomy","defaults","setState","getTime","apiFetch","path","url","addQueryArgs","per_page","then","list","forEach","cat","id","strings","category","context","taxAttributes","rest_base","terms","term","attribute","getDate","actionsList","label","draft","delete","trash","private","stick","unstick","_","union","categoryReplace","categoryAdd","categoryRemove","selectedCats","map","title","postExpirator","icon","initialOpen","className","enablePostExpiration","checked","onChange","currentDate","is_12_hours","howToExpire","options","loading","expirationCategories","suggestions","selectCategories","maxSuggestions","typeNew","typeOld","expireType","categoriesNew","categoriesOld","length","tokens","some","token","newDate","parse"],"mappings":"aACE,IAAIA,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUC,QAGnC,IAAIC,EAASJ,EAAiBE,GAAY,CACzCG,EAAGH,EACHI,GAAG,EACHH,QAAS,IAUV,OANAI,EAAQL,GAAUM,KAAKJ,EAAOD,QAASC,EAAQA,EAAOD,QAASF,GAG/DG,EAAOE,GAAI,EAGJF,EAAOD,QAKfF,EAAoBQ,EAAIF,EAGxBN,EAAoBS,EAAIV,EAGxBC,EAAoBU,EAAI,SAASR,EAASS,EAAMC,GAC3CZ,EAAoBa,EAAEX,EAASS,IAClCG,OAAOC,eAAeb,EAASS,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEZ,EAAoBkB,EAAI,SAAShB,GACX,oBAAXiB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAeb,EAASiB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAeb,EAAS,aAAc,CAAEmB,OAAO,KAQvDrB,EAAoBsB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQrB,EAAoBqB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,iBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFA1B,EAAoBkB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOrB,EAAoBU,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRzB,EAAoB6B,EAAI,SAAS1B,GAChC,IAAIS,EAAST,GAAUA,EAAOqB,WAC7B,WAAwB,OAAOrB,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAH,EAAoBU,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRZ,EAAoBa,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG/B,EAAoBkC,EAAI,GAIjBlC,EAAoBA,EAAoBmC,EAAI,G,mEClF1CC,EAAIC,EAEJC,EACAC,EAHY,EAIZC,EAAUC,EAAgBC,EAAiBC,EAAeC,EAAgBC,EAJ9D,EAKZC,EAAUC,EACVC,EANY,EAOZC,EAASC,EAAMC,E,ksBAPff,EA2SRgB,OAAOhB,GA3SKC,EA2SDe,OAAOC,yBAzSVf,EAAkBF,EAAGkB,QAArBhB,eACAC,EAA8BH,EAAGmB,SAAjChB,2BAHY,EAIyEH,EAAGoB,WAAxFhB,EAJY,EAIZA,SAAUC,EAJE,EAIFA,eAAgBC,EAJd,EAIcA,gBAAiBC,EAJ/B,EAI+BA,cAAeC,EAJ9C,EAI8CA,eAAgBC,EAJ9D,EAI8DA,QAJ9D,EAKWT,EAAGqB,QAA1BX,EALY,EAKZA,SAAUC,EALE,EAKFA,UACVC,EAAkBZ,EAAGsB,aAArBV,eANY,EAOcW,OAA1BV,EAPY,EAOZA,QAASC,EAPG,EAOHA,KAAMC,EAPH,EAOGA,QA+RtBb,EAAe,wBAAyB,CACpCsB,OAvSe,YAUf,aAAc,0EACDC,YADC,OAGV,EAAKC,MAAQ,CACTC,eAAgB,GAChBC,YAAa,IALP,EAVC,O,yTAAA,sDAmBM,WAGXC,GAFeC,KAAKJ,MAAnBK,WAEU/B,EAAGgC,KAAKC,OAAO,eAAeC,uBAAuB,SAChEC,EAAWnC,EAAGgC,KAAKC,OAAO,eAAeG,qBACzCC,EAAc,SAACC,GAAD,OAAatC,EAAGgC,KAAKO,SAAS,eAAepB,SAAS,CAACqB,KAAMF,KAE7EG,GAAU,EACVC,EAAO,IAAIC,KAEXC,EAAed,KAAKe,cAAchB,GAElCiB,EAAa,GACbF,EAAaG,SAAS,cACtBD,EAAahB,KAAKkB,cAAcnB,IAGhCA,EAAS,4BAAsE,UAAxCA,EAAS,6BAChDY,GAAU,GAGd,IAAIQ,EAAmD,GAA3BP,EAAKQ,oBAC7BC,EAA4C,GAAzBlD,EAAOmD,gBAE1BvB,EAAS,oBACTa,EAAKW,QAAoF,KAA3ExB,EAAS,oBAAsBoB,EAAwBE,KAErEL,EAAa7C,EAAOqD,mBAChBrD,EAAOsD,cACPb,EAAKW,QAAqF,KAA5EG,SAASvD,EAAOsD,cAAgBN,EAAwBE,IAG1EV,GAAU,GAGd,IAAIgB,EAAWxD,EAAOyD,SAASD,UAAY,WAE3C3B,KAAK6B,SAAS,CACVlB,QAASA,EACTC,KAAMA,EACNE,aAAcA,EACdE,WAAYA,EACZW,SAAUA,IAIdpB,EAAY,CAAC,0BAA4BI,EAAU,QAAU,KAC7DJ,EAAY,CAAC,mBAAqBK,EAAKkB,UAAa,MACpDvB,EAAY,CAAC,wBAAyBO,IACtCP,EAAY,CAAC,8BAA+BS,IAE5C,IAAInB,EAAiB,GACjBC,EAAc,IAEZ6B,GAAyB,SAAbtB,GAAqC,aAAbsB,EACtCzD,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAa,mBAAoB,CAACC,UAAW,MAC3DC,MAAK,SAACC,GACLA,EAAKC,SAAQ,SAAAC,GACT1C,EAAe0C,EAAI9F,MAAQ8F,EAC3BzC,EAAYyC,EAAIC,IAAMD,EAAI9F,QAE9B,EAAKoF,SAAS,CAAChC,eAAgBA,EAAgBC,YAAaA,EAAa6B,SAAUxD,EAAOsE,QAAQC,cAElF,SAAbrC,GACPnC,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAP,oBAAwCP,EAAY,CAACgB,QAAS,WACrEP,MAAK,SAACQ,GAEL1E,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAP,SAA6BU,EAAcC,UAAa,CAACF,QAAS,WACzEP,MAAK,SAACU,GACLA,EAAMR,SAAQ,SAAAS,GACVlD,EAAef,EAAeiE,EAAKtG,OAASsG,EAC5CjD,EAAYiD,EAAKP,IAAM1D,EAAeiE,EAAKtG,SAE/C,EAAKoF,SAAS,CACVhC,eAAgBA,EAChBC,YAAaA,EACb6B,SAAU7C,EAAe8D,EAAcnG,gBAlG5C,2CA0GM,MAC4CuD,KAAKJ,MAA3De,EADU,EACVA,QAASC,EADC,EACDA,KAAME,EADL,EACKA,aAAcE,EADnB,EACmBA,WAAYgC,EAD/B,EAC+BA,UAC1CzC,EAAc,SAACC,GAAD,OAAatC,EAAGgC,KAAKO,SAAS,eAAepB,SAAS,CAACqB,KAAMF,KAC3ET,EAAW7B,EAAGgC,KAAKC,OAAO,eAAeC,uBAAuB,QAEtE,OAAQ4C,GACJ,IAAK,UACDzC,EAAY,CAAC,0BAA4BI,EAAU,QAAU,KAGxDZ,EAAS,qBACVQ,EAAY,CAAC,mBAAoBP,KAAKiD,QAAQrC,KAElD,MACJ,IAAK,OACmB,iBAATA,GACPL,EAAY,CAAC,mBAAoBP,KAAKiD,QAAQrC,KAElD,MACJ,IAAK,SACDL,EAAY,CAAC,wBAAyBO,IACjCA,EAAaG,SAAS,aACvBV,EAAY,CAAC,8BAA+B,KAEhD,MACJ,IAAK,WACDA,EAAY,CAAC,8BAA+BS,OApIzC,+BA0IN,aACiChB,KAAKJ,MAApCC,EADF,EACEA,eAAgBC,EADlB,EACkBA,YADlB,EAEuDE,KAAKJ,MAA1De,EAFF,EAEEA,QAASC,EAFX,EAEWA,KAAME,EAFjB,EAEiBA,aAAcE,EAF/B,EAE+BA,WAAYW,EAF3C,EAE2CA,SAE1CtB,EAAWnC,EAAGgC,KAAKC,OAAO,eAAeG,qBAE3C4C,EAAc,CACd,CAACC,MAAOhF,EAAOsE,QAAQW,MAAOjG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQY,OAAQlG,MAAO,UACtC,CAACgG,MAAOhF,EAAOsE,QAAQa,MAAOnG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQc,QAASpG,MAAO,WACvC,CAACgG,MAAOhF,EAAOsE,QAAQe,MAAOrG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQgB,QAAStG,MAAO,YAG1B,SAAbkD,IACA6C,EAAcQ,EAAEC,MAAMT,EAAa,CAC/B,CAACC,MAAOhF,EAAOsE,QAAQmB,gBAAiBzG,MAAO,YAC/C,CAACgG,MAAOhF,EAAOsE,QAAQoB,YAAa1G,MAAO,gBAC3C,CAACgG,MAAOhF,EAAOsE,QAAQqB,eAAgB3G,MAAO,sBAItD,IAAI4G,EAAe/C,GAAc/B,EAAQ+B,EAAWgD,KAAI,SAACxB,GAAD,OAAQ1C,EAAY0C,KAAO,MAKnF,MAJ4B,iBAAjBuB,IACPA,EAAe,IAIf,oBAAC1F,EAAD,CAA4B4F,MAAO9F,EAAOsE,QAAQyB,cAAeC,KAAK,WAC1CC,YAAazD,EAAS0D,UAAW,wBACzD,oBAAC/F,EAAD,KACI,oBAACE,EAAD,CACI2E,MAAOhF,EAAOsE,QAAQ6B,qBACtBC,QAAS5D,EACT6D,SAAU,SAACrH,GACP,EAAK0E,SAAS,CAAClB,SAAUA,EAASqC,UAAW,gBAIxDrC,GACG,oBAAC/B,EAAD,KACI,oBAACN,EAAD,KACI,oBAACC,EAAD,CACIkG,YAAa7D,EACb4D,SAAU,SAACrH,GAAD,OAAW,EAAK0E,SAAS,CAACjB,KAAMzD,EAAO6F,UAAW,UAC5D0B,YAAavG,EAAOuG,eAG5B,oBAACjG,EAAD,CACI0E,MAAOhF,EAAOsE,QAAQkC,YACtBxH,MAAO2D,EACP8D,QAAS1B,EACTsB,SAAU,SAACrH,GACP,EAAK0E,SAAS,CAACf,aAAc3D,EAAO6F,UAAW,cAGtDlC,EAAaG,SAAS,cAElBlC,EAAQC,EAAKa,KACV,oBAACjB,EAAD,KACKT,EAAOsE,QAAQoC,QAAf,KAA8BlD,EAA9B,IACD,oBAAChD,EAAD,QAKJ,oBAACD,EAAD,CACIyE,MAAOhF,EAAOsE,QAAQqC,qBAAf,KAA2CnD,EAA3C,IACPxE,MAAO4G,EACPgB,YAAanI,OAAOoC,KAAKa,GACzB2E,SAAU,SAACrH,GACP,EAAK0E,SAAS,CACVb,WAAY,EAAKgE,iBAAiB7H,GAClC6F,UAAW,cAGnBiC,eAAgB,UAvNjC,oCAkODlF,GACV,IAAImF,EAAUnF,EAAS,yBACnBoF,EAAUpF,EAAS,6BAA+BA,EAAS,4BAAT,WAItD,OAAImF,GAIAC,IAIAhH,GAAUA,EAAOyD,UAAYzD,EAAOyD,SAASwD,WACtCjH,EAAOyD,SAASwD,WAGpB,WApPI,oCAwPDrF,GACV,IAAIsF,EAAgBtF,EAAS,gCAAkCA,EAAS,+BACpEuF,EAAgBvF,EAAS,6BAA+BA,EAAS,4BAAT,SAE5D,MAA6B,iBAAzB,IAAOsF,EAAP,cAAOA,KAA8BA,EAAcE,OAAS,EACrDF,GAGPC,QAA0C,IAAlBA,GAA0D,iBAAzB,IAAOA,EAAP,cAAOA,MAChEtE,WAAa,CAACsE,IAGXA,KApQI,uCAyQEE,GAAQ,MACiBxF,KAAKJ,MAApCC,EADc,EACdA,eAMP,GAPqB,EACEC,aAED0F,EAAOC,MAAK,SAAUC,GACxC,MAAwB,iBAAVA,IAAuB7F,EAAe6F,MAWxD,OAJiBF,EAAOxB,KAAI,SAAU0B,GAClC,MAAwB,iBAAVA,EAAqB7F,EAAe6F,GAASA,KAG7C1B,KAAI,SAACzB,GAAD,OAASA,EAAIC,QAxRxB,8BA2RP5B,GACJ,IAAI+E,EAAU,IAAI9E,KACdM,EAAyD,IAAjC,IAAIN,MAAOO,oBACnCC,EAA4C,GAAzBlD,EAAOmD,gBAG9B,OAFAqE,EAAQpE,QAAQV,KAAK+E,MAAMhF,IAC3B+E,EAAQpE,QAAQoE,EAAQ7D,UAAyD,KAA5CX,EAAwBE,IACpDsE,EAAQ7D,UAAa,QAjSnB,GASgBjD","file":"gutenberg-panel.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n","(function (wp, config) {\n\n const {registerPlugin} = wp.plugins;\n const {PluginDocumentSettingPanel} = wp.editPost;\n const {PanelRow, DateTimePicker, CheckboxControl, SelectControl, FormTokenField, Spinner} = wp.components;\n const {Fragment, Component} = wp.element;\n const {decodeEntities} = wp.htmlEntities;\n const {isEmpty, keys, compact} = lodash;\n\n class PostExpiratorSidebar extends Component {\n constructor() {\n super(...arguments);\n\n this.state = {\n categoriesList: [],\n catIdVsName: [],\n }\n }\n\n componentWillMount() {\n const {attributes} = this.state;\n\n const postMeta = wp.data.select('core/editor').getEditedPostAttribute('meta');\n const postType = wp.data.select('core/editor').getCurrentPostType();\n const setPostMeta = (newMeta) => wp.data.dispatch('core/editor').editPost({meta: newMeta});\n\n let enabled = false;\n let date = new Date();\n\n let expireAction = this.getExpireType(postMeta);\n\n let categories = [];\n if (expireAction.includes('category')) {\n categories = this.getCategories(postMeta);\n }\n\n if (postMeta['_expiration-date-status'] && postMeta['_expiration-date-status'] === 'saved') {\n enabled = true;\n }\n\n let browserTimezoneOffset = date.getTimezoneOffset() * 60;\n let wpTimezoneOffset = config.timezone_offset * 60;\n\n if (postMeta['_expiration-date']) {\n date.setTime((postMeta['_expiration-date'] + browserTimezoneOffset + wpTimezoneOffset) * 1000);\n } else {\n categories = config.default_categories;\n if (config.default_date) {\n date.setTime((parseInt(config.default_date) + browserTimezoneOffset + wpTimezoneOffset) * 1000);\n }\n // If the date is not set, we\n enabled = false;\n }\n\n let taxonomy = config.defaults.taxonomy || 'category';\n\n this.setState({\n enabled: enabled,\n date: date,\n expireAction: expireAction,\n categories: categories,\n taxonomy: taxonomy,\n });\n\n // Force all the metadata to be saved. Required for making sure the default settings are stored correctly.\n setPostMeta({'_expiration-date-status': (enabled ? 'saved' : '')});\n setPostMeta({'_expiration-date': (date.getTime()) / 1000});\n setPostMeta({'_expiration-date-type': expireAction});\n setPostMeta({'_expiration-date-categories': categories});\n\n let categoriesList = [];\n let catIdVsName = [];\n\n if ((!taxonomy && postType === 'post') || taxonomy === 'category') {\n wp.apiFetch({\n path: wp.url.addQueryArgs('wp/v2/categories', {per_page: -1}),\n }).then((list) => {\n list.forEach(cat => {\n categoriesList[cat.name] = cat;\n catIdVsName[cat.id] = cat.name;\n });\n this.setState({categoriesList: categoriesList, catIdVsName: catIdVsName, taxonomy: config.strings.category});\n });\n } else if (postType !== 'page') {\n wp.apiFetch({\n path: wp.url.addQueryArgs(`wp/v2/taxonomies/${taxonomy}`, {context: 'edit'}),\n }).then((taxAttributes) => {\n // fetch all terms\n wp.apiFetch({\n path: wp.url.addQueryArgs(`wp/v2/${taxAttributes.rest_base}`, {context: 'edit'}),\n }).then((terms) => {\n terms.forEach(term => {\n categoriesList[decodeEntities(term.name)] = term;\n catIdVsName[term.id] = decodeEntities(term.name);\n });\n this.setState({\n categoriesList: categoriesList,\n catIdVsName: catIdVsName,\n taxonomy: decodeEntities(taxAttributes.name)\n });\n });\n });\n }\n\n }\n\n componentDidUpdate() {\n const {enabled, date, expireAction, categories, attribute} = this.state;\n const setPostMeta = (newMeta) => wp.data.dispatch('core/editor').editPost({meta: newMeta});\n const postMeta = wp.data.select('core/editor').getEditedPostAttribute('meta');\n\n switch (attribute) {\n case 'enabled':\n setPostMeta({'_expiration-date-status': (enabled ? 'saved' : '')});\n // if date is not set when the checkbox is enabled, set it to the default date\n // this is to prevent the user from having to click the date to set it\n if (!postMeta['_expiration-date']) {\n setPostMeta({'_expiration-date': this.getDate(date)});\n }\n break;\n case 'date':\n if (typeof date === 'string') {\n setPostMeta({'_expiration-date': this.getDate(date)});\n }\n break;\n case 'action':\n setPostMeta({'_expiration-date-type': expireAction});\n if (!expireAction.includes('category')) {\n setPostMeta({'_expiration-date-categories': []});\n }\n break;\n case 'category':\n setPostMeta({'_expiration-date-categories': categories});\n break;\n }\n\n }\n\n render() {\n const {categoriesList, catIdVsName} = this.state;\n const {enabled, date, expireAction, categories, taxonomy} = this.state;\n\n const postType = wp.data.select('core/editor').getCurrentPostType();\n\n let actionsList = [\n {label: config.strings.draft, value: 'draft'},\n {label: config.strings.delete, value: 'delete'},\n {label: config.strings.trash, value: 'trash'},\n {label: config.strings.private, value: 'private'},\n {label: config.strings.stick, value: 'stick'},\n {label: config.strings.unstick, value: 'unstick'},\n ];\n\n if (postType !== 'page') {\n actionsList = _.union(actionsList, [\n {label: config.strings.categoryReplace, value: 'category'},\n {label: config.strings.categoryAdd, value: 'category-add'},\n {label: config.strings.categoryRemove, value: 'category-remove'},\n ]);\n }\n\n let selectedCats = categories && compact(categories.map((id) => catIdVsName[id] || false));\n if (typeof selectedCats === 'string') {\n selectedCats = [];\n }\n\n return (\n <PluginDocumentSettingPanel title={config.strings.postExpirator} icon=\"calendar\"\n initialOpen={enabled} className={'post-expirator-panel'}>\n <PanelRow>\n <CheckboxControl\n label={config.strings.enablePostExpiration}\n checked={enabled}\n onChange={(value) => {\n this.setState({enabled: !enabled, attribute: 'enabled'})\n }}\n />\n </PanelRow>\n {enabled && (\n <Fragment>\n <PanelRow>\n <DateTimePicker\n currentDate={date}\n onChange={(value) => this.setState({date: value, attribute: 'date'})}\n is_12_hours={config.is_12_hours}\n />\n </PanelRow>\n <SelectControl\n label={config.strings.howToExpire}\n value={expireAction}\n options={actionsList}\n onChange={(value) => {\n this.setState({expireAction: value, attribute: 'action'})\n }}\n />\n {expireAction.includes('category') &&\n (\n (isEmpty(keys(categoriesList)) && (\n <Fragment>\n {config.strings.loading + ` (${taxonomy})`}\n <Spinner/>\n </Fragment>\n ))\n ||\n (\n <FormTokenField\n label={config.strings.expirationCategories + ` (${taxonomy})`}\n value={selectedCats}\n suggestions={Object.keys(categoriesList)}\n onChange={(value) => {\n this.setState({\n categories: this.selectCategories(value),\n attribute: 'category'\n })\n }}\n maxSuggestions={10}\n />\n )\n )}\n </Fragment>\n )}\n </PluginDocumentSettingPanel>\n );\n }\n\n // what action to take on expiration\n getExpireType(postMeta) {\n let typeNew = postMeta['_expiration-date-type'];\n let typeOld = postMeta['_expiration-date-options'] && postMeta['_expiration-date-options']['expireType'];\n\n\n\n if (typeNew) {\n return typeNew;\n }\n\n if (typeOld) {\n return typeOld;\n }\n\n if (config && config.defaults && config.defaults.expireType) {\n return config.defaults.expireType;\n }\n\n return 'draft';\n }\n\n // what categories to add/remove/replace\n getCategories(postMeta) {\n let categoriesNew = postMeta['_expiration-date-categories'] && postMeta['_expiration-date-categories'];\n let categoriesOld = postMeta['_expiration-date-options'] && postMeta['_expiration-date-options']['category'];\n\n if (typeof categoriesNew === 'object' && categoriesNew.length > 0) {\n return categoriesNew;\n }\n\n if (categoriesOld && typeof categoriesOld !== 'undefined' && typeof categoriesOld !== 'object') {\n categories = [categoriesOld];\n }\n\n return categoriesOld;\n\n }\n\n // fired for the autocomplete\n selectCategories(tokens) {\n const {categoriesList, catIdVsName} = this.state;\n\n var hasNoSuggestion = tokens.some(function (token) {\n return typeof token === 'string' && !categoriesList[token];\n });\n\n if (hasNoSuggestion) {\n return;\n }\n\n var categories = tokens.map(function (token) {\n return typeof token === 'string' ? categoriesList[token] : token;\n })\n\n return categories.map((cat) => cat.id);\n }\n\n getDate(date) {\n let newDate = new Date();\n let browserTimezoneOffset = new Date().getTimezoneOffset() * 60;\n let wpTimezoneOffset = config.timezone_offset * 60;\n newDate.setTime(Date.parse(date));\n newDate.setTime(newDate.getTime() - (browserTimezoneOffset + wpTimezoneOffset) * 1000);\n return ((newDate.getTime()) / 1000);\n }\n\n }\n\n registerPlugin('postexpirator-sidebar', {\n render: PostExpiratorSidebar\n });\n\n\n})(window.wp, window.postExpiratorPanelConfig);\n"],"sourceRoot":""}
1
+ {"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./assets/jsx/gutenberg-panel.jsx"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","wp","config","registerPlugin","PluginDocumentSettingPanel","PanelRow","DateTimePicker","CheckboxControl","SelectControl","FormTokenField","Spinner","Fragment","Component","decodeEntities","isEmpty","keys","compact","window","postExpiratorPanelConfig","plugins","editPost","components","element","htmlEntities","lodash","render","arguments","state","categoriesList","catIdVsName","postMeta","this","attributes","data","select","getEditedPostAttribute","postType","getCurrentPostType","setPostMeta","newMeta","dispatch","meta","enabled","date","Date","expireAction","getExpireType","categories","includes","getCategories","browserTimezoneOffset","getTimezoneOffset","wpTimezoneOffset","timezone_offset","setTime","default_categories","default_date","parseInt","taxonomy","defaults","setState","getTime","apiFetch","path","url","addQueryArgs","per_page","then","list","forEach","cat","id","strings","category","context","taxAttributes","rest_base","terms","term","attribute","getDate","actionsList","label","draft","delete","trash","private","stick","unstick","_","union","categoryReplace","categoryAdd","categoryRemove","selectedCats","map","title","postExpirator","icon","initialOpen","className","enablePostExpiration","checked","onChange","currentDate","is_12_hours","howToExpire","options","loading","expirationCategories","suggestions","selectCategories","maxSuggestions","typeNew","typeOld","expireType","categoriesNew","categoriesOld","length","tokens","some","token","newDate","parse"],"mappings":"aACE,IAAIA,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUC,QAGnC,IAAIC,EAASJ,EAAiBE,GAAY,CACzCG,EAAGH,EACHI,GAAG,EACHH,QAAS,IAUV,OANAI,EAAQL,GAAUM,KAAKJ,EAAOD,QAASC,EAAQA,EAAOD,QAASF,GAG/DG,EAAOE,GAAI,EAGJF,EAAOD,QAKfF,EAAoBQ,EAAIF,EAGxBN,EAAoBS,EAAIV,EAGxBC,EAAoBU,EAAI,SAASR,EAASS,EAAMC,GAC3CZ,EAAoBa,EAAEX,EAASS,IAClCG,OAAOC,eAAeb,EAASS,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEZ,EAAoBkB,EAAI,SAAShB,GACX,oBAAXiB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAeb,EAASiB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAeb,EAAS,aAAc,CAAEmB,OAAO,KAQvDrB,EAAoBsB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQrB,EAAoBqB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,iBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFA1B,EAAoBkB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOrB,EAAoBU,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRzB,EAAoB6B,EAAI,SAAS1B,GAChC,IAAIS,EAAST,GAAUA,EAAOqB,WAC7B,WAAwB,OAAOrB,EAAgB,SAC/C,WAA8B,OAAOA,GAEtC,OADAH,EAAoBU,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRZ,EAAoBa,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG/B,EAAoBkC,EAAI,GAIjBlC,EAAoBA,EAAoBmC,EAAI,G,mEClF1CC,EAAIC,EAEJC,EACAC,EAHY,EAIZC,EAAUC,EAAgBC,EAAiBC,EAAeC,EAAgBC,EAJ9D,EAKZC,EAAUC,EACVC,EANY,EAOZC,EAASC,EAAMC,E,ksBAPff,EA4SRgB,OAAOhB,GA5SKC,EA4SDe,OAAOC,yBA1SVf,EAAkBF,EAAGkB,QAArBhB,eACAC,EAA8BH,EAAGmB,SAAjChB,2BAHY,EAIyEH,EAAGoB,WAAxFhB,EAJY,EAIZA,SAAUC,EAJE,EAIFA,eAAgBC,EAJd,EAIcA,gBAAiBC,EAJ/B,EAI+BA,cAAeC,EAJ9C,EAI8CA,eAAgBC,EAJ9D,EAI8DA,QAJ9D,EAKWT,EAAGqB,QAA1BX,EALY,EAKZA,SAAUC,EALE,EAKFA,UACVC,EAAkBZ,EAAGsB,aAArBV,eANY,EAOcW,OAA1BV,EAPY,EAOZA,QAASC,EAPG,EAOHA,KAAMC,EAPH,EAOGA,QAgStBb,EAAe,wBAAyB,CACpCsB,OAxSe,YAUf,aAAc,0EACDC,YADC,OAGV,EAAKC,MAAQ,CACTC,eAAgB,GAChBC,YAAa,IALP,EAVC,O,yTAAA,sDAmBM,WAGXC,GAFeC,KAAKJ,MAAnBK,WAEU/B,EAAGgC,KAAKC,OAAO,eAAeC,uBAAuB,SAChEC,EAAWnC,EAAGgC,KAAKC,OAAO,eAAeG,qBACzCC,EAAc,SAACC,GAAD,OAAatC,EAAGgC,KAAKO,SAAS,eAAepB,SAAS,CAACqB,KAAMF,KAE7EG,GAAU,EACVC,EAAO,IAAIC,KAEXC,EAAed,KAAKe,cAAchB,GAElCiB,EAAa,GACbF,EAAaG,SAAS,cACtBD,EAAahB,KAAKkB,cAAcnB,IAGhCA,EAAS,4BAAsE,UAAxCA,EAAS,6BAChDY,GAAU,GAGd,IAAIQ,EAAmD,GAA3BP,EAAKQ,oBAC7BC,EAA4C,GAAzBlD,EAAOmD,gBAE1BvB,EAAS,oBACTa,EAAKW,QAAoF,KAA3ExB,EAAS,oBAAsBoB,EAAwBE,KAErEL,EAAa7C,EAAOqD,mBAChBrD,EAAOsD,cACPb,EAAKW,QAAqF,KAA5EG,SAASvD,EAAOsD,cAAgBN,EAAwBE,IAI1EV,GAAU,GAGd,IAAIgB,EAAWxD,EAAOyD,SAASD,UAAY,WAE3C3B,KAAK6B,SAAS,CACVlB,QAASA,EACTC,KAAMA,EACNE,aAAcA,EACdE,WAAYA,EACZW,SAAUA,IAIdpB,EAAY,CAAC,0BAA4BI,EAAU,QAAU,KAC7DJ,EAAY,CAAC,mBAAqBK,EAAKkB,UAAa,MACpDvB,EAAY,CAAC,wBAAyBO,IACtCP,EAAY,CAAC,8BAA+BS,IAE5C,IAAInB,EAAiB,GACjBC,EAAc,IAEZ6B,GAAyB,SAAbtB,GAAqC,aAAbsB,EACtCzD,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAa,mBAAoB,CAACC,UAAW,MAC3DC,MAAK,SAACC,GACLA,EAAKC,SAAQ,SAAAC,GACT1C,EAAe0C,EAAI9F,MAAQ8F,EAC3BzC,EAAYyC,EAAIC,IAAMD,EAAI9F,QAE9B,EAAKoF,SAAS,CAAChC,eAAgBA,EAAgBC,YAAaA,EAAa6B,SAAUxD,EAAOsE,QAAQC,cAElF,SAAbrC,GACPnC,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAP,oBAAwCP,EAAY,CAACgB,QAAS,WACrEP,MAAK,SAACQ,GAEL1E,EAAG6D,SAAS,CACRC,KAAM9D,EAAG+D,IAAIC,aAAP,SAA6BU,EAAcC,UAAa,CAACF,QAAS,WACzEP,MAAK,SAACU,GACLA,EAAMR,SAAQ,SAAAS,GACVlD,EAAef,EAAeiE,EAAKtG,OAASsG,EAC5CjD,EAAYiD,EAAKP,IAAM1D,EAAeiE,EAAKtG,SAE/C,EAAKoF,SAAS,CACVhC,eAAgBA,EAChBC,YAAaA,EACb6B,SAAU7C,EAAe8D,EAAcnG,gBAnG5C,2CA2GM,MAC4CuD,KAAKJ,MAA3De,EADU,EACVA,QAASC,EADC,EACDA,KAAME,EADL,EACKA,aAAcE,EADnB,EACmBA,WAAYgC,EAD/B,EAC+BA,UAC1CzC,EAAc,SAACC,GAAD,OAAatC,EAAGgC,KAAKO,SAAS,eAAepB,SAAS,CAACqB,KAAMF,KAC3ET,EAAW7B,EAAGgC,KAAKC,OAAO,eAAeC,uBAAuB,QAEtE,OAAQ4C,GACJ,IAAK,UACDzC,EAAY,CAAC,0BAA4BI,EAAU,QAAU,KAGxDZ,EAAS,qBACVQ,EAAY,CAAC,mBAAoBP,KAAKiD,QAAQrC,KAElD,MACJ,IAAK,OACmB,iBAATA,GACPL,EAAY,CAAC,mBAAoBP,KAAKiD,QAAQrC,KAElD,MACJ,IAAK,SACDL,EAAY,CAAC,wBAAyBO,IACjCA,EAAaG,SAAS,aACvBV,EAAY,CAAC,8BAA+B,KAEhD,MACJ,IAAK,WACDA,EAAY,CAAC,8BAA+BS,OArIzC,+BA2IN,aACiChB,KAAKJ,MAApCC,EADF,EACEA,eAAgBC,EADlB,EACkBA,YADlB,EAEuDE,KAAKJ,MAA1De,EAFF,EAEEA,QAASC,EAFX,EAEWA,KAAME,EAFjB,EAEiBA,aAAcE,EAF/B,EAE+BA,WAAYW,EAF3C,EAE2CA,SAE1CtB,EAAWnC,EAAGgC,KAAKC,OAAO,eAAeG,qBAE3C4C,EAAc,CACd,CAACC,MAAOhF,EAAOsE,QAAQW,MAAOjG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQY,OAAQlG,MAAO,UACtC,CAACgG,MAAOhF,EAAOsE,QAAQa,MAAOnG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQc,QAASpG,MAAO,WACvC,CAACgG,MAAOhF,EAAOsE,QAAQe,MAAOrG,MAAO,SACrC,CAACgG,MAAOhF,EAAOsE,QAAQgB,QAAStG,MAAO,YAG1B,SAAbkD,IACA6C,EAAcQ,EAAEC,MAAMT,EAAa,CAC/B,CAACC,MAAOhF,EAAOsE,QAAQmB,gBAAiBzG,MAAO,YAC/C,CAACgG,MAAOhF,EAAOsE,QAAQoB,YAAa1G,MAAO,gBAC3C,CAACgG,MAAOhF,EAAOsE,QAAQqB,eAAgB3G,MAAO,sBAItD,IAAI4G,EAAe/C,GAAc/B,EAAQ+B,EAAWgD,KAAI,SAACxB,GAAD,OAAQ1C,EAAY0C,KAAO,MAKnF,MAJ4B,iBAAjBuB,IACPA,EAAe,IAIf,oBAAC1F,EAAD,CAA4B4F,MAAO9F,EAAOsE,QAAQyB,cAAeC,KAAK,WAC1CC,YAAazD,EAAS0D,UAAW,wBACzD,oBAAC/F,EAAD,KACI,oBAACE,EAAD,CACI2E,MAAOhF,EAAOsE,QAAQ6B,qBACtBC,QAAS5D,EACT6D,SAAU,SAACrH,GACP,EAAK0E,SAAS,CAAClB,SAAUA,EAASqC,UAAW,gBAIxDrC,GACG,oBAAC/B,EAAD,KACI,oBAACN,EAAD,KACI,oBAACC,EAAD,CACIkG,YAAa7D,EACb4D,SAAU,SAACrH,GAAD,OAAW,EAAK0E,SAAS,CAACjB,KAAMzD,EAAO6F,UAAW,UAC5D0B,YAAavG,EAAOuG,eAG5B,oBAACjG,EAAD,CACI0E,MAAOhF,EAAOsE,QAAQkC,YACtBxH,MAAO2D,EACP8D,QAAS1B,EACTsB,SAAU,SAACrH,GACP,EAAK0E,SAAS,CAACf,aAAc3D,EAAO6F,UAAW,cAGtDlC,EAAaG,SAAS,cAElBlC,EAAQC,EAAKa,KACV,oBAACjB,EAAD,KACKT,EAAOsE,QAAQoC,QAAf,KAA8BlD,EAA9B,IACD,oBAAChD,EAAD,QAKJ,oBAACD,EAAD,CACIyE,MAAOhF,EAAOsE,QAAQqC,qBAAf,KAA2CnD,EAA3C,IACPxE,MAAO4G,EACPgB,YAAanI,OAAOoC,KAAKa,GACzB2E,SAAU,SAACrH,GACP,EAAK0E,SAAS,CACVb,WAAY,EAAKgE,iBAAiB7H,GAClC6F,UAAW,cAGnBiC,eAAgB,UAxNjC,oCAmODlF,GACV,IAAImF,EAAUnF,EAAS,yBACnBoF,EAAUpF,EAAS,6BAA+BA,EAAS,4BAAT,WAItD,OAAImF,GAIAC,IAIAhH,GAAUA,EAAOyD,UAAYzD,EAAOyD,SAASwD,WACtCjH,EAAOyD,SAASwD,WAGpB,WArPI,oCAyPDrF,GACV,IAAIsF,EAAgBtF,EAAS,gCAAkCA,EAAS,+BACpEuF,EAAgBvF,EAAS,6BAA+BA,EAAS,4BAAT,SAE5D,MAA6B,iBAAzB,IAAOsF,EAAP,cAAOA,KAA8BA,EAAcE,OAAS,EACrDF,GAGPC,QAA0C,IAAlBA,GAA0D,iBAAzB,IAAOA,EAAP,cAAOA,MAChEtE,WAAa,CAACsE,IAGXA,KArQI,uCA0QEE,GAAQ,MACiBxF,KAAKJ,MAApCC,EADc,EACdA,eAMP,GAPqB,EACEC,aAED0F,EAAOC,MAAK,SAAUC,GACxC,MAAwB,iBAAVA,IAAuB7F,EAAe6F,MAWxD,OAJiBF,EAAOxB,KAAI,SAAU0B,GAClC,MAAwB,iBAAVA,EAAqB7F,EAAe6F,GAASA,KAG7C1B,KAAI,SAACzB,GAAD,OAASA,EAAIC,QAzRxB,8BA4RP5B,GACJ,IAAI+E,EAAU,IAAI9E,KACdM,EAAyD,IAAjC,IAAIN,MAAOO,oBACnCC,EAA4C,GAAzBlD,EAAOmD,gBAG9B,OAFAqE,EAAQpE,QAAQV,KAAK+E,MAAMhF,IAC3B+E,EAAQpE,QAAQoE,EAAQ7D,UAAyD,KAA5CX,EAAwBE,IACpDsE,EAAQ7D,UAAa,QAlSnB,GASgBjD","file":"gutenberg-panel.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 0);\n","(function (wp, config) {\n\n const {registerPlugin} = wp.plugins;\n const {PluginDocumentSettingPanel} = wp.editPost;\n const {PanelRow, DateTimePicker, CheckboxControl, SelectControl, FormTokenField, Spinner} = wp.components;\n const {Fragment, Component} = wp.element;\n const {decodeEntities} = wp.htmlEntities;\n const {isEmpty, keys, compact} = lodash;\n\n class PostExpiratorSidebar extends Component {\n constructor() {\n super(...arguments);\n\n this.state = {\n categoriesList: [],\n catIdVsName: [],\n }\n }\n\n componentWillMount() {\n const {attributes} = this.state;\n\n const postMeta = wp.data.select('core/editor').getEditedPostAttribute('meta');\n const postType = wp.data.select('core/editor').getCurrentPostType();\n const setPostMeta = (newMeta) => wp.data.dispatch('core/editor').editPost({meta: newMeta});\n\n let enabled = false;\n let date = new Date();\n\n let expireAction = this.getExpireType(postMeta);\n\n let categories = [];\n if (expireAction.includes('category')) {\n categories = this.getCategories(postMeta);\n }\n\n if (postMeta['_expiration-date-status'] && postMeta['_expiration-date-status'] === 'saved') {\n enabled = true;\n }\n\n let browserTimezoneOffset = date.getTimezoneOffset() * 60;\n let wpTimezoneOffset = config.timezone_offset * 60;\n\n if (postMeta['_expiration-date']) {\n date.setTime((postMeta['_expiration-date'] + browserTimezoneOffset + wpTimezoneOffset) * 1000);\n } else {\n categories = config.default_categories;\n if (config.default_date) {\n date.setTime((parseInt(config.default_date) + browserTimezoneOffset + wpTimezoneOffset) * 1000);\n }\n\n // If the date is not set\n enabled = false;\n }\n\n let taxonomy = config.defaults.taxonomy || 'category';\n\n this.setState({\n enabled: enabled,\n date: date,\n expireAction: expireAction,\n categories: categories,\n taxonomy: taxonomy,\n });\n\n // Force all the metadata to be saved. Required for making sure the default settings are stored correctly.\n setPostMeta({'_expiration-date-status': (enabled ? 'saved' : '')});\n setPostMeta({'_expiration-date': (date.getTime()) / 1000});\n setPostMeta({'_expiration-date-type': expireAction});\n setPostMeta({'_expiration-date-categories': categories});\n\n let categoriesList = [];\n let catIdVsName = [];\n\n if ((!taxonomy && postType === 'post') || taxonomy === 'category') {\n wp.apiFetch({\n path: wp.url.addQueryArgs('wp/v2/categories', {per_page: -1}),\n }).then((list) => {\n list.forEach(cat => {\n categoriesList[cat.name] = cat;\n catIdVsName[cat.id] = cat.name;\n });\n this.setState({categoriesList: categoriesList, catIdVsName: catIdVsName, taxonomy: config.strings.category});\n });\n } else if (postType !== 'page') {\n wp.apiFetch({\n path: wp.url.addQueryArgs(`wp/v2/taxonomies/${taxonomy}`, {context: 'edit'}),\n }).then((taxAttributes) => {\n // fetch all terms\n wp.apiFetch({\n path: wp.url.addQueryArgs(`wp/v2/${taxAttributes.rest_base}`, {context: 'edit'}),\n }).then((terms) => {\n terms.forEach(term => {\n categoriesList[decodeEntities(term.name)] = term;\n catIdVsName[term.id] = decodeEntities(term.name);\n });\n this.setState({\n categoriesList: categoriesList,\n catIdVsName: catIdVsName,\n taxonomy: decodeEntities(taxAttributes.name)\n });\n });\n });\n }\n\n }\n\n componentDidUpdate() {\n const {enabled, date, expireAction, categories, attribute} = this.state;\n const setPostMeta = (newMeta) => wp.data.dispatch('core/editor').editPost({meta: newMeta});\n const postMeta = wp.data.select('core/editor').getEditedPostAttribute('meta');\n\n switch (attribute) {\n case 'enabled':\n setPostMeta({'_expiration-date-status': (enabled ? 'saved' : '')});\n // if date is not set when the checkbox is enabled, set it to the default date\n // this is to prevent the user from having to click the date to set it\n if (!postMeta['_expiration-date']) {\n setPostMeta({'_expiration-date': this.getDate(date)});\n }\n break;\n case 'date':\n if (typeof date === 'string') {\n setPostMeta({'_expiration-date': this.getDate(date)});\n }\n break;\n case 'action':\n setPostMeta({'_expiration-date-type': expireAction});\n if (!expireAction.includes('category')) {\n setPostMeta({'_expiration-date-categories': []});\n }\n break;\n case 'category':\n setPostMeta({'_expiration-date-categories': categories});\n break;\n }\n\n }\n\n render() {\n const {categoriesList, catIdVsName} = this.state;\n const {enabled, date, expireAction, categories, taxonomy} = this.state;\n\n const postType = wp.data.select('core/editor').getCurrentPostType();\n\n let actionsList = [\n {label: config.strings.draft, value: 'draft'},\n {label: config.strings.delete, value: 'delete'},\n {label: config.strings.trash, value: 'trash'},\n {label: config.strings.private, value: 'private'},\n {label: config.strings.stick, value: 'stick'},\n {label: config.strings.unstick, value: 'unstick'},\n ];\n\n if (postType !== 'page') {\n actionsList = _.union(actionsList, [\n {label: config.strings.categoryReplace, value: 'category'},\n {label: config.strings.categoryAdd, value: 'category-add'},\n {label: config.strings.categoryRemove, value: 'category-remove'},\n ]);\n }\n\n let selectedCats = categories && compact(categories.map((id) => catIdVsName[id] || false));\n if (typeof selectedCats === 'string') {\n selectedCats = [];\n }\n\n return (\n <PluginDocumentSettingPanel title={config.strings.postExpirator} icon=\"calendar\"\n initialOpen={enabled} className={'post-expirator-panel'}>\n <PanelRow>\n <CheckboxControl\n label={config.strings.enablePostExpiration}\n checked={enabled}\n onChange={(value) => {\n this.setState({enabled: !enabled, attribute: 'enabled'})\n }}\n />\n </PanelRow>\n {enabled && (\n <Fragment>\n <PanelRow>\n <DateTimePicker\n currentDate={date}\n onChange={(value) => this.setState({date: value, attribute: 'date'})}\n is_12_hours={config.is_12_hours}\n />\n </PanelRow>\n <SelectControl\n label={config.strings.howToExpire}\n value={expireAction}\n options={actionsList}\n onChange={(value) => {\n this.setState({expireAction: value, attribute: 'action'})\n }}\n />\n {expireAction.includes('category') &&\n (\n (isEmpty(keys(categoriesList)) && (\n <Fragment>\n {config.strings.loading + ` (${taxonomy})`}\n <Spinner/>\n </Fragment>\n ))\n ||\n (\n <FormTokenField\n label={config.strings.expirationCategories + ` (${taxonomy})`}\n value={selectedCats}\n suggestions={Object.keys(categoriesList)}\n onChange={(value) => {\n this.setState({\n categories: this.selectCategories(value),\n attribute: 'category'\n })\n }}\n maxSuggestions={10}\n />\n )\n )}\n </Fragment>\n )}\n </PluginDocumentSettingPanel>\n );\n }\n\n // what action to take on expiration\n getExpireType(postMeta) {\n let typeNew = postMeta['_expiration-date-type'];\n let typeOld = postMeta['_expiration-date-options'] && postMeta['_expiration-date-options']['expireType'];\n\n\n\n if (typeNew) {\n return typeNew;\n }\n\n if (typeOld) {\n return typeOld;\n }\n\n if (config && config.defaults && config.defaults.expireType) {\n return config.defaults.expireType;\n }\n\n return 'draft';\n }\n\n // what categories to add/remove/replace\n getCategories(postMeta) {\n let categoriesNew = postMeta['_expiration-date-categories'] && postMeta['_expiration-date-categories'];\n let categoriesOld = postMeta['_expiration-date-options'] && postMeta['_expiration-date-options']['category'];\n\n if (typeof categoriesNew === 'object' && categoriesNew.length > 0) {\n return categoriesNew;\n }\n\n if (categoriesOld && typeof categoriesOld !== 'undefined' && typeof categoriesOld !== 'object') {\n categories = [categoriesOld];\n }\n\n return categoriesOld;\n\n }\n\n // fired for the autocomplete\n selectCategories(tokens) {\n const {categoriesList, catIdVsName} = this.state;\n\n var hasNoSuggestion = tokens.some(function (token) {\n return typeof token === 'string' && !categoriesList[token];\n });\n\n if (hasNoSuggestion) {\n return;\n }\n\n var categories = tokens.map(function (token) {\n return typeof token === 'string' ? categoriesList[token] : token;\n })\n\n return categories.map((cat) => cat.id);\n }\n\n getDate(date) {\n let newDate = new Date();\n let browserTimezoneOffset = new Date().getTimezoneOffset() * 60;\n let wpTimezoneOffset = config.timezone_offset * 60;\n newDate.setTime(Date.parse(date));\n newDate.setTime(newDate.getTime() - (browserTimezoneOffset + wpTimezoneOffset) * 1000);\n return ((newDate.getTime()) / 1000);\n }\n\n }\n\n registerPlugin('postexpirator-sidebar', {\n render: PostExpiratorSidebar\n });\n\n\n})(window.wp, window.postExpiratorPanelConfig);\n"],"sourceRoot":""}
classes/Facade.class.php CHANGED
@@ -41,7 +41,7 @@ class PostExpirator_Facade
41
  */
42
  private function hooks()
43
  {
44
- add_action('init', array($this, 'register_post_meta'), 11);
45
  add_action('enqueue_block_editor_assets', array($this, 'block_editor_assets'));
46
  add_action('updated_postmeta', array($this, 'updatedmeta'), 10, 4);
47
  add_filter('cme_plugin_capabilities', [$this, 'filter_cme_capabilities'], 20);
41
  */
42
  private function hooks()
43
  {
44
+ add_action('init', array($this, 'register_post_meta'), 100);
45
  add_action('enqueue_block_editor_assets', array($this, 'block_editor_assets'));
46
  add_action('updated_postmeta', array($this, 'updatedmeta'), 10, 4);
47
  add_filter('cme_plugin_capabilities', [$this, 'filter_cme_capabilities'], 20);
composer.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "name": "publishpress/post-expirator",
3
  "type": "wordpress-plugin",
4
  "license": "GPL-2.0-or-later",
5
  "description": "",
@@ -16,15 +16,14 @@
16
  }
17
  ],
18
  "config": {
19
- "preferred-install": "dist"
 
 
 
 
 
20
  },
21
  "minimum-stability": "stable",
22
- "repositories": [
23
- {
24
- "type": "git",
25
- "url": "https://github.com/publishpress/PublishPress-Plugin-Builder"
26
- }
27
- ],
28
  "autoload": {
29
  "files": [
30
  "classes/DummyForAutoloadDetection.php"
@@ -44,7 +43,7 @@
44
  "dealerdirect/phpcodesniffer-composer-installer": "*",
45
  "phpcompatibility/php-compatibility": "*",
46
  "wp-coding-standards/wpcs": "*",
47
- "publishpress/publishpress-plugin-builder": "^1.3",
48
  "phpmd/phpmd": "^2.8",
49
  "squizlabs/php_codesniffer": "^3.5",
50
  "sebastian/phpcpd": "^5.0",
@@ -52,9 +51,12 @@
52
  "wp-cli/i18n-command": "^2.2",
53
  "vimeo/psalm": "^4.17",
54
  "friendsofphp/php-cs-fixer": "^3.4",
55
- "phpstan/phpstan": "^1.3"
 
 
56
  },
57
  "require": {
58
- "publishpress/wordpress-reviews": "^1.1"
 
59
  }
60
  }
1
  {
2
+ "name": "publishpress/publishpress-future",
3
  "type": "wordpress-plugin",
4
  "license": "GPL-2.0-or-later",
5
  "description": "",
16
  }
17
  ],
18
  "config": {
19
+ "preferred-install": {
20
+ "*": "dist"
21
+ },
22
+ "allow-plugins": {
23
+ "dealerdirect/phpcodesniffer-composer-installer": true
24
+ }
25
  },
26
  "minimum-stability": "stable",
 
 
 
 
 
 
27
  "autoload": {
28
  "files": [
29
  "classes/DummyForAutoloadDetection.php"
43
  "dealerdirect/phpcodesniffer-composer-installer": "*",
44
  "phpcompatibility/php-compatibility": "*",
45
  "wp-coding-standards/wpcs": "*",
46
+ "publishpress/publishpress-plugin-builder": "^1.4",
47
  "phpmd/phpmd": "^2.8",
48
  "squizlabs/php_codesniffer": "^3.5",
49
  "sebastian/phpcpd": "^5.0",
51
  "wp-cli/i18n-command": "^2.2",
52
  "vimeo/psalm": "^4.17",
53
  "friendsofphp/php-cs-fixer": "^3.4",
54
+ "phpstan/phpstan": "^1.3",
55
+ "behat/behat": "^3.10",
56
+ "automattic/vipwpcs": "^2.3"
57
  },
58
  "require": {
59
+ "publishpress/wordpress-reviews": "^1.1",
60
+ "publishpress/publishpress-instance-protection": "^1.0"
61
  }
62
  }
composer.lock CHANGED
@@ -4,20 +4,59 @@
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
  "This file is @generated automatically"
6
  ],
7
- "content-hash": "ac20c70e84aa3ad970f67eb2aa152a00",
8
  "packages": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  {
10
  "name": "publishpress/wordpress-reviews",
11
- "version": "v1.1.18",
12
  "source": {
13
  "type": "git",
14
  "url": "https://github.com/publishpress/wordpress-reviews.git",
15
- "reference": "0020705b8f6a7177fc393c6c42c82171bf9e2fbd"
16
  },
17
  "dist": {
18
  "type": "zip",
19
- "url": "https://api.github.com/repos/publishpress/wordpress-reviews/zipball/0020705b8f6a7177fc393c6c42c82171bf9e2fbd",
20
- "reference": "0020705b8f6a7177fc393c6c42c82171bf9e2fbd",
21
  "shasum": ""
22
  },
23
  "require": {
@@ -70,24 +109,24 @@
70
  ],
71
  "support": {
72
  "issues": "https://github.com/publishpress/wordpress-reviews/issues",
73
- "source": "https://github.com/publishpress/wordpress-reviews/tree/v1.1.18"
74
  },
75
- "time": "2021-12-15T00:03:53+00:00"
76
  }
77
  ],
78
  "packages-dev": [
79
  {
80
  "name": "amphp/amp",
81
- "version": "v2.6.1",
82
  "source": {
83
  "type": "git",
84
  "url": "https://github.com/amphp/amp.git",
85
- "reference": "c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae"
86
  },
87
  "dist": {
88
  "type": "zip",
89
- "url": "https://api.github.com/repos/amphp/amp/zipball/c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae",
90
- "reference": "c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae",
91
  "shasum": ""
92
  },
93
  "require": {
@@ -109,13 +148,13 @@
109
  }
110
  },
111
  "autoload": {
112
- "psr-4": {
113
- "Amp\\": "lib"
114
- },
115
  "files": [
116
  "lib/functions.php",
117
  "lib/Internal/functions.php"
118
- ]
 
 
 
119
  },
120
  "notification-url": "https://packagist.org/downloads/",
121
  "license": [
@@ -140,7 +179,7 @@
140
  }
141
  ],
142
  "description": "A non-blocking concurrency framework for PHP applications.",
143
- "homepage": "http://amphp.org/amp",
144
  "keywords": [
145
  "async",
146
  "asynchronous",
@@ -155,7 +194,7 @@
155
  "support": {
156
  "irc": "irc://irc.freenode.org/amphp",
157
  "issues": "https://github.com/amphp/amp/issues",
158
- "source": "https://github.com/amphp/amp/tree/v2.6.1"
159
  },
160
  "funding": [
161
  {
@@ -163,7 +202,7 @@
163
  "type": "github"
164
  }
165
  ],
166
- "time": "2021-09-23T18:43:08+00:00"
167
  },
168
  {
169
  "name": "amphp/byte-stream",
@@ -198,12 +237,12 @@
198
  }
199
  },
200
  "autoload": {
201
- "psr-4": {
202
- "Amp\\ByteStream\\": "lib"
203
- },
204
  "files": [
205
  "lib/functions.php"
206
- ]
 
 
 
207
  },
208
  "notification-url": "https://packagist.org/downloads/",
209
  "license": [
@@ -244,16 +283,16 @@
244
  },
245
  {
246
  "name": "antecedent/patchwork",
247
- "version": "2.1.19",
248
  "source": {
249
  "type": "git",
250
  "url": "https://github.com/antecedent/patchwork.git",
251
- "reference": "94fe587cb0a6c1695b1ddc650e877231be80b8bc"
252
  },
253
  "dist": {
254
  "type": "zip",
255
- "url": "https://api.github.com/repos/antecedent/patchwork/zipball/94fe587cb0a6c1695b1ddc650e877231be80b8bc",
256
- "reference": "94fe587cb0a6c1695b1ddc650e877231be80b8bc",
257
  "shasum": ""
258
  },
259
  "require": {
@@ -286,9 +325,148 @@
286
  ],
287
  "support": {
288
  "issues": "https://github.com/antecedent/patchwork/issues",
289
- "source": "https://github.com/antecedent/patchwork/tree/2.1.19"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  },
291
- "time": "2022-01-20T04:47:04+00:00"
292
  },
293
  {
294
  "name": "behat/gherkin",
@@ -353,18 +531,67 @@
353
  },
354
  "time": "2021-10-12T13:05:09+00:00"
355
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
356
  {
357
  "name": "bordoni/phpass",
358
- "version": "0.3.5",
359
  "source": {
360
  "type": "git",
361
  "url": "https://github.com/bordoni/phpass.git",
362
- "reference": "fd57c109213e95150b7de1dc8908c55605cd8e55"
363
  },
364
  "dist": {
365
  "type": "zip",
366
- "url": "https://api.github.com/repos/bordoni/phpass/zipball/fd57c109213e95150b7de1dc8908c55605cd8e55",
367
- "reference": "fd57c109213e95150b7de1dc8908c55605cd8e55",
368
  "shasum": ""
369
  },
370
  "require": {
@@ -396,7 +623,7 @@
396
  }
397
  ],
398
  "description": "Portable PHP password hashing framework",
399
- "homepage": "http://github.com/hautelook/phpass/",
400
  "keywords": [
401
  "blowfish",
402
  "crypt",
@@ -405,22 +632,22 @@
405
  ],
406
  "support": {
407
  "issues": "https://github.com/bordoni/phpass/issues",
408
- "source": "https://github.com/bordoni/phpass/tree/0.3.5"
409
  },
410
  "time": "2012-08-31T00:00:00+00:00"
411
  },
412
  {
413
  "name": "codeception/codeception",
414
- "version": "4.1.28",
415
  "source": {
416
  "type": "git",
417
  "url": "https://github.com/Codeception/Codeception.git",
418
- "reference": "e9bc22a3819f9d356068c0e372193ebcc9b06014"
419
  },
420
  "dist": {
421
  "type": "zip",
422
- "url": "https://api.github.com/repos/Codeception/Codeception/zipball/e9bc22a3819f9d356068c0e372193ebcc9b06014",
423
- "reference": "e9bc22a3819f9d356068c0e372193ebcc9b06014",
424
  "shasum": ""
425
  },
426
  "require": {
@@ -467,13 +694,13 @@
467
  "branch-alias": []
468
  },
469
  "autoload": {
 
 
 
470
  "psr-4": {
471
  "Codeception\\": "src/Codeception",
472
  "Codeception\\Extension\\": "ext"
473
- },
474
- "files": [
475
- "functions.php"
476
- ]
477
  },
478
  "notification-url": "https://packagist.org/downloads/",
479
  "license": [
@@ -497,7 +724,7 @@
497
  ],
498
  "support": {
499
  "issues": "https://github.com/Codeception/Codeception/issues",
500
- "source": "https://github.com/Codeception/Codeception/tree/4.1.28"
501
  },
502
  "funding": [
503
  {
@@ -505,7 +732,7 @@
505
  "type": "open_collective"
506
  }
507
  ],
508
- "time": "2022-01-05T16:41:25+00:00"
509
  },
510
  {
511
  "name": "codeception/lib-asserts",
@@ -727,16 +954,16 @@
727
  },
728
  {
729
  "name": "codeception/module-db",
730
- "version": "1.1.0",
731
  "source": {
732
  "type": "git",
733
  "url": "https://github.com/Codeception/module-db.git",
734
- "reference": "8c8076cd05d4db95798acd7dba2a56578210982c"
735
  },
736
  "dist": {
737
  "type": "zip",
738
- "url": "https://api.github.com/repos/Codeception/module-db/zipball/8c8076cd05d4db95798acd7dba2a56578210982c",
739
- "reference": "8c8076cd05d4db95798acd7dba2a56578210982c",
740
  "shasum": ""
741
  },
742
  "require": {
@@ -773,9 +1000,9 @@
773
  ],
774
  "support": {
775
  "issues": "https://github.com/Codeception/module-db/issues",
776
- "source": "https://github.com/Codeception/module-db/tree/1.1.0"
777
  },
778
- "time": "2020-12-20T13:37:07+00:00"
779
  },
780
  {
781
  "name": "codeception/module-filesystem",
@@ -831,20 +1058,20 @@
831
  },
832
  {
833
  "name": "codeception/module-phpbrowser",
834
- "version": "1.0.2",
835
  "source": {
836
  "type": "git",
837
  "url": "https://github.com/Codeception/module-phpbrowser.git",
838
- "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1"
839
  },
840
  "dist": {
841
  "type": "zip",
842
- "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/770a6be4160a5c0c08d100dd51bff35f6056bbf1",
843
- "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1",
844
  "shasum": ""
845
  },
846
  "require": {
847
- "codeception/codeception": "^4.0",
848
  "codeception/lib-innerbrowser": "^1.3",
849
  "guzzlehttp/guzzle": "^6.3|^7.0",
850
  "php": ">=5.6.0 <9.0"
@@ -885,9 +1112,9 @@
885
  ],
886
  "support": {
887
  "issues": "https://github.com/Codeception/module-phpbrowser/issues",
888
- "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.2"
889
  },
890
- "time": "2020-10-24T15:29:28+00:00"
891
  },
892
  {
893
  "name": "codeception/module-rest",
@@ -1045,16 +1272,16 @@
1045
  },
1046
  {
1047
  "name": "codeception/phpunit-wrapper",
1048
- "version": "9.0.7",
1049
  "source": {
1050
  "type": "git",
1051
  "url": "https://github.com/Codeception/phpunit-wrapper.git",
1052
- "reference": "7d6b1a5ea4ed28d010e5d36b993db813eb49710b"
1053
  },
1054
  "dist": {
1055
  "type": "zip",
1056
- "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7d6b1a5ea4ed28d010e5d36b993db813eb49710b",
1057
- "reference": "7d6b1a5ea4ed28d010e5d36b993db813eb49710b",
1058
  "shasum": ""
1059
  },
1060
  "require": {
@@ -1088,27 +1315,27 @@
1088
  "description": "PHPUnit classes used by Codeception",
1089
  "support": {
1090
  "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
1091
- "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.7"
1092
  },
1093
- "time": "2022-01-26T14:43:10+00:00"
1094
  },
1095
  {
1096
  "name": "codeception/stub",
1097
- "version": "4.0.1",
1098
  "source": {
1099
  "type": "git",
1100
  "url": "https://github.com/Codeception/Stub.git",
1101
- "reference": "ce0a9e418c775ca8b737d50c2b4ac1132f3990d8"
1102
  },
1103
  "dist": {
1104
  "type": "zip",
1105
- "url": "https://api.github.com/repos/Codeception/Stub/zipball/ce0a9e418c775ca8b737d50c2b4ac1132f3990d8",
1106
- "reference": "ce0a9e418c775ca8b737d50c2b4ac1132f3990d8",
1107
  "shasum": ""
1108
  },
1109
  "require": {
1110
  "php": "^7.4 | ^8.0",
1111
- "phpunit/phpunit": "^8.4 | ^9.0"
1112
  },
1113
  "require-dev": {
1114
  "consolidation/robo": "^3.0"
@@ -1126,9 +1353,9 @@
1126
  "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
1127
  "support": {
1128
  "issues": "https://github.com/Codeception/Stub/issues",
1129
- "source": "https://github.com/Codeception/Stub/tree/4.0.1"
1130
  },
1131
- "time": "2022-01-08T09:35:36+00:00"
1132
  },
1133
  {
1134
  "name": "codeception/util-universalframework",
@@ -1242,30 +1469,30 @@
1242
  },
1243
  {
1244
  "name": "composer/pcre",
1245
- "version": "1.0.1",
1246
  "source": {
1247
  "type": "git",
1248
  "url": "https://github.com/composer/pcre.git",
1249
- "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560"
1250
  },
1251
  "dist": {
1252
  "type": "zip",
1253
- "url": "https://api.github.com/repos/composer/pcre/zipball/67a32d7d6f9f560b726ab25a061b38ff3a80c560",
1254
- "reference": "67a32d7d6f9f560b726ab25a061b38ff3a80c560",
1255
  "shasum": ""
1256
  },
1257
  "require": {
1258
- "php": "^5.3.2 || ^7.0 || ^8.0"
1259
  },
1260
  "require-dev": {
1261
  "phpstan/phpstan": "^1.3",
1262
  "phpstan/phpstan-strict-rules": "^1.1",
1263
- "symfony/phpunit-bridge": "^4.2 || ^5"
1264
  },
1265
  "type": "library",
1266
  "extra": {
1267
  "branch-alias": {
1268
- "dev-main": "1.x-dev"
1269
  }
1270
  },
1271
  "autoload": {
@@ -1293,7 +1520,7 @@
1293
  ],
1294
  "support": {
1295
  "issues": "https://github.com/composer/pcre/issues",
1296
- "source": "https://github.com/composer/pcre/tree/1.0.1"
1297
  },
1298
  "funding": [
1299
  {
@@ -1309,27 +1536,27 @@
1309
  "type": "tidelift"
1310
  }
1311
  ],
1312
- "time": "2022-01-21T20:24:37+00:00"
1313
  },
1314
  {
1315
  "name": "composer/semver",
1316
- "version": "3.2.7",
1317
  "source": {
1318
  "type": "git",
1319
  "url": "https://github.com/composer/semver.git",
1320
- "reference": "deac27056b57e46faf136fae7b449eeaa71661ee"
1321
  },
1322
  "dist": {
1323
  "type": "zip",
1324
- "url": "https://api.github.com/repos/composer/semver/zipball/deac27056b57e46faf136fae7b449eeaa71661ee",
1325
- "reference": "deac27056b57e46faf136fae7b449eeaa71661ee",
1326
  "shasum": ""
1327
  },
1328
  "require": {
1329
  "php": "^5.3.2 || ^7.0 || ^8.0"
1330
  },
1331
  "require-dev": {
1332
- "phpstan/phpstan": "^0.12.54",
1333
  "symfony/phpunit-bridge": "^4.2 || ^5"
1334
  },
1335
  "type": "library",
@@ -1374,7 +1601,7 @@
1374
  "support": {
1375
  "irc": "irc://irc.freenode.org/composer",
1376
  "issues": "https://github.com/composer/semver/issues",
1377
- "source": "https://github.com/composer/semver/tree/3.2.7"
1378
  },
1379
  "funding": [
1380
  {
@@ -1390,31 +1617,31 @@
1390
  "type": "tidelift"
1391
  }
1392
  ],
1393
- "time": "2022-01-04T09:57:54+00:00"
1394
  },
1395
  {
1396
  "name": "composer/xdebug-handler",
1397
- "version": "2.0.4",
1398
  "source": {
1399
  "type": "git",
1400
  "url": "https://github.com/composer/xdebug-handler.git",
1401
- "reference": "0c1a3925ec58a4ec98e992b9c7d171e9e184be0a"
1402
  },
1403
  "dist": {
1404
  "type": "zip",
1405
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/0c1a3925ec58a4ec98e992b9c7d171e9e184be0a",
1406
- "reference": "0c1a3925ec58a4ec98e992b9c7d171e9e184be0a",
1407
  "shasum": ""
1408
  },
1409
  "require": {
1410
- "composer/pcre": "^1",
1411
- "php": "^5.3.2 || ^7.0 || ^8.0",
1412
  "psr/log": "^1 || ^2 || ^3"
1413
  },
1414
  "require-dev": {
1415
  "phpstan/phpstan": "^1.0",
1416
  "phpstan/phpstan-strict-rules": "^1.1",
1417
- "symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0"
1418
  },
1419
  "type": "library",
1420
  "autoload": {
@@ -1440,7 +1667,7 @@
1440
  "support": {
1441
  "irc": "irc://irc.freenode.org/composer",
1442
  "issues": "https://github.com/composer/xdebug-handler/issues",
1443
- "source": "https://github.com/composer/xdebug-handler/tree/2.0.4"
1444
  },
1445
  "funding": [
1446
  {
@@ -1456,26 +1683,26 @@
1456
  "type": "tidelift"
1457
  }
1458
  ],
1459
- "time": "2022-01-04T17:06:45+00:00"
1460
  },
1461
  {
1462
  "name": "consolidation/annotated-command",
1463
- "version": "4.5.1",
1464
  "source": {
1465
  "type": "git",
1466
  "url": "https://github.com/consolidation/annotated-command.git",
1467
- "reference": "701a7abe8505abe89520837be798e15a3953a367"
1468
  },
1469
  "dist": {
1470
  "type": "zip",
1471
- "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/701a7abe8505abe89520837be798e15a3953a367",
1472
- "reference": "701a7abe8505abe89520837be798e15a3953a367",
1473
  "shasum": ""
1474
  },
1475
  "require": {
1476
  "consolidation/output-formatters": "^4.1.1",
1477
  "php": ">=7.1.3",
1478
- "psr/log": "^1|^2",
1479
  "symfony/console": "^4.4.8|^5|^6",
1480
  "symfony/event-dispatcher": "^4.4.8|^5|^6",
1481
  "symfony/finder": "^4.4.8|^5|^6"
@@ -1510,37 +1737,37 @@
1510
  "description": "Initialize Symfony Console commands from annotated command class methods.",
1511
  "support": {
1512
  "issues": "https://github.com/consolidation/annotated-command/issues",
1513
- "source": "https://github.com/consolidation/annotated-command/tree/4.5.1"
1514
  },
1515
- "time": "2021-12-30T04:00:37+00:00"
1516
  },
1517
  {
1518
  "name": "consolidation/config",
1519
- "version": "2.0.2",
1520
  "source": {
1521
  "type": "git",
1522
  "url": "https://github.com/consolidation/config.git",
1523
- "reference": "ce6a96fe858df4cc4252e2f48503151dc20a1559"
1524
  },
1525
  "dist": {
1526
  "type": "zip",
1527
- "url": "https://api.github.com/repos/consolidation/config/zipball/ce6a96fe858df4cc4252e2f48503151dc20a1559",
1528
- "reference": "ce6a96fe858df4cc4252e2f48503151dc20a1559",
1529
  "shasum": ""
1530
  },
1531
  "require": {
1532
- "dflydev/dot-access-data": "^1.1.0",
1533
- "grasmash/expander": "^1",
1534
  "php": ">=7.1.3",
1535
- "psr/log": "^1.1",
1536
- "symfony/event-dispatcher": "^4||^5"
1537
  },
1538
  "require-dev": {
 
1539
  "phpunit/phpunit": ">=7.5.20",
1540
  "squizlabs/php_codesniffer": "^3",
1541
- "symfony/console": "^4||^5",
1542
- "symfony/yaml": "^4||^5",
1543
- "yoast/phpunit-polyfills": "^0.2.0"
1544
  },
1545
  "suggest": {
1546
  "symfony/event-dispatcher": "Required to inject configuration into Command options",
@@ -1570,27 +1797,27 @@
1570
  "description": "Provide configuration services for a commandline tool.",
1571
  "support": {
1572
  "issues": "https://github.com/consolidation/config/issues",
1573
- "source": "https://github.com/consolidation/config/tree/2.0.2"
1574
  },
1575
- "time": "2021-12-30T03:53:15+00:00"
1576
  },
1577
  {
1578
  "name": "consolidation/log",
1579
- "version": "2.0.4",
1580
  "source": {
1581
  "type": "git",
1582
  "url": "https://github.com/consolidation/log.git",
1583
- "reference": "fc9ec5476ba13a31778695bd2d4f2fa0b0684356"
1584
  },
1585
  "dist": {
1586
  "type": "zip",
1587
- "url": "https://api.github.com/repos/consolidation/log/zipball/fc9ec5476ba13a31778695bd2d4f2fa0b0684356",
1588
- "reference": "fc9ec5476ba13a31778695bd2d4f2fa0b0684356",
1589
  "shasum": ""
1590
  },
1591
  "require": {
1592
  "php": ">=7.1.3",
1593
- "psr/log": "^1.0",
1594
  "symfony/console": "^4 || ^5 || ^6"
1595
  },
1596
  "require-dev": {
@@ -1622,26 +1849,26 @@
1622
  "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
1623
  "support": {
1624
  "issues": "https://github.com/consolidation/log/issues",
1625
- "source": "https://github.com/consolidation/log/tree/2.0.4"
1626
  },
1627
- "time": "2021-12-30T19:05:18+00:00"
1628
  },
1629
  {
1630
  "name": "consolidation/output-formatters",
1631
- "version": "4.2.1",
1632
  "source": {
1633
  "type": "git",
1634
  "url": "https://github.com/consolidation/output-formatters.git",
1635
- "reference": "4413d7c732afb5d7bdac565c41aa9c8c49c48888"
1636
  },
1637
  "dist": {
1638
  "type": "zip",
1639
- "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/4413d7c732afb5d7bdac565c41aa9c8c49c48888",
1640
- "reference": "4413d7c732afb5d7bdac565c41aa9c8c49c48888",
1641
  "shasum": ""
1642
  },
1643
  "require": {
1644
- "dflydev/dot-access-data": "^1.1.0",
1645
  "php": ">=7.1.3",
1646
  "symfony/console": "^4|^5|^6",
1647
  "symfony/finder": "^4|^5|^6"
@@ -1681,22 +1908,22 @@
1681
  "description": "Format text by applying transformations provided by plug-in formatters.",
1682
  "support": {
1683
  "issues": "https://github.com/consolidation/output-formatters/issues",
1684
- "source": "https://github.com/consolidation/output-formatters/tree/4.2.1"
1685
  },
1686
- "time": "2021-12-30T03:58:00+00:00"
1687
  },
1688
  {
1689
  "name": "consolidation/robo",
1690
- "version": "3.0.7",
1691
  "source": {
1692
  "type": "git",
1693
  "url": "https://github.com/consolidation/robo.git",
1694
- "reference": "57012db2a93c904ed0a7b9d8676c0325c0366bc8"
1695
  },
1696
  "dist": {
1697
  "type": "zip",
1698
- "url": "https://api.github.com/repos/consolidation/robo/zipball/57012db2a93c904ed0a7b9d8676c0325c0366bc8",
1699
- "reference": "57012db2a93c904ed0a7b9d8676c0325c0366bc8",
1700
  "shasum": ""
1701
  },
1702
  "require": {
@@ -1705,13 +1932,13 @@
1705
  "consolidation/log": "^1.1.1 || ^2.0.2",
1706
  "consolidation/output-formatters": "^4.1.2",
1707
  "consolidation/self-update": "^2.0",
1708
- "league/container": "^3.3.1",
1709
  "php": ">=7.1.3",
1710
  "symfony/console": "^4.4.19 || ^5 || ^6",
1711
  "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6",
1712
  "symfony/filesystem": "^4.4.9 || ^5 || ^6",
1713
  "symfony/finder": "^4.4.9 || ^5 || ^6",
1714
- "symfony/process": "^4.4.9 || ^5",
1715
  "symfony/yaml": "^4.4 || ^5 || ^6"
1716
  },
1717
  "conflict": {
@@ -1780,22 +2007,22 @@
1780
  "description": "Modern task runner",
1781
  "support": {
1782
  "issues": "https://github.com/consolidation/robo/issues",
1783
- "source": "https://github.com/consolidation/robo/tree/3.0.7"
1784
  },
1785
- "time": "2021-12-31T01:01:31+00:00"
1786
  },
1787
  {
1788
  "name": "consolidation/self-update",
1789
- "version": "2.0.3",
1790
  "source": {
1791
  "type": "git",
1792
  "url": "https://github.com/consolidation/self-update.git",
1793
- "reference": "117dcc9494dc970a6ae307103c41d654e6253bc4"
1794
  },
1795
  "dist": {
1796
  "type": "zip",
1797
- "url": "https://api.github.com/repos/consolidation/self-update/zipball/117dcc9494dc970a6ae307103c41d654e6253bc4",
1798
- "reference": "117dcc9494dc970a6ae307103c41d654e6253bc4",
1799
  "shasum": ""
1800
  },
1801
  "require": {
@@ -1835,33 +2062,33 @@
1835
  "description": "Provides a self:update command for Symfony Console applications.",
1836
  "support": {
1837
  "issues": "https://github.com/consolidation/self-update/issues",
1838
- "source": "https://github.com/consolidation/self-update/tree/2.0.3"
1839
  },
1840
- "time": "2021-12-30T19:08:32+00:00"
1841
  },
1842
  {
1843
  "name": "dealerdirect/phpcodesniffer-composer-installer",
1844
- "version": "v0.7.1",
1845
  "source": {
1846
  "type": "git",
1847
  "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
1848
- "reference": "fe390591e0241955f22eb9ba327d137e501c771c"
1849
  },
1850
  "dist": {
1851
  "type": "zip",
1852
- "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/fe390591e0241955f22eb9ba327d137e501c771c",
1853
- "reference": "fe390591e0241955f22eb9ba327d137e501c771c",
1854
  "shasum": ""
1855
  },
1856
  "require": {
1857
  "composer-plugin-api": "^1.0 || ^2.0",
1858
  "php": ">=5.3",
1859
- "squizlabs/php_codesniffer": "^2.0 || ^3.0 || ^4.0"
1860
  },
1861
  "require-dev": {
1862
  "composer/composer": "*",
1863
- "phpcompatibility/php-compatibility": "^9.0",
1864
- "sensiolabs/security-checker": "^4.1.0"
1865
  },
1866
  "type": "composer-plugin",
1867
  "extra": {
@@ -1882,6 +2109,10 @@
1882
  "email": "franck.nijhof@dealerdirect.com",
1883
  "homepage": "http://www.frenck.nl",
1884
  "role": "Developer / IT Manager"
 
 
 
 
1885
  }
1886
  ],
1887
  "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
@@ -1893,6 +2124,7 @@
1893
  "codesniffer",
1894
  "composer",
1895
  "installer",
 
1896
  "phpcs",
1897
  "plugin",
1898
  "qa",
@@ -1907,34 +2139,41 @@
1907
  "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
1908
  "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
1909
  },
1910
- "time": "2020-12-07T18:04:37+00:00"
1911
  },
1912
  {
1913
  "name": "dflydev/dot-access-data",
1914
- "version": "v1.1.0",
1915
  "source": {
1916
  "type": "git",
1917
  "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
1918
- "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
1919
  },
1920
  "dist": {
1921
  "type": "zip",
1922
- "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
1923
- "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
1924
  "shasum": ""
1925
  },
1926
  "require": {
1927
- "php": ">=5.3.2"
 
 
 
 
 
 
 
1928
  },
1929
  "type": "library",
1930
  "extra": {
1931
  "branch-alias": {
1932
- "dev-master": "1.0-dev"
1933
  }
1934
  },
1935
  "autoload": {
1936
- "psr-0": {
1937
- "Dflydev\\DotAccessData": "src"
1938
  }
1939
  },
1940
  "notification-url": "https://packagist.org/downloads/",
@@ -1956,6 +2195,11 @@
1956
  "name": "Carlos Frutos",
1957
  "email": "carlos@kiwing.it",
1958
  "homepage": "https://github.com/cfrutos"
 
 
 
 
 
1959
  }
1960
  ],
1961
  "description": "Given a deep data structure, access data by dot notation.",
@@ -1968,9 +2212,9 @@
1968
  ],
1969
  "support": {
1970
  "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
1971
- "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
1972
  },
1973
- "time": "2017-01-20T21:14:22+00:00"
1974
  },
1975
  {
1976
  "name": "dg/mysql-dump",
@@ -2217,29 +2461,30 @@
2217
  },
2218
  {
2219
  "name": "doctrine/instantiator",
2220
- "version": "1.4.0",
2221
  "source": {
2222
  "type": "git",
2223
  "url": "https://github.com/doctrine/instantiator.git",
2224
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
2225
  },
2226
  "dist": {
2227
  "type": "zip",
2228
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
2229
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
2230
  "shasum": ""
2231
  },
2232
  "require": {
2233
  "php": "^7.1 || ^8.0"
2234
  },
2235
  "require-dev": {
2236
- "doctrine/coding-standard": "^8.0",
2237
  "ext-pdo": "*",
2238
  "ext-phar": "*",
2239
- "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
2240
- "phpstan/phpstan": "^0.12",
2241
- "phpstan/phpstan-phpunit": "^0.12",
2242
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
 
2243
  },
2244
  "type": "library",
2245
  "autoload": {
@@ -2266,7 +2511,7 @@
2266
  ],
2267
  "support": {
2268
  "issues": "https://github.com/doctrine/instantiator/issues",
2269
- "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
2270
  },
2271
  "funding": [
2272
  {
@@ -2282,20 +2527,20 @@
2282
  "type": "tidelift"
2283
  }
2284
  ],
2285
- "time": "2020-11-10T18:47:58+00:00"
2286
  },
2287
  {
2288
  "name": "doctrine/lexer",
2289
- "version": "1.2.2",
2290
  "source": {
2291
  "type": "git",
2292
  "url": "https://github.com/doctrine/lexer.git",
2293
- "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c"
2294
  },
2295
  "dist": {
2296
  "type": "zip",
2297
- "url": "https://api.github.com/repos/doctrine/lexer/zipball/9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
2298
- "reference": "9c50f840f257bbb941e6f4a0e94ccf5db5c3f76c",
2299
  "shasum": ""
2300
  },
2301
  "require": {
@@ -2303,7 +2548,7 @@
2303
  },
2304
  "require-dev": {
2305
  "doctrine/coding-standard": "^9.0",
2306
- "phpstan/phpstan": "1.3",
2307
  "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
2308
  "vimeo/psalm": "^4.11"
2309
  },
@@ -2342,7 +2587,7 @@
2342
  ],
2343
  "support": {
2344
  "issues": "https://github.com/doctrine/lexer/issues",
2345
- "source": "https://github.com/doctrine/lexer/tree/1.2.2"
2346
  },
2347
  "funding": [
2348
  {
@@ -2358,7 +2603,65 @@
2358
  "type": "tidelift"
2359
  }
2360
  ],
2361
- "time": "2022-01-12T08:27:12+00:00"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2362
  },
2363
  {
2364
  "name": "felixfbecker/advanced-json-rpc",
@@ -2407,16 +2710,16 @@
2407
  },
2408
  {
2409
  "name": "felixfbecker/language-server-protocol",
2410
- "version": "1.5.1",
2411
  "source": {
2412
  "type": "git",
2413
  "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
2414
- "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730"
2415
  },
2416
  "dist": {
2417
  "type": "zip",
2418
- "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
2419
- "reference": "9d846d1f5cf101deee7a61c8ba7caa0a975cd730",
2420
  "shasum": ""
2421
  },
2422
  "require": {
@@ -2457,58 +2760,58 @@
2457
  ],
2458
  "support": {
2459
  "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
2460
- "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/1.5.1"
2461
  },
2462
- "time": "2021-02-22T14:02:09+00:00"
2463
  },
2464
  {
2465
  "name": "friendsofphp/php-cs-fixer",
2466
- "version": "v3.4.0",
2467
  "source": {
2468
  "type": "git",
2469
  "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
2470
- "reference": "47177af1cfb9dab5d1cc4daf91b7179c2efe7fad"
2471
  },
2472
  "dist": {
2473
  "type": "zip",
2474
- "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/47177af1cfb9dab5d1cc4daf91b7179c2efe7fad",
2475
- "reference": "47177af1cfb9dab5d1cc4daf91b7179c2efe7fad",
2476
  "shasum": ""
2477
  },
2478
  "require": {
2479
  "composer/semver": "^3.2",
2480
- "composer/xdebug-handler": "^2.0",
2481
- "doctrine/annotations": "^1.12",
2482
  "ext-json": "*",
2483
  "ext-tokenizer": "*",
2484
- "php": "^7.2.5 || ^8.0",
2485
  "php-cs-fixer/diff": "^2.0",
2486
- "symfony/console": "^4.4.20 || ^5.1.3 || ^6.0",
2487
- "symfony/event-dispatcher": "^4.4.20 || ^5.0 || ^6.0",
2488
- "symfony/filesystem": "^4.4.20 || ^5.0 || ^6.0",
2489
- "symfony/finder": "^4.4.20 || ^5.0 || ^6.0",
2490
- "symfony/options-resolver": "^4.4.20 || ^5.0 || ^6.0",
2491
  "symfony/polyfill-mbstring": "^1.23",
2492
- "symfony/polyfill-php80": "^1.23",
2493
- "symfony/polyfill-php81": "^1.23",
2494
- "symfony/process": "^4.4.20 || ^5.0 || ^6.0",
2495
- "symfony/stopwatch": "^4.4.20 || ^5.0 || ^6.0"
2496
  },
2497
  "require-dev": {
2498
  "justinrainbow/json-schema": "^5.2",
2499
  "keradus/cli-executor": "^1.5",
2500
- "mikey179/vfsstream": "^1.6.8",
2501
  "php-coveralls/php-coveralls": "^2.5.2",
2502
  "php-cs-fixer/accessible-object": "^1.1",
2503
  "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
2504
  "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
2505
  "phpspec/prophecy": "^1.15",
2506
- "phpspec/prophecy-phpunit": "^1.1 || ^2.0",
2507
- "phpunit/phpunit": "^8.5.21 || ^9.5",
2508
  "phpunitgoodpractices/polyfill": "^1.5",
2509
  "phpunitgoodpractices/traits": "^1.9.1",
2510
- "symfony/phpunit-bridge": "^5.2.4 || ^6.0",
2511
- "symfony/yaml": "^4.4.20 || ^5.0 || ^6.0"
2512
  },
2513
  "suggest": {
2514
  "ext-dom": "For handling output formats in XML",
@@ -2540,7 +2843,7 @@
2540
  "description": "A tool to automatically fix PHP code style",
2541
  "support": {
2542
  "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
2543
- "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v3.4.0"
2544
  },
2545
  "funding": [
2546
  {
@@ -2548,7 +2851,7 @@
2548
  "type": "github"
2549
  }
2550
  ],
2551
- "time": "2021-12-11T16:25:08+00:00"
2552
  },
2553
  {
2554
  "name": "gettext/gettext",
@@ -2707,27 +3010,27 @@
2707
  },
2708
  {
2709
  "name": "grasmash/expander",
2710
- "version": "1.0.0",
2711
  "source": {
2712
  "type": "git",
2713
  "url": "https://github.com/grasmash/expander.git",
2714
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
2715
  },
2716
  "dist": {
2717
  "type": "zip",
2718
- "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
2719
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
2720
  "shasum": ""
2721
  },
2722
  "require": {
2723
- "dflydev/dot-access-data": "^1.1.0",
2724
- "php": ">=5.4"
 
2725
  },
2726
  "require-dev": {
2727
  "greg-1-anderson/composer-test-scenarios": "^1",
2728
- "phpunit/phpunit": "^4|^5.5.4",
2729
- "satooshi/php-coveralls": "^1.0.2|dev-master",
2730
- "squizlabs/php_codesniffer": "^2.7"
2731
  },
2732
  "type": "library",
2733
  "extra": {
@@ -2752,22 +3055,22 @@
2752
  "description": "Expands internal property references in PHP arrays file.",
2753
  "support": {
2754
  "issues": "https://github.com/grasmash/expander/issues",
2755
- "source": "https://github.com/grasmash/expander/tree/master"
2756
  },
2757
- "time": "2017-12-21T22:14:55+00:00"
2758
  },
2759
  {
2760
  "name": "guzzlehttp/guzzle",
2761
- "version": "7.4.1",
2762
  "source": {
2763
  "type": "git",
2764
  "url": "https://github.com/guzzle/guzzle.git",
2765
- "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79"
2766
  },
2767
  "dist": {
2768
  "type": "zip",
2769
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
2770
- "reference": "ee0a041b1760e6a53d2a39c8c34115adc2af2c79",
2771
  "shasum": ""
2772
  },
2773
  "require": {
@@ -2800,12 +3103,12 @@
2800
  }
2801
  },
2802
  "autoload": {
2803
- "psr-4": {
2804
- "GuzzleHttp\\": "src/"
2805
- },
2806
  "files": [
2807
  "src/functions_include.php"
2808
- ]
 
 
 
2809
  },
2810
  "notification-url": "https://packagist.org/downloads/",
2811
  "license": [
@@ -2862,7 +3165,7 @@
2862
  ],
2863
  "support": {
2864
  "issues": "https://github.com/guzzle/guzzle/issues",
2865
- "source": "https://github.com/guzzle/guzzle/tree/7.4.1"
2866
  },
2867
  "funding": [
2868
  {
@@ -2878,7 +3181,7 @@
2878
  "type": "tidelift"
2879
  }
2880
  ],
2881
- "time": "2021-12-06T18:43:05+00:00"
2882
  },
2883
  {
2884
  "name": "guzzlehttp/promises",
@@ -2907,12 +3210,12 @@
2907
  }
2908
  },
2909
  "autoload": {
2910
- "psr-4": {
2911
- "GuzzleHttp\\Promise\\": "src/"
2912
- },
2913
  "files": [
2914
  "src/functions_include.php"
2915
- ]
 
 
 
2916
  },
2917
  "notification-url": "https://packagist.org/downloads/",
2918
  "license": [
@@ -2966,16 +3269,16 @@
2966
  },
2967
  {
2968
  "name": "guzzlehttp/psr7",
2969
- "version": "2.1.0",
2970
  "source": {
2971
  "type": "git",
2972
  "url": "https://github.com/guzzle/psr7.git",
2973
- "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72"
2974
  },
2975
  "dist": {
2976
  "type": "zip",
2977
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
2978
- "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
2979
  "shasum": ""
2980
  },
2981
  "require": {
@@ -2999,7 +3302,7 @@
2999
  "type": "library",
3000
  "extra": {
3001
  "branch-alias": {
3002
- "dev-master": "2.1-dev"
3003
  }
3004
  },
3005
  "autoload": {
@@ -3061,7 +3364,7 @@
3061
  ],
3062
  "support": {
3063
  "issues": "https://github.com/guzzle/psr7/issues",
3064
- "source": "https://github.com/guzzle/psr7/tree/2.1.0"
3065
  },
3066
  "funding": [
3067
  {
@@ -3077,20 +3380,20 @@
3077
  "type": "tidelift"
3078
  }
3079
  ],
3080
- "time": "2021-10-06T17:43:30+00:00"
3081
  },
3082
  {
3083
  "name": "illuminate/collections",
3084
- "version": "v8.81.0",
3085
  "source": {
3086
  "type": "git",
3087
  "url": "https://github.com/illuminate/collections.git",
3088
- "reference": "3933ab6b032167c0f7a598388e211c0810acf5d3"
3089
  },
3090
  "dist": {
3091
  "type": "zip",
3092
- "url": "https://api.github.com/repos/illuminate/collections/zipball/3933ab6b032167c0f7a598388e211c0810acf5d3",
3093
- "reference": "3933ab6b032167c0f7a598388e211c0810acf5d3",
3094
  "shasum": ""
3095
  },
3096
  "require": {
@@ -3108,12 +3411,12 @@
3108
  }
3109
  },
3110
  "autoload": {
3111
- "psr-4": {
3112
- "Illuminate\\Support\\": ""
3113
- },
3114
  "files": [
3115
  "helpers.php"
3116
- ]
 
 
 
3117
  },
3118
  "notification-url": "https://packagist.org/downloads/",
3119
  "license": [
@@ -3131,11 +3434,11 @@
3131
  "issues": "https://github.com/laravel/framework/issues",
3132
  "source": "https://github.com/laravel/framework"
3133
  },
3134
- "time": "2022-01-24T16:41:15+00:00"
3135
  },
3136
  {
3137
  "name": "illuminate/contracts",
3138
- "version": "v8.81.0",
3139
  "source": {
3140
  "type": "git",
3141
  "url": "https://github.com/illuminate/contracts.git",
@@ -3183,7 +3486,7 @@
3183
  },
3184
  {
3185
  "name": "illuminate/macroable",
3186
- "version": "v8.81.0",
3187
  "source": {
3188
  "type": "git",
3189
  "url": "https://github.com/illuminate/macroable.git",
@@ -3229,16 +3532,16 @@
3229
  },
3230
  {
3231
  "name": "illuminate/support",
3232
- "version": "v8.81.0",
3233
  "source": {
3234
  "type": "git",
3235
  "url": "https://github.com/illuminate/support.git",
3236
- "reference": "fb33fd4bbcc075f641d5576b700a1c3d962acef0"
3237
  },
3238
  "dist": {
3239
  "type": "zip",
3240
- "url": "https://api.github.com/repos/illuminate/support/zipball/fb33fd4bbcc075f641d5576b700a1c3d962acef0",
3241
- "reference": "fb33fd4bbcc075f641d5576b700a1c3d962acef0",
3242
  "shasum": ""
3243
  },
3244
  "require": {
@@ -3270,12 +3573,12 @@
3270
  }
3271
  },
3272
  "autoload": {
3273
- "psr-4": {
3274
- "Illuminate\\Support\\": ""
3275
- },
3276
  "files": [
3277
  "helpers.php"
3278
- ]
 
 
 
3279
  },
3280
  "notification-url": "https://packagist.org/downloads/",
3281
  "license": [
@@ -3293,20 +3596,20 @@
3293
  "issues": "https://github.com/laravel/framework/issues",
3294
  "source": "https://github.com/laravel/framework"
3295
  },
3296
- "time": "2022-01-25T16:10:28+00:00"
3297
  },
3298
  {
3299
  "name": "justinrainbow/json-schema",
3300
- "version": "5.2.11",
3301
  "source": {
3302
  "type": "git",
3303
  "url": "https://github.com/justinrainbow/json-schema.git",
3304
- "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa"
3305
  },
3306
  "dist": {
3307
  "type": "zip",
3308
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa",
3309
- "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa",
3310
  "shasum": ""
3311
  },
3312
  "require": {
@@ -3361,27 +3664,27 @@
3361
  ],
3362
  "support": {
3363
  "issues": "https://github.com/justinrainbow/json-schema/issues",
3364
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11"
3365
  },
3366
- "time": "2021-07-22T09:24:00+00:00"
3367
  },
3368
  {
3369
  "name": "league/container",
3370
- "version": "3.4.1",
3371
  "source": {
3372
  "type": "git",
3373
  "url": "https://github.com/thephpleague/container.git",
3374
- "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd"
3375
  },
3376
  "dist": {
3377
  "type": "zip",
3378
- "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
3379
- "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
3380
  "shasum": ""
3381
  },
3382
  "require": {
3383
- "php": "^7.0 || ^8.0",
3384
- "psr/container": "^1.0.0"
3385
  },
3386
  "provide": {
3387
  "psr/container-implementation": "^1.0"
@@ -3390,15 +3693,19 @@
3390
  "orno/di": "~2.0"
3391
  },
3392
  "require-dev": {
3393
- "phpunit/phpunit": "^6.0 || ^7.0",
 
 
 
3394
  "roave/security-advisories": "dev-latest",
3395
  "scrutinizer/ocular": "^1.8",
3396
- "squizlabs/php_codesniffer": "^3.5"
3397
  },
3398
  "type": "library",
3399
  "extra": {
3400
  "branch-alias": {
3401
- "dev-master": "3.x-dev",
 
3402
  "dev-3.x": "3.x-dev",
3403
  "dev-2.x": "2.x-dev",
3404
  "dev-1.x": "1.x-dev"
@@ -3416,8 +3723,7 @@
3416
  "authors": [
3417
  {
3418
  "name": "Phil Bennett",
3419
- "email": "philipobenito@gmail.com",
3420
- "homepage": "http://www.philipobenito.com",
3421
  "role": "Developer"
3422
  }
3423
  ],
@@ -3434,7 +3740,7 @@
3434
  ],
3435
  "support": {
3436
  "issues": "https://github.com/thephpleague/container/issues",
3437
- "source": "https://github.com/thephpleague/container/tree/3.4.1"
3438
  },
3439
  "funding": [
3440
  {
@@ -3442,20 +3748,20 @@
3442
  "type": "github"
3443
  }
3444
  ],
3445
- "time": "2021-07-09T08:23:52+00:00"
3446
  },
3447
  {
3448
  "name": "lucatume/wp-browser",
3449
- "version": "3.0.22",
3450
  "source": {
3451
  "type": "git",
3452
  "url": "https://github.com/lucatume/wp-browser.git",
3453
- "reference": "c695d8e2fd075b85e89be57b1c10aec64530287a"
3454
  },
3455
  "dist": {
3456
  "type": "zip",
3457
- "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/c695d8e2fd075b85e89be57b1c10aec64530287a",
3458
- "reference": "c695d8e2fd075b85e89be57b1c10aec64530287a",
3459
  "shasum": ""
3460
  },
3461
  "require": {
@@ -3484,6 +3790,8 @@
3484
  },
3485
  "require-dev": {
3486
  "erusev/parsedown": "^1.7",
 
 
3487
  "gumlet/php-image-resize": "^1.6",
3488
  "lucatume/codeception-snapshot-assertions": "^0.2",
3489
  "mikey179/vfsstream": "^1.6",
@@ -3507,14 +3815,15 @@
3507
  "_hash": "484f861f69198089cab0e642f27e5653"
3508
  },
3509
  "autoload": {
3510
- "psr-4": {
3511
- "Codeception\\": "src/Codeception",
3512
- "tad\\": "src/tad"
3513
- },
3514
  "files": [
3515
  "src/tad/WPBrowser/utils.php",
3516
  "src/tad/WPBrowser/wp-polyfills.php"
3517
- ]
 
 
 
 
 
3518
  },
3519
  "notification-url": "https://packagist.org/downloads/",
3520
  "license": [
@@ -3536,7 +3845,7 @@
3536
  ],
3537
  "support": {
3538
  "issues": "https://github.com/lucatume/wp-browser/issues",
3539
- "source": "https://github.com/lucatume/wp-browser/tree/3.0.22"
3540
  },
3541
  "funding": [
3542
  {
@@ -3544,20 +3853,20 @@
3544
  "type": "github"
3545
  }
3546
  ],
3547
- "time": "2022-01-14T08:41:20+00:00"
3548
  },
3549
  {
3550
  "name": "mck89/peast",
3551
- "version": "v1.13.11",
3552
  "source": {
3553
  "type": "git",
3554
  "url": "https://github.com/mck89/peast.git",
3555
- "reference": "78c57966f3da5f223636ea0417d71ac6ff61e47f"
3556
  },
3557
  "dist": {
3558
  "type": "zip",
3559
- "url": "https://api.github.com/repos/mck89/peast/zipball/78c57966f3da5f223636ea0417d71ac6ff61e47f",
3560
- "reference": "78c57966f3da5f223636ea0417d71ac6ff61e47f",
3561
  "shasum": ""
3562
  },
3563
  "require": {
@@ -3570,7 +3879,7 @@
3570
  "type": "library",
3571
  "extra": {
3572
  "branch-alias": {
3573
- "dev-master": "1.13.11-dev"
3574
  }
3575
  },
3576
  "autoload": {
@@ -3592,9 +3901,9 @@
3592
  "description": "Peast is PHP library that generates AST for JavaScript code",
3593
  "support": {
3594
  "issues": "https://github.com/mck89/peast/issues",
3595
- "source": "https://github.com/mck89/peast/tree/v1.13.11"
3596
  },
3597
- "time": "2022-01-11T17:58:18+00:00"
3598
  },
3599
  {
3600
  "name": "mikehaertl/php-shellcommand",
@@ -3661,9 +3970,6 @@
3661
  "illuminate/support": ">=4.0.0",
3662
  "php": ">=5.3.0"
3663
  },
3664
- "replace": {
3665
- "mikemclin/laravel-wp-password": "self.version"
3666
- },
3667
  "require-dev": {
3668
  "mockery/mockery": "~0.9",
3669
  "phpunit/phpunit": "~4.0",
@@ -3762,37 +4068,38 @@
3762
  },
3763
  {
3764
  "name": "myclabs/deep-copy",
3765
- "version": "1.10.2",
3766
  "source": {
3767
  "type": "git",
3768
  "url": "https://github.com/myclabs/DeepCopy.git",
3769
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
3770
  },
3771
  "dist": {
3772
  "type": "zip",
3773
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
3774
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
3775
  "shasum": ""
3776
  },
3777
  "require": {
3778
  "php": "^7.1 || ^8.0"
3779
  },
3780
- "replace": {
3781
- "myclabs/deep-copy": "self.version"
 
3782
  },
3783
  "require-dev": {
3784
- "doctrine/collections": "^1.0",
3785
- "doctrine/common": "^2.6",
3786
- "phpunit/phpunit": "^7.1"
3787
  },
3788
  "type": "library",
3789
  "autoload": {
3790
- "psr-4": {
3791
- "DeepCopy\\": "src/DeepCopy/"
3792
- },
3793
  "files": [
3794
  "src/DeepCopy/deep_copy.php"
3795
- ]
 
 
 
3796
  },
3797
  "notification-url": "https://packagist.org/downloads/",
3798
  "license": [
@@ -3808,7 +4115,7 @@
3808
  ],
3809
  "support": {
3810
  "issues": "https://github.com/myclabs/DeepCopy/issues",
3811
- "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
3812
  },
3813
  "funding": [
3814
  {
@@ -3816,7 +4123,7 @@
3816
  "type": "tidelift"
3817
  }
3818
  ],
3819
- "time": "2020-11-13T09:40:50+00:00"
3820
  },
3821
  {
3822
  "name": "n98/junit-xml",
@@ -3860,38 +4167,42 @@
3860
  },
3861
  {
3862
  "name": "nelexa/zip",
3863
- "version": "3.3.3",
3864
  "source": {
3865
  "type": "git",
3866
  "url": "https://github.com/Ne-Lexa/php-zip.git",
3867
- "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
3868
  },
3869
  "dist": {
3870
  "type": "zip",
3871
- "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
3872
- "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
3873
  "shasum": ""
3874
  },
3875
  "require": {
3876
  "ext-zlib": "*",
3877
- "paragonie/random_compat": "*",
3878
- "php": "^5.5.9 || ^7.0",
3879
- "psr/http-message": "^1.0",
3880
- "symfony/finder": "^3.0|^4.0|^5.0"
3881
  },
3882
  "require-dev": {
3883
  "ext-bz2": "*",
 
3884
  "ext-fileinfo": "*",
 
3885
  "ext-openssl": "*",
3886
  "ext-xml": "*",
 
3887
  "guzzlehttp/psr7": "^1.6",
3888
- "phpunit/phpunit": "^4.8|^5.7",
3889
- "symfony/var-dumper": "^3.0|^4.0|^5.0"
 
 
3890
  },
3891
  "suggest": {
3892
  "ext-bz2": "Needed to support BZIP2 compression",
3893
  "ext-fileinfo": "Needed to get mime-type file",
3894
- "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
3895
  "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
3896
  },
3897
  "type": "library",
@@ -3911,7 +4222,7 @@
3911
  "role": "Developer"
3912
  }
3913
  ],
3914
- "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
3915
  "homepage": "https://github.com/Ne-Lexa/php-zip",
3916
  "keywords": [
3917
  "archive",
@@ -3919,27 +4230,26 @@
3919
  "unzip",
3920
  "winzip",
3921
  "zip",
3922
- "zipalign",
3923
  "ziparchive"
3924
  ],
3925
  "support": {
3926
  "issues": "https://github.com/Ne-Lexa/php-zip/issues",
3927
- "source": "https://github.com/Ne-Lexa/php-zip/tree/3.3.3"
3928
  },
3929
- "time": "2020-07-11T21:01:42+00:00"
3930
  },
3931
  {
3932
  "name": "nesbot/carbon",
3933
- "version": "2.56.0",
3934
  "source": {
3935
  "type": "git",
3936
  "url": "https://github.com/briannesbitt/Carbon.git",
3937
- "reference": "626ec8cbb724cd3c3400c3ed8f730545b744e3f4"
3938
  },
3939
  "dist": {
3940
  "type": "zip",
3941
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/626ec8cbb724cd3c3400c3ed8f730545b744e3f4",
3942
- "reference": "626ec8cbb724cd3c3400c3ed8f730545b744e3f4",
3943
  "shasum": ""
3944
  },
3945
  "require": {
@@ -3957,7 +4267,8 @@
3957
  "phpmd/phpmd": "^2.9",
3958
  "phpstan/extension-installer": "^1.0",
3959
  "phpstan/phpstan": "^0.12.54 || ^1.0",
3960
- "phpunit/phpunit": "^7.5.20 || ^8.5.14",
 
3961
  "squizlabs/php_codesniffer": "^3.4"
3962
  },
3963
  "bin": [
@@ -4022,7 +4333,7 @@
4022
  "type": "tidelift"
4023
  }
4024
  ],
4025
- "time": "2022-01-21T17:08:38+00:00"
4026
  },
4027
  {
4028
  "name": "netresearch/jsonmapper",
@@ -4077,16 +4388,16 @@
4077
  },
4078
  {
4079
  "name": "nikic/php-parser",
4080
- "version": "v4.13.2",
4081
  "source": {
4082
  "type": "git",
4083
  "url": "https://github.com/nikic/PHP-Parser.git",
4084
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077"
4085
  },
4086
  "dist": {
4087
  "type": "zip",
4088
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/210577fe3cf7badcc5814d99455df46564f3c077",
4089
- "reference": "210577fe3cf7badcc5814d99455df46564f3c077",
4090
  "shasum": ""
4091
  },
4092
  "require": {
@@ -4127,9 +4438,9 @@
4127
  ],
4128
  "support": {
4129
  "issues": "https://github.com/nikic/PHP-Parser/issues",
4130
- "source": "https://github.com/nikic/PHP-Parser/tree/v4.13.2"
4131
  },
4132
- "time": "2021-11-30T19:35:32+00:00"
4133
  },
4134
  {
4135
  "name": "openlss/lib-array2xml",
@@ -4254,75 +4565,25 @@
4254
  },
4255
  "time": "2021-06-02T16:18:33+00:00"
4256
  },
4257
- {
4258
- "name": "paragonie/random_compat",
4259
- "version": "v9.99.100",
4260
- "source": {
4261
- "type": "git",
4262
- "url": "https://github.com/paragonie/random_compat.git",
4263
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
4264
- },
4265
- "dist": {
4266
- "type": "zip",
4267
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
4268
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
4269
- "shasum": ""
4270
- },
4271
- "require": {
4272
- "php": ">= 7"
4273
- },
4274
- "require-dev": {
4275
- "phpunit/phpunit": "4.*|5.*",
4276
- "vimeo/psalm": "^1"
4277
- },
4278
- "suggest": {
4279
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
4280
- },
4281
- "type": "library",
4282
- "notification-url": "https://packagist.org/downloads/",
4283
- "license": [
4284
- "MIT"
4285
- ],
4286
- "authors": [
4287
- {
4288
- "name": "Paragon Initiative Enterprises",
4289
- "email": "security@paragonie.com",
4290
- "homepage": "https://paragonie.com"
4291
- }
4292
- ],
4293
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
4294
- "keywords": [
4295
- "csprng",
4296
- "polyfill",
4297
- "pseudorandom",
4298
- "random"
4299
- ],
4300
- "support": {
4301
- "email": "info@paragonie.com",
4302
- "issues": "https://github.com/paragonie/random_compat/issues",
4303
- "source": "https://github.com/paragonie/random_compat"
4304
- },
4305
- "time": "2020-10-15T08:29:30+00:00"
4306
- },
4307
  {
4308
  "name": "pdepend/pdepend",
4309
- "version": "2.10.2",
4310
  "source": {
4311
  "type": "git",
4312
  "url": "https://github.com/pdepend/pdepend.git",
4313
- "reference": "c8c1d2af43fb8c2b5387d50e9c42a9c56de13686"
4314
  },
4315
  "dist": {
4316
  "type": "zip",
4317
- "url": "https://api.github.com/repos/pdepend/pdepend/zipball/c8c1d2af43fb8c2b5387d50e9c42a9c56de13686",
4318
- "reference": "c8c1d2af43fb8c2b5387d50e9c42a9c56de13686",
4319
  "shasum": ""
4320
  },
4321
  "require": {
4322
  "php": ">=5.3.7",
4323
- "symfony/config": "^2.3.0|^3|^4|^5",
4324
- "symfony/dependency-injection": "^2.3.0|^3|^4|^5",
4325
- "symfony/filesystem": "^2.3.0|^3|^4|^5"
4326
  },
4327
  "require-dev": {
4328
  "easy-doc/easy-doc": "0.0.0|^1.2.3",
@@ -4351,7 +4612,7 @@
4351
  "description": "Official version of pdepend to be handled with Composer",
4352
  "support": {
4353
  "issues": "https://github.com/pdepend/pdepend/issues",
4354
- "source": "https://github.com/pdepend/pdepend/tree/2.10.2"
4355
  },
4356
  "funding": [
4357
  {
@@ -4359,7 +4620,7 @@
4359
  "type": "tidelift"
4360
  }
4361
  ],
4362
- "time": "2021-11-16T20:05:32+00:00"
4363
  },
4364
  {
4365
  "name": "phar-io/manifest",
@@ -4525,16 +4786,16 @@
4525
  },
4526
  {
4527
  "name": "php-webdriver/webdriver",
4528
- "version": "1.12.0",
4529
  "source": {
4530
  "type": "git",
4531
  "url": "https://github.com/php-webdriver/php-webdriver.git",
4532
- "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb"
4533
  },
4534
  "dist": {
4535
  "type": "zip",
4536
- "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/99d4856ed7dffcdf6a52eccd6551e83d8d557ceb",
4537
- "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb",
4538
  "shasum": ""
4539
  },
4540
  "require": {
@@ -4562,12 +4823,12 @@
4562
  },
4563
  "type": "library",
4564
  "autoload": {
4565
- "psr-4": {
4566
- "Facebook\\WebDriver\\": "lib/"
4567
- },
4568
  "files": [
4569
  "lib/Exception/TimeoutException.php"
4570
- ]
 
 
 
4571
  },
4572
  "notification-url": "https://packagist.org/downloads/",
4573
  "license": [
@@ -4584,9 +4845,9 @@
4584
  ],
4585
  "support": {
4586
  "issues": "https://github.com/php-webdriver/php-webdriver/issues",
4587
- "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.0"
4588
  },
4589
- "time": "2021-10-14T09:30:02+00:00"
4590
  },
4591
  {
4592
  "name": "phpcompatibility/php-compatibility",
@@ -4762,16 +5023,16 @@
4762
  },
4763
  {
4764
  "name": "phpdocumentor/type-resolver",
4765
- "version": "1.6.0",
4766
  "source": {
4767
  "type": "git",
4768
  "url": "https://github.com/phpDocumentor/TypeResolver.git",
4769
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706"
4770
  },
4771
  "dist": {
4772
  "type": "zip",
4773
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/93ebd0014cab80c4ea9f5e297ea48672f1b87706",
4774
- "reference": "93ebd0014cab80c4ea9f5e297ea48672f1b87706",
4775
  "shasum": ""
4776
  },
4777
  "require": {
@@ -4806,28 +5067,28 @@
4806
  "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
4807
  "support": {
4808
  "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
4809
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.0"
4810
  },
4811
- "time": "2022-01-04T19:58:01+00:00"
4812
  },
4813
  {
4814
  "name": "phpmd/phpmd",
4815
- "version": "2.11.1",
4816
  "source": {
4817
  "type": "git",
4818
  "url": "https://github.com/phpmd/phpmd.git",
4819
- "reference": "08b60a2eb7e14c23f46ff8865b510ae08b75d0fd"
4820
  },
4821
  "dist": {
4822
  "type": "zip",
4823
- "url": "https://api.github.com/repos/phpmd/phpmd/zipball/08b60a2eb7e14c23f46ff8865b510ae08b75d0fd",
4824
- "reference": "08b60a2eb7e14c23f46ff8865b510ae08b75d0fd",
4825
  "shasum": ""
4826
  },
4827
  "require": {
4828
- "composer/xdebug-handler": "^1.0 || ^2.0",
4829
  "ext-xml": "*",
4830
- "pdepend/pdepend": "^2.10.2",
4831
  "php": ">=5.3.9"
4832
  },
4833
  "require-dev": {
@@ -4883,7 +5144,7 @@
4883
  "support": {
4884
  "irc": "irc://irc.freenode.org/phpmd",
4885
  "issues": "https://github.com/phpmd/phpmd/issues",
4886
- "source": "https://github.com/phpmd/phpmd/tree/2.11.1"
4887
  },
4888
  "funding": [
4889
  {
@@ -4891,7 +5152,7 @@
4891
  "type": "tidelift"
4892
  }
4893
  ],
4894
- "time": "2021-12-17T11:25:43+00:00"
4895
  },
4896
  {
4897
  "name": "phpspec/prophecy",
@@ -4962,20 +5223,20 @@
4962
  },
4963
  {
4964
  "name": "phpstan/phpstan",
4965
- "version": "1.4.2",
4966
  "source": {
4967
  "type": "git",
4968
  "url": "https://github.com/phpstan/phpstan.git",
4969
- "reference": "1dd8f3e40bf7aa30031a75c65cece99220a161b8"
4970
  },
4971
  "dist": {
4972
  "type": "zip",
4973
- "url": "https://api.github.com/repos/phpstan/phpstan/zipball/1dd8f3e40bf7aa30031a75c65cece99220a161b8",
4974
- "reference": "1dd8f3e40bf7aa30031a75c65cece99220a161b8",
4975
  "shasum": ""
4976
  },
4977
  "require": {
4978
- "php": "^7.1|^8.0"
4979
  },
4980
  "conflict": {
4981
  "phpstan/phpstan-shim": "*"
@@ -4985,11 +5246,6 @@
4985
  "phpstan.phar"
4986
  ],
4987
  "type": "library",
4988
- "extra": {
4989
- "branch-alias": {
4990
- "dev-master": "1.4-dev"
4991
- }
4992
- },
4993
  "autoload": {
4994
  "files": [
4995
  "bootstrap.php"
@@ -5002,7 +5258,7 @@
5002
  "description": "PHPStan - PHP Static Analysis Tool",
5003
  "support": {
5004
  "issues": "https://github.com/phpstan/phpstan/issues",
5005
- "source": "https://github.com/phpstan/phpstan/tree/1.4.2"
5006
  },
5007
  "funding": [
5008
  {
@@ -5022,7 +5278,7 @@
5022
  "type": "tidelift"
5023
  }
5024
  ],
5025
- "time": "2022-01-18T16:09:11+00:00"
5026
  },
5027
  {
5028
  "name": "phpunit/php-code-coverage",
@@ -5460,11 +5716,11 @@
5460
  }
5461
  },
5462
  "autoload": {
5463
- "classmap": [
5464
- "src/"
5465
- ],
5466
  "files": [
5467
  "src/Framework/Assert/Functions.php"
 
 
 
5468
  ]
5469
  },
5470
  "notification-url": "https://packagist.org/downloads/",
@@ -5911,16 +6167,22 @@
5911
  },
5912
  {
5913
  "name": "publishpress/publishpress-plugin-builder",
5914
- "version": "v1.3.5",
5915
  "source": {
5916
  "type": "git",
5917
- "url": "https://github.com/publishpress/PublishPress-Plugin-Builder",
5918
- "reference": "843c2bd811e2307fbca99dfa193b6922a97b5e61"
 
 
 
 
 
 
5919
  },
5920
  "require": {
5921
  "consolidation/robo": "^3.0",
5922
- "nelexa/zip": "^3.3",
5923
- "php": "~7.3",
5924
  "symfony/yaml": "^5"
5925
  },
5926
  "require-dev": {
@@ -5939,6 +6201,7 @@
5939
  "PublishPressBuilder\\": "src/"
5940
  }
5941
  },
 
5942
  "license": [
5943
  "GPL-2.0-or-later"
5944
  ],
@@ -5949,7 +6212,11 @@
5949
  }
5950
  ],
5951
  "description": "Robo tasks for building WordPress plugins",
5952
- "time": "2022-01-19T22:09:53+00:00"
 
 
 
 
5953
  },
5954
  {
5955
  "name": "ralouphie/getallheaders",
@@ -6308,16 +6575,16 @@
6308
  },
6309
  {
6310
  "name": "sebastian/environment",
6311
- "version": "5.1.3",
6312
  "source": {
6313
  "type": "git",
6314
  "url": "https://github.com/sebastianbergmann/environment.git",
6315
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
6316
  },
6317
  "dist": {
6318
  "type": "zip",
6319
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
6320
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
6321
  "shasum": ""
6322
  },
6323
  "require": {
@@ -6359,7 +6626,7 @@
6359
  ],
6360
  "support": {
6361
  "issues": "https://github.com/sebastianbergmann/environment/issues",
6362
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
6363
  },
6364
  "funding": [
6365
  {
@@ -6367,7 +6634,7 @@
6367
  "type": "github"
6368
  }
6369
  ],
6370
- "time": "2020-09-28T05:52:38+00:00"
6371
  },
6372
  {
6373
  "name": "sebastian/exporter",
@@ -6949,6 +7216,59 @@
6949
  ],
6950
  "time": "2020-09-28T06:39:44+00:00"
6951
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6952
  {
6953
  "name": "softcreatr/jsonpath",
6954
  "version": "0.7.5",
@@ -7072,16 +7392,16 @@
7072
  },
7073
  {
7074
  "name": "symfony/browser-kit",
7075
- "version": "v5.4.2",
7076
  "source": {
7077
  "type": "git",
7078
  "url": "https://github.com/symfony/browser-kit.git",
7079
- "reference": "1fb93b0aab42392aa0a742db205173b49afaf80f"
7080
  },
7081
  "dist": {
7082
  "type": "zip",
7083
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/1fb93b0aab42392aa0a742db205173b49afaf80f",
7084
- "reference": "1fb93b0aab42392aa0a742db205173b49afaf80f",
7085
  "shasum": ""
7086
  },
7087
  "require": {
@@ -7124,7 +7444,7 @@
7124
  "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
7125
  "homepage": "https://symfony.com",
7126
  "support": {
7127
- "source": "https://github.com/symfony/browser-kit/tree/v5.4.2"
7128
  },
7129
  "funding": [
7130
  {
@@ -7140,20 +7460,20 @@
7140
  "type": "tidelift"
7141
  }
7142
  ],
7143
- "time": "2021-12-16T21:58:21+00:00"
7144
  },
7145
  {
7146
  "name": "symfony/config",
7147
- "version": "v5.4.2",
7148
  "source": {
7149
  "type": "git",
7150
  "url": "https://github.com/symfony/config.git",
7151
- "reference": "2e082dae50da563c639119b7b52347a2a3db4ba5"
7152
  },
7153
  "dist": {
7154
  "type": "zip",
7155
- "url": "https://api.github.com/repos/symfony/config/zipball/2e082dae50da563c639119b7b52347a2a3db4ba5",
7156
- "reference": "2e082dae50da563c639119b7b52347a2a3db4ba5",
7157
  "shasum": ""
7158
  },
7159
  "require": {
@@ -7203,7 +7523,7 @@
7203
  "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
7204
  "homepage": "https://symfony.com",
7205
  "support": {
7206
- "source": "https://github.com/symfony/config/tree/v5.4.2"
7207
  },
7208
  "funding": [
7209
  {
@@ -7219,20 +7539,20 @@
7219
  "type": "tidelift"
7220
  }
7221
  ],
7222
- "time": "2021-12-15T11:06:13+00:00"
7223
  },
7224
  {
7225
  "name": "symfony/console",
7226
- "version": "v5.4.2",
7227
  "source": {
7228
  "type": "git",
7229
  "url": "https://github.com/symfony/console.git",
7230
- "reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e"
7231
  },
7232
  "dist": {
7233
  "type": "zip",
7234
- "url": "https://api.github.com/repos/symfony/console/zipball/a2c6b7ced2eb7799a35375fb9022519282b5405e",
7235
- "reference": "a2c6b7ced2eb7799a35375fb9022519282b5405e",
7236
  "shasum": ""
7237
  },
7238
  "require": {
@@ -7302,7 +7622,7 @@
7302
  "terminal"
7303
  ],
7304
  "support": {
7305
- "source": "https://github.com/symfony/console/tree/v5.4.2"
7306
  },
7307
  "funding": [
7308
  {
@@ -7318,20 +7638,20 @@
7318
  "type": "tidelift"
7319
  }
7320
  ],
7321
- "time": "2021-12-20T16:11:12+00:00"
7322
  },
7323
  {
7324
  "name": "symfony/css-selector",
7325
- "version": "v5.4.2",
7326
  "source": {
7327
  "type": "git",
7328
  "url": "https://github.com/symfony/css-selector.git",
7329
- "reference": "cfcbee910e159df402603502fe387e8b677c22fd"
7330
  },
7331
  "dist": {
7332
  "type": "zip",
7333
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/cfcbee910e159df402603502fe387e8b677c22fd",
7334
- "reference": "cfcbee910e159df402603502fe387e8b677c22fd",
7335
  "shasum": ""
7336
  },
7337
  "require": {
@@ -7368,7 +7688,7 @@
7368
  "description": "Converts CSS selectors to XPath expressions",
7369
  "homepage": "https://symfony.com",
7370
  "support": {
7371
- "source": "https://github.com/symfony/css-selector/tree/v5.4.2"
7372
  },
7373
  "funding": [
7374
  {
@@ -7384,20 +7704,20 @@
7384
  "type": "tidelift"
7385
  }
7386
  ],
7387
- "time": "2021-12-16T21:58:21+00:00"
7388
  },
7389
  {
7390
  "name": "symfony/dependency-injection",
7391
- "version": "v5.4.2",
7392
  "source": {
7393
  "type": "git",
7394
  "url": "https://github.com/symfony/dependency-injection.git",
7395
- "reference": "ba94559be9738d77cd29e24b5d81cf3b89b7d628"
7396
  },
7397
  "dist": {
7398
  "type": "zip",
7399
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/ba94559be9738d77cd29e24b5d81cf3b89b7d628",
7400
- "reference": "ba94559be9738d77cd29e24b5d81cf3b89b7d628",
7401
  "shasum": ""
7402
  },
7403
  "require": {
@@ -7413,7 +7733,7 @@
7413
  "symfony/config": "<5.3",
7414
  "symfony/finder": "<4.4",
7415
  "symfony/proxy-manager-bridge": "<4.4",
7416
- "symfony/yaml": "<4.4"
7417
  },
7418
  "provide": {
7419
  "psr/container-implementation": "1.0",
@@ -7422,7 +7742,7 @@
7422
  "require-dev": {
7423
  "symfony/config": "^5.3|^6.0",
7424
  "symfony/expression-language": "^4.4|^5.0|^6.0",
7425
- "symfony/yaml": "^4.4|^5.0|^6.0"
7426
  },
7427
  "suggest": {
7428
  "symfony/config": "",
@@ -7457,7 +7777,7 @@
7457
  "description": "Allows you to standardize and centralize the way objects are constructed in your application",
7458
  "homepage": "https://symfony.com",
7459
  "support": {
7460
- "source": "https://github.com/symfony/dependency-injection/tree/v5.4.2"
7461
  },
7462
  "funding": [
7463
  {
@@ -7473,20 +7793,20 @@
7473
  "type": "tidelift"
7474
  }
7475
  ],
7476
- "time": "2021-12-29T10:10:35+00:00"
7477
  },
7478
  {
7479
  "name": "symfony/deprecation-contracts",
7480
- "version": "v2.5.0",
7481
  "source": {
7482
  "type": "git",
7483
  "url": "https://github.com/symfony/deprecation-contracts.git",
7484
- "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
7485
  },
7486
  "dist": {
7487
  "type": "zip",
7488
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
7489
- "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
7490
  "shasum": ""
7491
  },
7492
  "require": {
@@ -7524,7 +7844,7 @@
7524
  "description": "A generic function and convention to trigger deprecation notices",
7525
  "homepage": "https://symfony.com",
7526
  "support": {
7527
- "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
7528
  },
7529
  "funding": [
7530
  {
@@ -7540,20 +7860,20 @@
7540
  "type": "tidelift"
7541
  }
7542
  ],
7543
- "time": "2021-07-12T14:48:14+00:00"
7544
  },
7545
  {
7546
  "name": "symfony/dom-crawler",
7547
- "version": "v5.4.2",
7548
  "source": {
7549
  "type": "git",
7550
  "url": "https://github.com/symfony/dom-crawler.git",
7551
- "reference": "bb3bc3699779fc6d9646270789026a7e2cec7ec7"
7552
  },
7553
  "dist": {
7554
  "type": "zip",
7555
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/bb3bc3699779fc6d9646270789026a7e2cec7ec7",
7556
- "reference": "bb3bc3699779fc6d9646270789026a7e2cec7ec7",
7557
  "shasum": ""
7558
  },
7559
  "require": {
@@ -7599,7 +7919,7 @@
7599
  "description": "Eases DOM navigation for HTML and XML documents",
7600
  "homepage": "https://symfony.com",
7601
  "support": {
7602
- "source": "https://github.com/symfony/dom-crawler/tree/v5.4.2"
7603
  },
7604
  "funding": [
7605
  {
@@ -7615,20 +7935,20 @@
7615
  "type": "tidelift"
7616
  }
7617
  ],
7618
- "time": "2021-12-28T17:15:56+00:00"
7619
  },
7620
  {
7621
  "name": "symfony/event-dispatcher",
7622
- "version": "v5.4.0",
7623
  "source": {
7624
  "type": "git",
7625
  "url": "https://github.com/symfony/event-dispatcher.git",
7626
- "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
7627
  },
7628
  "dist": {
7629
  "type": "zip",
7630
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
7631
- "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
7632
  "shasum": ""
7633
  },
7634
  "require": {
@@ -7684,7 +8004,7 @@
7684
  "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
7685
  "homepage": "https://symfony.com",
7686
  "support": {
7687
- "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
7688
  },
7689
  "funding": [
7690
  {
@@ -7700,20 +8020,20 @@
7700
  "type": "tidelift"
7701
  }
7702
  ],
7703
- "time": "2021-11-23T10:19:22+00:00"
7704
  },
7705
  {
7706
  "name": "symfony/event-dispatcher-contracts",
7707
- "version": "v2.5.0",
7708
  "source": {
7709
  "type": "git",
7710
  "url": "https://github.com/symfony/event-dispatcher-contracts.git",
7711
- "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
7712
  },
7713
  "dist": {
7714
  "type": "zip",
7715
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
7716
- "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
7717
  "shasum": ""
7718
  },
7719
  "require": {
@@ -7763,7 +8083,7 @@
7763
  "standards"
7764
  ],
7765
  "support": {
7766
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
7767
  },
7768
  "funding": [
7769
  {
@@ -7779,20 +8099,20 @@
7779
  "type": "tidelift"
7780
  }
7781
  ],
7782
- "time": "2021-07-12T14:48:14+00:00"
7783
  },
7784
  {
7785
  "name": "symfony/filesystem",
7786
- "version": "v5.4.0",
7787
  "source": {
7788
  "type": "git",
7789
  "url": "https://github.com/symfony/filesystem.git",
7790
- "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
7791
  },
7792
  "dist": {
7793
  "type": "zip",
7794
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
7795
- "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
7796
  "shasum": ""
7797
  },
7798
  "require": {
@@ -7827,7 +8147,7 @@
7827
  "description": "Provides basic utilities for the filesystem",
7828
  "homepage": "https://symfony.com",
7829
  "support": {
7830
- "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
7831
  },
7832
  "funding": [
7833
  {
@@ -7843,20 +8163,20 @@
7843
  "type": "tidelift"
7844
  }
7845
  ],
7846
- "time": "2021-10-28T13:39:27+00:00"
7847
  },
7848
  {
7849
  "name": "symfony/finder",
7850
- "version": "v5.4.2",
7851
  "source": {
7852
  "type": "git",
7853
  "url": "https://github.com/symfony/finder.git",
7854
- "reference": "e77046c252be48c48a40816187ed527703c8f76c"
7855
  },
7856
  "dist": {
7857
  "type": "zip",
7858
- "url": "https://api.github.com/repos/symfony/finder/zipball/e77046c252be48c48a40816187ed527703c8f76c",
7859
- "reference": "e77046c252be48c48a40816187ed527703c8f76c",
7860
  "shasum": ""
7861
  },
7862
  "require": {
@@ -7890,7 +8210,7 @@
7890
  "description": "Finds files and directories via an intuitive fluent interface",
7891
  "homepage": "https://symfony.com",
7892
  "support": {
7893
- "source": "https://github.com/symfony/finder/tree/v5.4.2"
7894
  },
7895
  "funding": [
7896
  {
@@ -7906,20 +8226,20 @@
7906
  "type": "tidelift"
7907
  }
7908
  ],
7909
- "time": "2021-12-15T11:06:13+00:00"
7910
  },
7911
  {
7912
  "name": "symfony/options-resolver",
7913
- "version": "v5.4.0",
7914
  "source": {
7915
  "type": "git",
7916
  "url": "https://github.com/symfony/options-resolver.git",
7917
- "reference": "b0fb78576487af19c500aaddb269fd36701d4847"
7918
  },
7919
  "dist": {
7920
  "type": "zip",
7921
- "url": "https://api.github.com/repos/symfony/options-resolver/zipball/b0fb78576487af19c500aaddb269fd36701d4847",
7922
- "reference": "b0fb78576487af19c500aaddb269fd36701d4847",
7923
  "shasum": ""
7924
  },
7925
  "require": {
@@ -7959,7 +8279,7 @@
7959
  "options"
7960
  ],
7961
  "support": {
7962
- "source": "https://github.com/symfony/options-resolver/tree/v5.4.0"
7963
  },
7964
  "funding": [
7965
  {
@@ -7975,20 +8295,20 @@
7975
  "type": "tidelift"
7976
  }
7977
  ],
7978
- "time": "2021-11-23T10:19:22+00:00"
7979
  },
7980
  {
7981
  "name": "symfony/polyfill-ctype",
7982
- "version": "v1.24.0",
7983
  "source": {
7984
  "type": "git",
7985
  "url": "https://github.com/symfony/polyfill-ctype.git",
7986
- "reference": "30885182c981ab175d4d034db0f6f469898070ab"
7987
  },
7988
  "dist": {
7989
  "type": "zip",
7990
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/30885182c981ab175d4d034db0f6f469898070ab",
7991
- "reference": "30885182c981ab175d4d034db0f6f469898070ab",
7992
  "shasum": ""
7993
  },
7994
  "require": {
@@ -8003,7 +8323,7 @@
8003
  "type": "library",
8004
  "extra": {
8005
  "branch-alias": {
8006
- "dev-main": "1.23-dev"
8007
  },
8008
  "thanks": {
8009
  "name": "symfony/polyfill",
@@ -8011,12 +8331,12 @@
8011
  }
8012
  },
8013
  "autoload": {
8014
- "psr-4": {
8015
- "Symfony\\Polyfill\\Ctype\\": ""
8016
- },
8017
  "files": [
8018
  "bootstrap.php"
8019
- ]
 
 
 
8020
  },
8021
  "notification-url": "https://packagist.org/downloads/",
8022
  "license": [
@@ -8041,7 +8361,7 @@
8041
  "portable"
8042
  ],
8043
  "support": {
8044
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.24.0"
8045
  },
8046
  "funding": [
8047
  {
@@ -8057,20 +8377,20 @@
8057
  "type": "tidelift"
8058
  }
8059
  ],
8060
- "time": "2021-10-20T20:35:02+00:00"
8061
  },
8062
  {
8063
  "name": "symfony/polyfill-intl-grapheme",
8064
- "version": "v1.24.0",
8065
  "source": {
8066
  "type": "git",
8067
  "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
8068
- "reference": "81b86b50cf841a64252b439e738e97f4a34e2783"
8069
  },
8070
  "dist": {
8071
  "type": "zip",
8072
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/81b86b50cf841a64252b439e738e97f4a34e2783",
8073
- "reference": "81b86b50cf841a64252b439e738e97f4a34e2783",
8074
  "shasum": ""
8075
  },
8076
  "require": {
@@ -8082,7 +8402,7 @@
8082
  "type": "library",
8083
  "extra": {
8084
  "branch-alias": {
8085
- "dev-main": "1.23-dev"
8086
  },
8087
  "thanks": {
8088
  "name": "symfony/polyfill",
@@ -8090,12 +8410,12 @@
8090
  }
8091
  },
8092
  "autoload": {
8093
- "psr-4": {
8094
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
8095
- },
8096
  "files": [
8097
  "bootstrap.php"
8098
- ]
 
 
 
8099
  },
8100
  "notification-url": "https://packagist.org/downloads/",
8101
  "license": [
@@ -8122,7 +8442,7 @@
8122
  "shim"
8123
  ],
8124
  "support": {
8125
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.24.0"
8126
  },
8127
  "funding": [
8128
  {
@@ -8138,20 +8458,20 @@
8138
  "type": "tidelift"
8139
  }
8140
  ],
8141
- "time": "2021-11-23T21:10:46+00:00"
8142
  },
8143
  {
8144
  "name": "symfony/polyfill-intl-normalizer",
8145
- "version": "v1.24.0",
8146
  "source": {
8147
  "type": "git",
8148
  "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
8149
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
8150
  },
8151
  "dist": {
8152
  "type": "zip",
8153
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
8154
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
8155
  "shasum": ""
8156
  },
8157
  "require": {
@@ -8163,7 +8483,7 @@
8163
  "type": "library",
8164
  "extra": {
8165
  "branch-alias": {
8166
- "dev-main": "1.23-dev"
8167
  },
8168
  "thanks": {
8169
  "name": "symfony/polyfill",
@@ -8171,12 +8491,12 @@
8171
  }
8172
  },
8173
  "autoload": {
8174
- "psr-4": {
8175
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
8176
- },
8177
  "files": [
8178
  "bootstrap.php"
8179
  ],
 
 
 
8180
  "classmap": [
8181
  "Resources/stubs"
8182
  ]
@@ -8206,7 +8526,7 @@
8206
  "shim"
8207
  ],
8208
  "support": {
8209
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.24.0"
8210
  },
8211
  "funding": [
8212
  {
@@ -8222,20 +8542,20 @@
8222
  "type": "tidelift"
8223
  }
8224
  ],
8225
- "time": "2021-02-19T12:13:01+00:00"
8226
  },
8227
  {
8228
  "name": "symfony/polyfill-mbstring",
8229
- "version": "v1.24.0",
8230
  "source": {
8231
  "type": "git",
8232
  "url": "https://github.com/symfony/polyfill-mbstring.git",
8233
- "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825"
8234
  },
8235
  "dist": {
8236
  "type": "zip",
8237
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/0abb51d2f102e00a4eefcf46ba7fec406d245825",
8238
- "reference": "0abb51d2f102e00a4eefcf46ba7fec406d245825",
8239
  "shasum": ""
8240
  },
8241
  "require": {
@@ -8250,7 +8570,7 @@
8250
  "type": "library",
8251
  "extra": {
8252
  "branch-alias": {
8253
- "dev-main": "1.23-dev"
8254
  },
8255
  "thanks": {
8256
  "name": "symfony/polyfill",
@@ -8258,12 +8578,12 @@
8258
  }
8259
  },
8260
  "autoload": {
8261
- "psr-4": {
8262
- "Symfony\\Polyfill\\Mbstring\\": ""
8263
- },
8264
  "files": [
8265
  "bootstrap.php"
8266
- ]
 
 
 
8267
  },
8268
  "notification-url": "https://packagist.org/downloads/",
8269
  "license": [
@@ -8289,7 +8609,7 @@
8289
  "shim"
8290
  ],
8291
  "support": {
8292
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.24.0"
8293
  },
8294
  "funding": [
8295
  {
@@ -8305,20 +8625,20 @@
8305
  "type": "tidelift"
8306
  }
8307
  ],
8308
- "time": "2021-11-30T18:21:41+00:00"
8309
  },
8310
  {
8311
  "name": "symfony/polyfill-php73",
8312
- "version": "v1.24.0",
8313
  "source": {
8314
  "type": "git",
8315
  "url": "https://github.com/symfony/polyfill-php73.git",
8316
- "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5"
8317
  },
8318
  "dist": {
8319
  "type": "zip",
8320
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/cc5db0e22b3cb4111010e48785a97f670b350ca5",
8321
- "reference": "cc5db0e22b3cb4111010e48785a97f670b350ca5",
8322
  "shasum": ""
8323
  },
8324
  "require": {
@@ -8327,7 +8647,7 @@
8327
  "type": "library",
8328
  "extra": {
8329
  "branch-alias": {
8330
- "dev-main": "1.23-dev"
8331
  },
8332
  "thanks": {
8333
  "name": "symfony/polyfill",
@@ -8335,12 +8655,12 @@
8335
  }
8336
  },
8337
  "autoload": {
8338
- "psr-4": {
8339
- "Symfony\\Polyfill\\Php73\\": ""
8340
- },
8341
  "files": [
8342
  "bootstrap.php"
8343
  ],
 
 
 
8344
  "classmap": [
8345
  "Resources/stubs"
8346
  ]
@@ -8368,7 +8688,7 @@
8368
  "shim"
8369
  ],
8370
  "support": {
8371
- "source": "https://github.com/symfony/polyfill-php73/tree/v1.24.0"
8372
  },
8373
  "funding": [
8374
  {
@@ -8384,20 +8704,20 @@
8384
  "type": "tidelift"
8385
  }
8386
  ],
8387
- "time": "2021-06-05T21:20:04+00:00"
8388
  },
8389
  {
8390
  "name": "symfony/polyfill-php80",
8391
- "version": "v1.24.0",
8392
  "source": {
8393
  "type": "git",
8394
  "url": "https://github.com/symfony/polyfill-php80.git",
8395
- "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9"
8396
  },
8397
  "dist": {
8398
  "type": "zip",
8399
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/57b712b08eddb97c762a8caa32c84e037892d2e9",
8400
- "reference": "57b712b08eddb97c762a8caa32c84e037892d2e9",
8401
  "shasum": ""
8402
  },
8403
  "require": {
@@ -8406,7 +8726,7 @@
8406
  "type": "library",
8407
  "extra": {
8408
  "branch-alias": {
8409
- "dev-main": "1.23-dev"
8410
  },
8411
  "thanks": {
8412
  "name": "symfony/polyfill",
@@ -8414,12 +8734,12 @@
8414
  }
8415
  },
8416
  "autoload": {
8417
- "psr-4": {
8418
- "Symfony\\Polyfill\\Php80\\": ""
8419
- },
8420
  "files": [
8421
  "bootstrap.php"
8422
  ],
 
 
 
8423
  "classmap": [
8424
  "Resources/stubs"
8425
  ]
@@ -8451,7 +8771,7 @@
8451
  "shim"
8452
  ],
8453
  "support": {
8454
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.24.0"
8455
  },
8456
  "funding": [
8457
  {
@@ -8467,20 +8787,20 @@
8467
  "type": "tidelift"
8468
  }
8469
  ],
8470
- "time": "2021-09-13T13:58:33+00:00"
8471
  },
8472
  {
8473
  "name": "symfony/polyfill-php81",
8474
- "version": "v1.24.0",
8475
  "source": {
8476
  "type": "git",
8477
  "url": "https://github.com/symfony/polyfill-php81.git",
8478
- "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f"
8479
  },
8480
  "dist": {
8481
  "type": "zip",
8482
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
8483
- "reference": "5de4ba2d41b15f9bd0e19b2ab9674135813ec98f",
8484
  "shasum": ""
8485
  },
8486
  "require": {
@@ -8489,7 +8809,7 @@
8489
  "type": "library",
8490
  "extra": {
8491
  "branch-alias": {
8492
- "dev-main": "1.23-dev"
8493
  },
8494
  "thanks": {
8495
  "name": "symfony/polyfill",
@@ -8497,12 +8817,12 @@
8497
  }
8498
  },
8499
  "autoload": {
8500
- "psr-4": {
8501
- "Symfony\\Polyfill\\Php81\\": ""
8502
- },
8503
  "files": [
8504
  "bootstrap.php"
8505
  ],
 
 
 
8506
  "classmap": [
8507
  "Resources/stubs"
8508
  ]
@@ -8530,7 +8850,7 @@
8530
  "shim"
8531
  ],
8532
  "support": {
8533
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.24.0"
8534
  },
8535
  "funding": [
8536
  {
@@ -8546,20 +8866,20 @@
8546
  "type": "tidelift"
8547
  }
8548
  ],
8549
- "time": "2021-09-13T13:58:11+00:00"
8550
  },
8551
  {
8552
  "name": "symfony/process",
8553
- "version": "v5.4.2",
8554
  "source": {
8555
  "type": "git",
8556
  "url": "https://github.com/symfony/process.git",
8557
- "reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4"
8558
  },
8559
  "dist": {
8560
  "type": "zip",
8561
- "url": "https://api.github.com/repos/symfony/process/zipball/2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
8562
- "reference": "2b3ba8722c4aaf3e88011be5e7f48710088fb5e4",
8563
  "shasum": ""
8564
  },
8565
  "require": {
@@ -8592,7 +8912,7 @@
8592
  "description": "Executes commands in sub-processes",
8593
  "homepage": "https://symfony.com",
8594
  "support": {
8595
- "source": "https://github.com/symfony/process/tree/v5.4.2"
8596
  },
8597
  "funding": [
8598
  {
@@ -8608,26 +8928,26 @@
8608
  "type": "tidelift"
8609
  }
8610
  ],
8611
- "time": "2021-12-27T21:01:00+00:00"
8612
  },
8613
  {
8614
  "name": "symfony/service-contracts",
8615
- "version": "v2.5.0",
8616
  "source": {
8617
  "type": "git",
8618
  "url": "https://github.com/symfony/service-contracts.git",
8619
- "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
8620
  },
8621
  "dist": {
8622
  "type": "zip",
8623
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
8624
- "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
8625
  "shasum": ""
8626
  },
8627
  "require": {
8628
  "php": ">=7.2.5",
8629
  "psr/container": "^1.1",
8630
- "symfony/deprecation-contracts": "^2.1"
8631
  },
8632
  "conflict": {
8633
  "ext-psr": "<1.1|>=2"
@@ -8675,7 +8995,7 @@
8675
  "standards"
8676
  ],
8677
  "support": {
8678
- "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
8679
  },
8680
  "funding": [
8681
  {
@@ -8691,20 +9011,20 @@
8691
  "type": "tidelift"
8692
  }
8693
  ],
8694
- "time": "2021-11-04T16:48:04+00:00"
8695
  },
8696
  {
8697
  "name": "symfony/stopwatch",
8698
- "version": "v5.4.0",
8699
  "source": {
8700
  "type": "git",
8701
  "url": "https://github.com/symfony/stopwatch.git",
8702
- "reference": "208ef96122bfed82a8f3a61458a07113a08bdcfe"
8703
  },
8704
  "dist": {
8705
  "type": "zip",
8706
- "url": "https://api.github.com/repos/symfony/stopwatch/zipball/208ef96122bfed82a8f3a61458a07113a08bdcfe",
8707
- "reference": "208ef96122bfed82a8f3a61458a07113a08bdcfe",
8708
  "shasum": ""
8709
  },
8710
  "require": {
@@ -8737,7 +9057,7 @@
8737
  "description": "Provides a way to profile code",
8738
  "homepage": "https://symfony.com",
8739
  "support": {
8740
- "source": "https://github.com/symfony/stopwatch/tree/v5.4.0"
8741
  },
8742
  "funding": [
8743
  {
@@ -8753,20 +9073,20 @@
8753
  "type": "tidelift"
8754
  }
8755
  ],
8756
- "time": "2021-11-23T10:19:22+00:00"
8757
  },
8758
  {
8759
  "name": "symfony/string",
8760
- "version": "v5.4.2",
8761
  "source": {
8762
  "type": "git",
8763
  "url": "https://github.com/symfony/string.git",
8764
- "reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d"
8765
  },
8766
  "dist": {
8767
  "type": "zip",
8768
- "url": "https://api.github.com/repos/symfony/string/zipball/e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
8769
- "reference": "e6a5d5ecf6589c5247d18e0e74e30b11dfd51a3d",
8770
  "shasum": ""
8771
  },
8772
  "require": {
@@ -8788,12 +9108,12 @@
8788
  },
8789
  "type": "library",
8790
  "autoload": {
8791
- "psr-4": {
8792
- "Symfony\\Component\\String\\": ""
8793
- },
8794
  "files": [
8795
  "Resources/functions.php"
8796
  ],
 
 
 
8797
  "exclude-from-classmap": [
8798
  "/Tests/"
8799
  ]
@@ -8823,7 +9143,7 @@
8823
  "utf8"
8824
  ],
8825
  "support": {
8826
- "source": "https://github.com/symfony/string/tree/v5.4.2"
8827
  },
8828
  "funding": [
8829
  {
@@ -8839,20 +9159,20 @@
8839
  "type": "tidelift"
8840
  }
8841
  ],
8842
- "time": "2021-12-16T21:52:00+00:00"
8843
  },
8844
  {
8845
  "name": "symfony/translation",
8846
- "version": "v5.4.2",
8847
  "source": {
8848
  "type": "git",
8849
  "url": "https://github.com/symfony/translation.git",
8850
- "reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca"
8851
  },
8852
  "dist": {
8853
  "type": "zip",
8854
- "url": "https://api.github.com/repos/symfony/translation/zipball/ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
8855
- "reference": "ff8bb2107b6a549dc3c5dd9c498dcc82c9c098ca",
8856
  "shasum": ""
8857
  },
8858
  "require": {
@@ -8920,7 +9240,7 @@
8920
  "description": "Provides tools to internationalize your application",
8921
  "homepage": "https://symfony.com",
8922
  "support": {
8923
- "source": "https://github.com/symfony/translation/tree/v5.4.2"
8924
  },
8925
  "funding": [
8926
  {
@@ -8936,20 +9256,20 @@
8936
  "type": "tidelift"
8937
  }
8938
  ],
8939
- "time": "2021-12-25T19:45:36+00:00"
8940
  },
8941
  {
8942
  "name": "symfony/translation-contracts",
8943
- "version": "v2.5.0",
8944
  "source": {
8945
  "type": "git",
8946
  "url": "https://github.com/symfony/translation-contracts.git",
8947
- "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
8948
  },
8949
  "dist": {
8950
  "type": "zip",
8951
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
8952
- "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
8953
  "shasum": ""
8954
  },
8955
  "require": {
@@ -8998,7 +9318,7 @@
8998
  "standards"
8999
  ],
9000
  "support": {
9001
- "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
9002
  },
9003
  "funding": [
9004
  {
@@ -9014,20 +9334,20 @@
9014
  "type": "tidelift"
9015
  }
9016
  ],
9017
- "time": "2021-08-17T14:20:01+00:00"
9018
  },
9019
  {
9020
  "name": "symfony/yaml",
9021
- "version": "v5.4.2",
9022
  "source": {
9023
  "type": "git",
9024
  "url": "https://github.com/symfony/yaml.git",
9025
- "reference": "b9eb163846a61bb32dfc147f7859e274fab38b58"
9026
  },
9027
  "dist": {
9028
  "type": "zip",
9029
- "url": "https://api.github.com/repos/symfony/yaml/zipball/b9eb163846a61bb32dfc147f7859e274fab38b58",
9030
- "reference": "b9eb163846a61bb32dfc147f7859e274fab38b58",
9031
  "shasum": ""
9032
  },
9033
  "require": {
@@ -9073,7 +9393,7 @@
9073
  "description": "Loads and dumps YAML files",
9074
  "homepage": "https://symfony.com",
9075
  "support": {
9076
- "source": "https://github.com/symfony/yaml/tree/v5.4.2"
9077
  },
9078
  "funding": [
9079
  {
@@ -9089,7 +9409,7 @@
9089
  "type": "tidelift"
9090
  }
9091
  ],
9092
- "time": "2021-12-16T21:58:21+00:00"
9093
  },
9094
  {
9095
  "name": "theseer/fdomdocument",
@@ -9136,6 +9456,7 @@
9136
  "issues": "https://github.com/theseer/fDOMDocument/issues",
9137
  "source": "https://github.com/theseer/fDOMDocument/tree/1.6.7"
9138
  },
 
9139
  "time": "2022-01-25T23:10:35+00:00"
9140
  },
9141
  {
@@ -9190,16 +9511,16 @@
9190
  },
9191
  {
9192
  "name": "vimeo/psalm",
9193
- "version": "4.18.1",
9194
  "source": {
9195
  "type": "git",
9196
  "url": "https://github.com/vimeo/psalm.git",
9197
- "reference": "dda05fa913f4dc6eb3386f2f7ce5a45d37a71bcb"
9198
  },
9199
  "dist": {
9200
  "type": "zip",
9201
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/dda05fa913f4dc6eb3386f2f7ce5a45d37a71bcb",
9202
- "reference": "dda05fa913f4dc6eb3386f2f7ce5a45d37a71bcb",
9203
  "shasum": ""
9204
  },
9205
  "require": {
@@ -9224,6 +9545,7 @@
9224
  "php": "^7.1|^8",
9225
  "sebastian/diff": "^3.0 || ^4.0",
9226
  "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
 
9227
  "webmozart/path-util": "^2.3"
9228
  },
9229
  "provide": {
@@ -9265,13 +9587,13 @@
9265
  }
9266
  },
9267
  "autoload": {
9268
- "psr-4": {
9269
- "Psalm\\": "src/Psalm/"
9270
- },
9271
  "files": [
9272
  "src/functions.php",
9273
  "src/spl_object_id.php"
9274
- ]
 
 
 
9275
  },
9276
  "notification-url": "https://packagist.org/downloads/",
9277
  "license": [
@@ -9290,9 +9612,9 @@
9290
  ],
9291
  "support": {
9292
  "issues": "https://github.com/vimeo/psalm/issues",
9293
- "source": "https://github.com/vimeo/psalm/tree/4.18.1"
9294
  },
9295
- "time": "2022-01-08T21:21:26+00:00"
9296
  },
9297
  {
9298
  "name": "voku/portable-ascii",
@@ -9423,21 +9745,21 @@
9423
  },
9424
  {
9425
  "name": "webmozart/assert",
9426
- "version": "1.10.0",
9427
  "source": {
9428
  "type": "git",
9429
  "url": "https://github.com/webmozarts/assert.git",
9430
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
9431
  },
9432
  "dist": {
9433
  "type": "zip",
9434
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
9435
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
9436
  "shasum": ""
9437
  },
9438
  "require": {
9439
- "php": "^7.2 || ^8.0",
9440
- "symfony/polyfill-ctype": "^1.8"
9441
  },
9442
  "conflict": {
9443
  "phpstan/phpstan": "<0.12.20",
@@ -9475,9 +9797,9 @@
9475
  ],
9476
  "support": {
9477
  "issues": "https://github.com/webmozarts/assert/issues",
9478
- "source": "https://github.com/webmozarts/assert/tree/1.10.0"
9479
  },
9480
- "time": "2021-03-09T10:59:23+00:00"
9481
  },
9482
  {
9483
  "name": "webmozart/path-util",
@@ -9532,19 +9854,20 @@
9532
  },
9533
  {
9534
  "name": "wp-cli/i18n-command",
9535
- "version": "v2.2.13",
9536
  "source": {
9537
  "type": "git",
9538
  "url": "https://github.com/wp-cli/i18n-command.git",
9539
- "reference": "77ece9e2c914bb56ea72b9ee9f00556dece07b3f"
9540
  },
9541
  "dist": {
9542
  "type": "zip",
9543
- "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/77ece9e2c914bb56ea72b9ee9f00556dece07b3f",
9544
- "reference": "77ece9e2c914bb56ea72b9ee9f00556dece07b3f",
9545
  "shasum": ""
9546
  },
9547
  "require": {
 
9548
  "gettext/gettext": "^4.8",
9549
  "mck89/peast": "^1.13.11",
9550
  "wp-cli/wp-cli": "^2.5"
@@ -9569,12 +9892,12 @@
9569
  ]
9570
  },
9571
  "autoload": {
9572
- "psr-4": {
9573
- "WP_CLI\\I18n\\": "src/"
9574
- },
9575
  "files": [
9576
  "i18n-command.php"
9577
- ]
 
 
 
9578
  },
9579
  "notification-url": "https://packagist.org/downloads/",
9580
  "license": [
@@ -9590,9 +9913,9 @@
9590
  "homepage": "https://github.com/wp-cli/i18n-command",
9591
  "support": {
9592
  "issues": "https://github.com/wp-cli/i18n-command/issues",
9593
- "source": "https://github.com/wp-cli/i18n-command/tree/v2.2.13"
9594
  },
9595
- "time": "2022-01-13T01:40:51+00:00"
9596
  },
9597
  {
9598
  "name": "wp-cli/mustangostang-spyc",
@@ -9621,12 +9944,12 @@
9621
  }
9622
  },
9623
  "autoload": {
9624
- "psr-4": {
9625
- "Mustangostang\\": "src/"
9626
- },
9627
  "files": [
9628
  "includes/functions.php"
9629
- ]
 
 
 
9630
  },
9631
  "notification-url": "https://packagist.org/downloads/",
9632
  "license": [
@@ -9664,12 +9987,12 @@
9664
  },
9665
  "type": "library",
9666
  "autoload": {
9667
- "psr-0": {
9668
- "cli": "lib/"
9669
- },
9670
  "files": [
9671
  "lib/cli/cli.php"
9672
- ]
 
 
 
9673
  },
9674
  "notification-url": "https://packagist.org/downloads/",
9675
  "license": [
@@ -9885,5 +10208,5 @@
9885
  "prefer-lowest": false,
9886
  "platform": [],
9887
  "platform-dev": [],
9888
- "plugin-api-version": "2.1.0"
9889
  }
4
  "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
  "This file is @generated automatically"
6
  ],
7
+ "content-hash": "965cddaf86f27e6eef5aef5476d207f0",
8
  "packages": [
9
+ {
10
+ "name": "publishpress/publishpress-instance-protection",
11
+ "version": "v1.0.2",
12
+ "source": {
13
+ "type": "git",
14
+ "url": "https://github.com/publishpress/publishpress-instance-protection.git",
15
+ "reference": "ef1a631a41b723ce2e856f534ff4befbe914e964"
16
+ },
17
+ "dist": {
18
+ "type": "zip",
19
+ "url": "https://api.github.com/repos/publishpress/publishpress-instance-protection/zipball/ef1a631a41b723ce2e856f534ff4befbe914e964",
20
+ "reference": "ef1a631a41b723ce2e856f534ff4befbe914e964",
21
+ "shasum": ""
22
+ },
23
+ "require": {
24
+ "php": ">=5.6.20"
25
+ },
26
+ "type": "library",
27
+ "notification-url": "https://packagist.org/downloads/",
28
+ "license": [
29
+ "GPL-3.0-or-later"
30
+ ],
31
+ "authors": [
32
+ {
33
+ "name": "PublishPress",
34
+ "email": "help@publishpress.com"
35
+ }
36
+ ],
37
+ "description": "Library for protecting WordPress plugins to run twice.",
38
+ "homepage": "http://publishpress.com/",
39
+ "keywords": [
40
+ "wordpress plugin"
41
+ ],
42
+ "support": {
43
+ "issues": "https://github.com/publishpress/publishpress-instance-protection/issues",
44
+ "source": "https://github.com/publishpress/publishpress-instance-protection/tree/v1.0.2"
45
+ },
46
+ "time": "2022-06-03T17:41:36+00:00"
47
+ },
48
  {
49
  "name": "publishpress/wordpress-reviews",
50
+ "version": "v1.1.19",
51
  "source": {
52
  "type": "git",
53
  "url": "https://github.com/publishpress/wordpress-reviews.git",
54
+ "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c"
55
  },
56
  "dist": {
57
  "type": "zip",
58
+ "url": "https://api.github.com/repos/publishpress/wordpress-reviews/zipball/028e573eb7c5da2455a7a823cabbbe5e3f89ca9c",
59
+ "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c",
60
  "shasum": ""
61
  },
62
  "require": {
109
  ],
110
  "support": {
111
  "issues": "https://github.com/publishpress/wordpress-reviews/issues",
112
+ "source": "https://github.com/publishpress/wordpress-reviews/tree/v1.1.19"
113
  },
114
+ "time": "2022-06-03T13:38:53+00:00"
115
  }
116
  ],
117
  "packages-dev": [
118
  {
119
  "name": "amphp/amp",
120
+ "version": "v2.6.2",
121
  "source": {
122
  "type": "git",
123
  "url": "https://github.com/amphp/amp.git",
124
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb"
125
  },
126
  "dist": {
127
  "type": "zip",
128
+ "url": "https://api.github.com/repos/amphp/amp/zipball/9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
129
+ "reference": "9d5100cebffa729aaffecd3ad25dc5aeea4f13bb",
130
  "shasum": ""
131
  },
132
  "require": {
148
  }
149
  },
150
  "autoload": {
 
 
 
151
  "files": [
152
  "lib/functions.php",
153
  "lib/Internal/functions.php"
154
+ ],
155
+ "psr-4": {
156
+ "Amp\\": "lib"
157
+ }
158
  },
159
  "notification-url": "https://packagist.org/downloads/",
160
  "license": [
179
  }
180
  ],
181
  "description": "A non-blocking concurrency framework for PHP applications.",
182
+ "homepage": "https://amphp.org/amp",
183
  "keywords": [
184
  "async",
185
  "asynchronous",
194
  "support": {
195
  "irc": "irc://irc.freenode.org/amphp",
196
  "issues": "https://github.com/amphp/amp/issues",
197
+ "source": "https://github.com/amphp/amp/tree/v2.6.2"
198
  },
199
  "funding": [
200
  {
202
  "type": "github"
203
  }
204
  ],
205
+ "time": "2022-02-20T17:52:18+00:00"
206
  },
207
  {
208
  "name": "amphp/byte-stream",
237
  }
238
  },
239
  "autoload": {
 
 
 
240
  "files": [
241
  "lib/functions.php"
242
+ ],
243
+ "psr-4": {
244
+ "Amp\\ByteStream\\": "lib"
245
+ }
246
  },
247
  "notification-url": "https://packagist.org/downloads/",
248
  "license": [
283
  },
284
  {
285
  "name": "antecedent/patchwork",
286
+ "version": "2.1.21",
287
  "source": {
288
  "type": "git",
289
  "url": "https://github.com/antecedent/patchwork.git",
290
+ "reference": "25c1fa0cd9a6e6d0d13863d8df8f050b6733f16d"
291
  },
292
  "dist": {
293
  "type": "zip",
294
+ "url": "https://api.github.com/repos/antecedent/patchwork/zipball/25c1fa0cd9a6e6d0d13863d8df8f050b6733f16d",
295
+ "reference": "25c1fa0cd9a6e6d0d13863d8df8f050b6733f16d",
296
  "shasum": ""
297
  },
298
  "require": {
325
  ],
326
  "support": {
327
  "issues": "https://github.com/antecedent/patchwork/issues",
328
+ "source": "https://github.com/antecedent/patchwork/tree/2.1.21"
329
+ },
330
+ "time": "2022-02-07T07:28:34+00:00"
331
+ },
332
+ {
333
+ "name": "automattic/vipwpcs",
334
+ "version": "2.3.3",
335
+ "source": {
336
+ "type": "git",
337
+ "url": "https://github.com/Automattic/VIP-Coding-Standards.git",
338
+ "reference": "6cd0a6a82bc0ac988dbf9d6a7c2e293dc8ac640b"
339
+ },
340
+ "dist": {
341
+ "type": "zip",
342
+ "url": "https://api.github.com/repos/Automattic/VIP-Coding-Standards/zipball/6cd0a6a82bc0ac988dbf9d6a7c2e293dc8ac640b",
343
+ "reference": "6cd0a6a82bc0ac988dbf9d6a7c2e293dc8ac640b",
344
+ "shasum": ""
345
+ },
346
+ "require": {
347
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7",
348
+ "php": ">=5.4",
349
+ "sirbrillig/phpcs-variable-analysis": "^2.11.1",
350
+ "squizlabs/php_codesniffer": "^3.5.5",
351
+ "wp-coding-standards/wpcs": "^2.3"
352
+ },
353
+ "require-dev": {
354
+ "php-parallel-lint/php-console-highlighter": "^0.5",
355
+ "php-parallel-lint/php-parallel-lint": "^1.0",
356
+ "phpcompatibility/php-compatibility": "^9",
357
+ "phpcsstandards/phpcsdevtools": "^1.0",
358
+ "phpunit/phpunit": "^4 || ^5 || ^6 || ^7"
359
+ },
360
+ "type": "phpcodesniffer-standard",
361
+ "notification-url": "https://packagist.org/downloads/",
362
+ "license": [
363
+ "MIT"
364
+ ],
365
+ "authors": [
366
+ {
367
+ "name": "Contributors",
368
+ "homepage": "https://github.com/Automattic/VIP-Coding-Standards/graphs/contributors"
369
+ }
370
+ ],
371
+ "description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress VIP minimum coding conventions",
372
+ "keywords": [
373
+ "phpcs",
374
+ "standards",
375
+ "wordpress"
376
+ ],
377
+ "support": {
378
+ "issues": "https://github.com/Automattic/VIP-Coding-Standards/issues",
379
+ "source": "https://github.com/Automattic/VIP-Coding-Standards",
380
+ "wiki": "https://github.com/Automattic/VIP-Coding-Standards/wiki"
381
+ },
382
+ "time": "2021-09-29T16:20:23+00:00"
383
+ },
384
+ {
385
+ "name": "behat/behat",
386
+ "version": "v3.10.0",
387
+ "source": {
388
+ "type": "git",
389
+ "url": "https://github.com/Behat/Behat.git",
390
+ "reference": "a55661154079cf881ef643b303bfaf67bae3a09f"
391
+ },
392
+ "dist": {
393
+ "type": "zip",
394
+ "url": "https://api.github.com/repos/Behat/Behat/zipball/a55661154079cf881ef643b303bfaf67bae3a09f",
395
+ "reference": "a55661154079cf881ef643b303bfaf67bae3a09f",
396
+ "shasum": ""
397
+ },
398
+ "require": {
399
+ "behat/gherkin": "^4.9.0",
400
+ "behat/transliterator": "^1.2",
401
+ "ext-mbstring": "*",
402
+ "php": "^7.2 || ^8.0",
403
+ "psr/container": "^1.0",
404
+ "symfony/config": "^4.4 || ^5.0 || ^6.0",
405
+ "symfony/console": "^4.4 || ^5.0 || ^6.0",
406
+ "symfony/dependency-injection": "^4.4 || ^5.0 || ^6.0",
407
+ "symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0",
408
+ "symfony/translation": "^4.4 || ^5.0 || ^6.0",
409
+ "symfony/yaml": "^4.4 || ^5.0 || ^6.0"
410
+ },
411
+ "require-dev": {
412
+ "container-interop/container-interop": "^1.2",
413
+ "herrera-io/box": "~1.6.1",
414
+ "phpunit/phpunit": "^8.5 || ^9.0",
415
+ "symfony/process": "^4.4 || ^5.0 || ^6.0",
416
+ "vimeo/psalm": "^4.8"
417
+ },
418
+ "suggest": {
419
+ "ext-dom": "Needed to output test results in JUnit format."
420
+ },
421
+ "bin": [
422
+ "bin/behat"
423
+ ],
424
+ "type": "library",
425
+ "extra": {
426
+ "branch-alias": {
427
+ "dev-master": "3.x-dev"
428
+ }
429
+ },
430
+ "autoload": {
431
+ "psr-4": {
432
+ "Behat\\Hook\\": "src/Behat/Hook/",
433
+ "Behat\\Step\\": "src/Behat/Step/",
434
+ "Behat\\Behat\\": "src/Behat/Behat/",
435
+ "Behat\\Testwork\\": "src/Behat/Testwork/"
436
+ }
437
+ },
438
+ "notification-url": "https://packagist.org/downloads/",
439
+ "license": [
440
+ "MIT"
441
+ ],
442
+ "authors": [
443
+ {
444
+ "name": "Konstantin Kudryashov",
445
+ "email": "ever.zet@gmail.com",
446
+ "homepage": "http://everzet.com"
447
+ }
448
+ ],
449
+ "description": "Scenario-oriented BDD framework for PHP",
450
+ "homepage": "http://behat.org/",
451
+ "keywords": [
452
+ "Agile",
453
+ "BDD",
454
+ "ScenarioBDD",
455
+ "Scrum",
456
+ "StoryBDD",
457
+ "User story",
458
+ "business",
459
+ "development",
460
+ "documentation",
461
+ "examples",
462
+ "symfony",
463
+ "testing"
464
+ ],
465
+ "support": {
466
+ "issues": "https://github.com/Behat/Behat/issues",
467
+ "source": "https://github.com/Behat/Behat/tree/v3.10.0"
468
  },
469
+ "time": "2021-11-02T20:09:40+00:00"
470
  },
471
  {
472
  "name": "behat/gherkin",
531
  },
532
  "time": "2021-10-12T13:05:09+00:00"
533
  },
534
+ {
535
+ "name": "behat/transliterator",
536
+ "version": "v1.5.0",
537
+ "source": {
538
+ "type": "git",
539
+ "url": "https://github.com/Behat/Transliterator.git",
540
+ "reference": "baac5873bac3749887d28ab68e2f74db3a4408af"
541
+ },
542
+ "dist": {
543
+ "type": "zip",
544
+ "url": "https://api.github.com/repos/Behat/Transliterator/zipball/baac5873bac3749887d28ab68e2f74db3a4408af",
545
+ "reference": "baac5873bac3749887d28ab68e2f74db3a4408af",
546
+ "shasum": ""
547
+ },
548
+ "require": {
549
+ "php": ">=7.2"
550
+ },
551
+ "require-dev": {
552
+ "chuyskywalker/rolling-curl": "^3.1",
553
+ "php-yaoi/php-yaoi": "^1.0",
554
+ "phpunit/phpunit": "^8.5.25 || ^9.5.19"
555
+ },
556
+ "type": "library",
557
+ "extra": {
558
+ "branch-alias": {
559
+ "dev-master": "1.x-dev"
560
+ }
561
+ },
562
+ "autoload": {
563
+ "psr-4": {
564
+ "Behat\\Transliterator\\": "src/Behat/Transliterator"
565
+ }
566
+ },
567
+ "notification-url": "https://packagist.org/downloads/",
568
+ "license": [
569
+ "Artistic-1.0"
570
+ ],
571
+ "description": "String transliterator",
572
+ "keywords": [
573
+ "i18n",
574
+ "slug",
575
+ "transliterator"
576
+ ],
577
+ "support": {
578
+ "issues": "https://github.com/Behat/Transliterator/issues",
579
+ "source": "https://github.com/Behat/Transliterator/tree/v1.5.0"
580
+ },
581
+ "time": "2022-03-30T09:27:43+00:00"
582
+ },
583
  {
584
  "name": "bordoni/phpass",
585
+ "version": "0.3.6",
586
  "source": {
587
  "type": "git",
588
  "url": "https://github.com/bordoni/phpass.git",
589
+ "reference": "12f8f5cc03ebb7efd69554f104afe9aa1aa46e1a"
590
  },
591
  "dist": {
592
  "type": "zip",
593
+ "url": "https://api.github.com/repos/bordoni/phpass/zipball/12f8f5cc03ebb7efd69554f104afe9aa1aa46e1a",
594
+ "reference": "12f8f5cc03ebb7efd69554f104afe9aa1aa46e1a",
595
  "shasum": ""
596
  },
597
  "require": {
623
  }
624
  ],
625
  "description": "Portable PHP password hashing framework",
626
+ "homepage": "http://github.com/bordoni/phpass/",
627
  "keywords": [
628
  "blowfish",
629
  "crypt",
632
  ],
633
  "support": {
634
  "issues": "https://github.com/bordoni/phpass/issues",
635
+ "source": "https://github.com/bordoni/phpass/tree/0.3.6"
636
  },
637
  "time": "2012-08-31T00:00:00+00:00"
638
  },
639
  {
640
  "name": "codeception/codeception",
641
+ "version": "4.1.31",
642
  "source": {
643
  "type": "git",
644
  "url": "https://github.com/Codeception/Codeception.git",
645
+ "reference": "15524571ae0686a7facc2eb1f40f600e5bbce9e5"
646
  },
647
  "dist": {
648
  "type": "zip",
649
+ "url": "https://api.github.com/repos/Codeception/Codeception/zipball/15524571ae0686a7facc2eb1f40f600e5bbce9e5",
650
+ "reference": "15524571ae0686a7facc2eb1f40f600e5bbce9e5",
651
  "shasum": ""
652
  },
653
  "require": {
694
  "branch-alias": []
695
  },
696
  "autoload": {
697
+ "files": [
698
+ "functions.php"
699
+ ],
700
  "psr-4": {
701
  "Codeception\\": "src/Codeception",
702
  "Codeception\\Extension\\": "ext"
703
+ }
 
 
 
704
  },
705
  "notification-url": "https://packagist.org/downloads/",
706
  "license": [
724
  ],
725
  "support": {
726
  "issues": "https://github.com/Codeception/Codeception/issues",
727
+ "source": "https://github.com/Codeception/Codeception/tree/4.1.31"
728
  },
729
  "funding": [
730
  {
732
  "type": "open_collective"
733
  }
734
  ],
735
+ "time": "2022-03-13T17:07:08+00:00"
736
  },
737
  {
738
  "name": "codeception/lib-asserts",
954
  },
955
  {
956
  "name": "codeception/module-db",
957
+ "version": "1.2.0",
958
  "source": {
959
  "type": "git",
960
  "url": "https://github.com/Codeception/module-db.git",
961
+ "reference": "04c3e66fbd3a3ced17fcccc49627f6393a97b04b"
962
  },
963
  "dist": {
964
  "type": "zip",
965
+ "url": "https://api.github.com/repos/Codeception/module-db/zipball/04c3e66fbd3a3ced17fcccc49627f6393a97b04b",
966
+ "reference": "04c3e66fbd3a3ced17fcccc49627f6393a97b04b",
967
  "shasum": ""
968
  },
969
  "require": {
1000
  ],
1001
  "support": {
1002
  "issues": "https://github.com/Codeception/module-db/issues",
1003
+ "source": "https://github.com/Codeception/module-db/tree/1.2.0"
1004
  },
1005
+ "time": "2022-03-05T19:38:40+00:00"
1006
  },
1007
  {
1008
  "name": "codeception/module-filesystem",
1058
  },
1059
  {
1060
  "name": "codeception/module-phpbrowser",
1061
+ "version": "1.0.3",
1062
  "source": {
1063
  "type": "git",
1064
  "url": "https://github.com/Codeception/module-phpbrowser.git",
1065
+ "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e"
1066
  },
1067
  "dist": {
1068
  "type": "zip",
1069
+ "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/8ba6bede11d0914e74d98691f427fd8f397f192e",
1070
+ "reference": "8ba6bede11d0914e74d98691f427fd8f397f192e",
1071
  "shasum": ""
1072
  },
1073
  "require": {
1074
+ "codeception/codeception": "^4.1",
1075
  "codeception/lib-innerbrowser": "^1.3",
1076
  "guzzlehttp/guzzle": "^6.3|^7.0",
1077
  "php": ">=5.6.0 <9.0"
1112
  ],
1113
  "support": {
1114
  "issues": "https://github.com/Codeception/module-phpbrowser/issues",
1115
+ "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.3"
1116
  },
1117
+ "time": "2022-05-21T13:50:41+00:00"
1118
  },
1119
  {
1120
  "name": "codeception/module-rest",
1272
  },
1273
  {
1274
  "name": "codeception/phpunit-wrapper",
1275
+ "version": "9.0.9",
1276
  "source": {
1277
  "type": "git",
1278
  "url": "https://github.com/Codeception/phpunit-wrapper.git",
1279
+ "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf"
1280
  },
1281
  "dist": {
1282
  "type": "zip",
1283
+ "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
1284
+ "reference": "7439a53ae367986e9c22b2ac00f9d7376bb2f8cf",
1285
  "shasum": ""
1286
  },
1287
  "require": {
1315
  "description": "PHPUnit classes used by Codeception",
1316
  "support": {
1317
  "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
1318
+ "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.9"
1319
  },
1320
+ "time": "2022-05-23T06:24:11+00:00"
1321
  },
1322
  {
1323
  "name": "codeception/stub",
1324
+ "version": "4.0.2",
1325
  "source": {
1326
  "type": "git",
1327
  "url": "https://github.com/Codeception/Stub.git",
1328
+ "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d"
1329
  },
1330
  "dist": {
1331
  "type": "zip",
1332
+ "url": "https://api.github.com/repos/Codeception/Stub/zipball/18a148dacd293fc7b044042f5aa63a82b08bff5d",
1333
+ "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d",
1334
  "shasum": ""
1335
  },
1336
  "require": {
1337
  "php": "^7.4 | ^8.0",
1338
+ "phpunit/phpunit": "^8.4 | ^9.0 | ^10.0 | 10.0.x-dev"
1339
  },
1340
  "require-dev": {
1341
  "consolidation/robo": "^3.0"
1353
  "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
1354
  "support": {
1355
  "issues": "https://github.com/Codeception/Stub/issues",
1356
+ "source": "https://github.com/Codeception/Stub/tree/4.0.2"
1357
  },
1358
+ "time": "2022-01-31T19:25:15+00:00"
1359
  },
1360
  {
1361
  "name": "codeception/util-universalframework",
1469
  },
1470
  {
1471
  "name": "composer/pcre",
1472
+ "version": "3.0.0",
1473
  "source": {
1474
  "type": "git",
1475
  "url": "https://github.com/composer/pcre.git",
1476
+ "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd"
1477
  },
1478
  "dist": {
1479
  "type": "zip",
1480
+ "url": "https://api.github.com/repos/composer/pcre/zipball/e300eb6c535192decd27a85bc72a9290f0d6b3bd",
1481
+ "reference": "e300eb6c535192decd27a85bc72a9290f0d6b3bd",
1482
  "shasum": ""
1483
  },
1484
  "require": {
1485
+ "php": "^7.4 || ^8.0"
1486
  },
1487
  "require-dev": {
1488
  "phpstan/phpstan": "^1.3",
1489
  "phpstan/phpstan-strict-rules": "^1.1",
1490
+ "symfony/phpunit-bridge": "^5"
1491
  },
1492
  "type": "library",
1493
  "extra": {
1494
  "branch-alias": {
1495
+ "dev-main": "3.x-dev"
1496
  }
1497
  },
1498
  "autoload": {
1520
  ],
1521
  "support": {
1522
  "issues": "https://github.com/composer/pcre/issues",
1523
+ "source": "https://github.com/composer/pcre/tree/3.0.0"
1524
  },
1525
  "funding": [
1526
  {
1536
  "type": "tidelift"
1537
  }
1538
  ],
1539
+ "time": "2022-02-25T20:21:48+00:00"
1540
  },
1541
  {
1542
  "name": "composer/semver",
1543
+ "version": "3.3.2",
1544
  "source": {
1545
  "type": "git",
1546
  "url": "https://github.com/composer/semver.git",
1547
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
1548
  },
1549
  "dist": {
1550
  "type": "zip",
1551
+ "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
1552
+ "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
1553
  "shasum": ""
1554
  },
1555
  "require": {
1556
  "php": "^5.3.2 || ^7.0 || ^8.0"
1557
  },
1558
  "require-dev": {
1559
+ "phpstan/phpstan": "^1.4",
1560
  "symfony/phpunit-bridge": "^4.2 || ^5"
1561
  },
1562
  "type": "library",
1601
  "support": {
1602
  "irc": "irc://irc.freenode.org/composer",
1603
  "issues": "https://github.com/composer/semver/issues",
1604
+ "source": "https://github.com/composer/semver/tree/3.3.2"
1605
  },
1606
  "funding": [
1607
  {
1617
  "type": "tidelift"
1618
  }
1619
  ],
1620
+ "time": "2022-04-01T19:23:25+00:00"
1621
  },
1622
  {
1623
  "name": "composer/xdebug-handler",
1624
+ "version": "3.0.3",
1625
  "source": {
1626
  "type": "git",
1627
  "url": "https://github.com/composer/xdebug-handler.git",
1628
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c"
1629
  },
1630
  "dist": {
1631
  "type": "zip",
1632
+ "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
1633
+ "reference": "ced299686f41dce890debac69273b47ffe98a40c",
1634
  "shasum": ""
1635
  },
1636
  "require": {
1637
+ "composer/pcre": "^1 || ^2 || ^3",
1638
+ "php": "^7.2.5 || ^8.0",
1639
  "psr/log": "^1 || ^2 || ^3"
1640
  },
1641
  "require-dev": {
1642
  "phpstan/phpstan": "^1.0",
1643
  "phpstan/phpstan-strict-rules": "^1.1",
1644
+ "symfony/phpunit-bridge": "^6.0"
1645
  },
1646
  "type": "library",
1647
  "autoload": {
1667
  "support": {
1668
  "irc": "irc://irc.freenode.org/composer",
1669
  "issues": "https://github.com/composer/xdebug-handler/issues",
1670
+ "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
1671
  },
1672
  "funding": [
1673
  {
1683
  "type": "tidelift"
1684
  }
1685
  ],
1686
+ "time": "2022-02-25T21:32:43+00:00"
1687
  },
1688
  {
1689
  "name": "consolidation/annotated-command",
1690
+ "version": "4.5.5",
1691
  "source": {
1692
  "type": "git",
1693
  "url": "https://github.com/consolidation/annotated-command.git",
1694
+ "reference": "67cea8e8e7656b74da651ea6f49321853996c0fd"
1695
  },
1696
  "dist": {
1697
  "type": "zip",
1698
+ "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/67cea8e8e7656b74da651ea6f49321853996c0fd",
1699
+ "reference": "67cea8e8e7656b74da651ea6f49321853996c0fd",
1700
  "shasum": ""
1701
  },
1702
  "require": {
1703
  "consolidation/output-formatters": "^4.1.1",
1704
  "php": ">=7.1.3",
1705
+ "psr/log": "^1|^2|^3",
1706
  "symfony/console": "^4.4.8|^5|^6",
1707
  "symfony/event-dispatcher": "^4.4.8|^5|^6",
1708
  "symfony/finder": "^4.4.8|^5|^6"
1737
  "description": "Initialize Symfony Console commands from annotated command class methods.",
1738
  "support": {
1739
  "issues": "https://github.com/consolidation/annotated-command/issues",
1740
+ "source": "https://github.com/consolidation/annotated-command/tree/4.5.5"
1741
  },
1742
+ "time": "2022-04-26T16:18:25+00:00"
1743
  },
1744
  {
1745
  "name": "consolidation/config",
1746
+ "version": "2.1.0",
1747
  "source": {
1748
  "type": "git",
1749
  "url": "https://github.com/consolidation/config.git",
1750
+ "reference": "0c15841b2bf60d9af1ce29884673e7d9d50c3b75"
1751
  },
1752
  "dist": {
1753
  "type": "zip",
1754
+ "url": "https://api.github.com/repos/consolidation/config/zipball/0c15841b2bf60d9af1ce29884673e7d9d50c3b75",
1755
+ "reference": "0c15841b2bf60d9af1ce29884673e7d9d50c3b75",
1756
  "shasum": ""
1757
  },
1758
  "require": {
1759
+ "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
1760
+ "grasmash/expander": "^2.0.1",
1761
  "php": ">=7.1.3",
1762
+ "symfony/event-dispatcher": "^4 || ^5 || ^6"
 
1763
  },
1764
  "require-dev": {
1765
+ "ext-json": "*",
1766
  "phpunit/phpunit": ">=7.5.20",
1767
  "squizlabs/php_codesniffer": "^3",
1768
+ "symfony/console": "^4 || ^5 || ^6",
1769
+ "symfony/yaml": "^4 || ^5 || ^6",
1770
+ "yoast/phpunit-polyfills": "^1"
1771
  },
1772
  "suggest": {
1773
  "symfony/event-dispatcher": "Required to inject configuration into Command options",
1797
  "description": "Provide configuration services for a commandline tool.",
1798
  "support": {
1799
  "issues": "https://github.com/consolidation/config/issues",
1800
+ "source": "https://github.com/consolidation/config/tree/2.1.0"
1801
  },
1802
+ "time": "2022-02-24T00:32:42+00:00"
1803
  },
1804
  {
1805
  "name": "consolidation/log",
1806
+ "version": "2.1.1",
1807
  "source": {
1808
  "type": "git",
1809
  "url": "https://github.com/consolidation/log.git",
1810
+ "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9"
1811
  },
1812
  "dist": {
1813
  "type": "zip",
1814
+ "url": "https://api.github.com/repos/consolidation/log/zipball/3ad08dc57e8aff9400111bad36beb0ed387fe6a9",
1815
+ "reference": "3ad08dc57e8aff9400111bad36beb0ed387fe6a9",
1816
  "shasum": ""
1817
  },
1818
  "require": {
1819
  "php": ">=7.1.3",
1820
+ "psr/log": "^1 || ^2",
1821
  "symfony/console": "^4 || ^5 || ^6"
1822
  },
1823
  "require-dev": {
1849
  "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
1850
  "support": {
1851
  "issues": "https://github.com/consolidation/log/issues",
1852
+ "source": "https://github.com/consolidation/log/tree/2.1.1"
1853
  },
1854
+ "time": "2022-02-24T04:27:32+00:00"
1855
  },
1856
  {
1857
  "name": "consolidation/output-formatters",
1858
+ "version": "4.2.2",
1859
  "source": {
1860
  "type": "git",
1861
  "url": "https://github.com/consolidation/output-formatters.git",
1862
+ "reference": "d57992bf81ead908ee21cd94b46ed65afa2e785b"
1863
  },
1864
  "dist": {
1865
  "type": "zip",
1866
+ "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/d57992bf81ead908ee21cd94b46ed65afa2e785b",
1867
+ "reference": "d57992bf81ead908ee21cd94b46ed65afa2e785b",
1868
  "shasum": ""
1869
  },
1870
  "require": {
1871
+ "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
1872
  "php": ">=7.1.3",
1873
  "symfony/console": "^4|^5|^6",
1874
  "symfony/finder": "^4|^5|^6"
1908
  "description": "Format text by applying transformations provided by plug-in formatters.",
1909
  "support": {
1910
  "issues": "https://github.com/consolidation/output-formatters/issues",
1911
+ "source": "https://github.com/consolidation/output-formatters/tree/4.2.2"
1912
  },
1913
+ "time": "2022-02-13T15:28:30+00:00"
1914
  },
1915
  {
1916
  "name": "consolidation/robo",
1917
+ "version": "3.0.10",
1918
  "source": {
1919
  "type": "git",
1920
  "url": "https://github.com/consolidation/robo.git",
1921
+ "reference": "206bbe23b34081a36bfefc4de2abbc1abcd29ef4"
1922
  },
1923
  "dist": {
1924
  "type": "zip",
1925
+ "url": "https://api.github.com/repos/consolidation/robo/zipball/206bbe23b34081a36bfefc4de2abbc1abcd29ef4",
1926
+ "reference": "206bbe23b34081a36bfefc4de2abbc1abcd29ef4",
1927
  "shasum": ""
1928
  },
1929
  "require": {
1932
  "consolidation/log": "^1.1.1 || ^2.0.2",
1933
  "consolidation/output-formatters": "^4.1.2",
1934
  "consolidation/self-update": "^2.0",
1935
+ "league/container": "^3.3.1 || ^4.0",
1936
  "php": ">=7.1.3",
1937
  "symfony/console": "^4.4.19 || ^5 || ^6",
1938
  "symfony/event-dispatcher": "^4.4.19 || ^5 || ^6",
1939
  "symfony/filesystem": "^4.4.9 || ^5 || ^6",
1940
  "symfony/finder": "^4.4.9 || ^5 || ^6",
1941
+ "symfony/process": "^4.4.9 || ^5 || ^6",
1942
  "symfony/yaml": "^4.4 || ^5 || ^6"
1943
  },
1944
  "conflict": {
2007
  "description": "Modern task runner",
2008
  "support": {
2009
  "issues": "https://github.com/consolidation/robo/issues",
2010
+ "source": "https://github.com/consolidation/robo/tree/3.0.10"
2011
  },
2012
+ "time": "2022-02-21T17:19:14+00:00"
2013
  },
2014
  {
2015
  "name": "consolidation/self-update",
2016
+ "version": "2.0.5",
2017
  "source": {
2018
  "type": "git",
2019
  "url": "https://github.com/consolidation/self-update.git",
2020
+ "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3"
2021
  },
2022
  "dist": {
2023
  "type": "zip",
2024
+ "url": "https://api.github.com/repos/consolidation/self-update/zipball/8a64bdd8daf5faa8e85f56534dd99caf928164b3",
2025
+ "reference": "8a64bdd8daf5faa8e85f56534dd99caf928164b3",
2026
  "shasum": ""
2027
  },
2028
  "require": {
2062
  "description": "Provides a self:update command for Symfony Console applications.",
2063
  "support": {
2064
  "issues": "https://github.com/consolidation/self-update/issues",
2065
+ "source": "https://github.com/consolidation/self-update/tree/2.0.5"
2066
  },
2067
+ "time": "2022-02-09T22:44:24+00:00"
2068
  },
2069
  {
2070
  "name": "dealerdirect/phpcodesniffer-composer-installer",
2071
+ "version": "v0.7.2",
2072
  "source": {
2073
  "type": "git",
2074
  "url": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer.git",
2075
+ "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db"
2076
  },
2077
  "dist": {
2078
  "type": "zip",
2079
+ "url": "https://api.github.com/repos/Dealerdirect/phpcodesniffer-composer-installer/zipball/1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
2080
+ "reference": "1c968e542d8843d7cd71de3c5c9c3ff3ad71a1db",
2081
  "shasum": ""
2082
  },
2083
  "require": {
2084
  "composer-plugin-api": "^1.0 || ^2.0",
2085
  "php": ">=5.3",
2086
+ "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
2087
  },
2088
  "require-dev": {
2089
  "composer/composer": "*",
2090
+ "php-parallel-lint/php-parallel-lint": "^1.3.1",
2091
+ "phpcompatibility/php-compatibility": "^9.0"
2092
  },
2093
  "type": "composer-plugin",
2094
  "extra": {
2109
  "email": "franck.nijhof@dealerdirect.com",
2110
  "homepage": "http://www.frenck.nl",
2111
  "role": "Developer / IT Manager"
2112
+ },
2113
+ {
2114
+ "name": "Contributors",
2115
+ "homepage": "https://github.com/Dealerdirect/phpcodesniffer-composer-installer/graphs/contributors"
2116
  }
2117
  ],
2118
  "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
2124
  "codesniffer",
2125
  "composer",
2126
  "installer",
2127
+ "phpcbf",
2128
  "phpcs",
2129
  "plugin",
2130
  "qa",
2139
  "issues": "https://github.com/dealerdirect/phpcodesniffer-composer-installer/issues",
2140
  "source": "https://github.com/dealerdirect/phpcodesniffer-composer-installer"
2141
  },
2142
+ "time": "2022-02-04T12:51:07+00:00"
2143
  },
2144
  {
2145
  "name": "dflydev/dot-access-data",
2146
+ "version": "v3.0.1",
2147
  "source": {
2148
  "type": "git",
2149
  "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
2150
+ "reference": "0992cc19268b259a39e86f296da5f0677841f42c"
2151
  },
2152
  "dist": {
2153
  "type": "zip",
2154
+ "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/0992cc19268b259a39e86f296da5f0677841f42c",
2155
+ "reference": "0992cc19268b259a39e86f296da5f0677841f42c",
2156
  "shasum": ""
2157
  },
2158
  "require": {
2159
+ "php": "^7.1 || ^8.0"
2160
+ },
2161
+ "require-dev": {
2162
+ "phpstan/phpstan": "^0.12.42",
2163
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
2164
+ "scrutinizer/ocular": "1.6.0",
2165
+ "squizlabs/php_codesniffer": "^3.5",
2166
+ "vimeo/psalm": "^3.14"
2167
  },
2168
  "type": "library",
2169
  "extra": {
2170
  "branch-alias": {
2171
+ "dev-main": "3.x-dev"
2172
  }
2173
  },
2174
  "autoload": {
2175
+ "psr-4": {
2176
+ "Dflydev\\DotAccessData\\": "src/"
2177
  }
2178
  },
2179
  "notification-url": "https://packagist.org/downloads/",
2195
  "name": "Carlos Frutos",
2196
  "email": "carlos@kiwing.it",
2197
  "homepage": "https://github.com/cfrutos"
2198
+ },
2199
+ {
2200
+ "name": "Colin O'Dell",
2201
+ "email": "colinodell@gmail.com",
2202
+ "homepage": "https://www.colinodell.com"
2203
  }
2204
  ],
2205
  "description": "Given a deep data structure, access data by dot notation.",
2212
  ],
2213
  "support": {
2214
  "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
2215
+ "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.1"
2216
  },
2217
+ "time": "2021-08-13T13:06:58+00:00"
2218
  },
2219
  {
2220
  "name": "dg/mysql-dump",
2461
  },
2462
  {
2463
  "name": "doctrine/instantiator",
2464
+ "version": "1.4.1",
2465
  "source": {
2466
  "type": "git",
2467
  "url": "https://github.com/doctrine/instantiator.git",
2468
+ "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc"
2469
  },
2470
  "dist": {
2471
  "type": "zip",
2472
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/10dcfce151b967d20fde1b34ae6640712c3891bc",
2473
+ "reference": "10dcfce151b967d20fde1b34ae6640712c3891bc",
2474
  "shasum": ""
2475
  },
2476
  "require": {
2477
  "php": "^7.1 || ^8.0"
2478
  },
2479
  "require-dev": {
2480
+ "doctrine/coding-standard": "^9",
2481
  "ext-pdo": "*",
2482
  "ext-phar": "*",
2483
+ "phpbench/phpbench": "^0.16 || ^1",
2484
+ "phpstan/phpstan": "^1.4",
2485
+ "phpstan/phpstan-phpunit": "^1",
2486
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
2487
+ "vimeo/psalm": "^4.22"
2488
  },
2489
  "type": "library",
2490
  "autoload": {
2511
  ],
2512
  "support": {
2513
  "issues": "https://github.com/doctrine/instantiator/issues",
2514
+ "source": "https://github.com/doctrine/instantiator/tree/1.4.1"
2515
  },
2516
  "funding": [
2517
  {
2527
  "type": "tidelift"
2528
  }
2529
  ],
2530
+ "time": "2022-03-03T08:28:38+00:00"
2531
  },
2532
  {
2533
  "name": "doctrine/lexer",
2534
+ "version": "1.2.3",
2535
  "source": {
2536
  "type": "git",
2537
  "url": "https://github.com/doctrine/lexer.git",
2538
+ "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229"
2539
  },
2540
  "dist": {
2541
  "type": "zip",
2542
+ "url": "https://api.github.com/repos/doctrine/lexer/zipball/c268e882d4dbdd85e36e4ad69e02dc284f89d229",
2543
+ "reference": "c268e882d4dbdd85e36e4ad69e02dc284f89d229",
2544
  "shasum": ""
2545
  },
2546
  "require": {
2548
  },
2549
  "require-dev": {
2550
  "doctrine/coding-standard": "^9.0",
2551
+ "phpstan/phpstan": "^1.3",
2552
  "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
2553
  "vimeo/psalm": "^4.11"
2554
  },
2587
  ],
2588
  "support": {
2589
  "issues": "https://github.com/doctrine/lexer/issues",
2590
+ "source": "https://github.com/doctrine/lexer/tree/1.2.3"
2591
  },
2592
  "funding": [
2593
  {
2603
  "type": "tidelift"
2604
  }
2605
  ],
2606
+ "time": "2022-02-28T11:07:21+00:00"
2607
+ },
2608
+ {
2609
+ "name": "eftec/bladeone",
2610
+ "version": "3.52",
2611
+ "source": {
2612
+ "type": "git",
2613
+ "url": "https://github.com/EFTEC/BladeOne.git",
2614
+ "reference": "a19bf66917de0b29836983db87a455a4f6e32148"
2615
+ },
2616
+ "dist": {
2617
+ "type": "zip",
2618
+ "url": "https://api.github.com/repos/EFTEC/BladeOne/zipball/a19bf66917de0b29836983db87a455a4f6e32148",
2619
+ "reference": "a19bf66917de0b29836983db87a455a4f6e32148",
2620
+ "shasum": ""
2621
+ },
2622
+ "require": {
2623
+ "ext-json": "*",
2624
+ "php": ">=5.6"
2625
+ },
2626
+ "require-dev": {
2627
+ "friendsofphp/php-cs-fixer": "^2.16.1",
2628
+ "phpunit/phpunit": "^5.7",
2629
+ "squizlabs/php_codesniffer": "^3.5.4"
2630
+ },
2631
+ "suggest": {
2632
+ "eftec/bladeonehtml": "Extension to create forms",
2633
+ "ext-mbstring": "This extension is used if it's active"
2634
+ },
2635
+ "type": "library",
2636
+ "autoload": {
2637
+ "psr-4": {
2638
+ "eftec\\bladeone\\": "lib/"
2639
+ }
2640
+ },
2641
+ "notification-url": "https://packagist.org/downloads/",
2642
+ "license": [
2643
+ "MIT"
2644
+ ],
2645
+ "authors": [
2646
+ {
2647
+ "name": "Jorge Patricio Castro Castillo",
2648
+ "email": "jcastro@eftec.cl"
2649
+ }
2650
+ ],
2651
+ "description": "The standalone version Blade Template Engine from Laravel in a single php file",
2652
+ "homepage": "https://github.com/EFTEC/BladeOne",
2653
+ "keywords": [
2654
+ "blade",
2655
+ "php",
2656
+ "template",
2657
+ "templating",
2658
+ "view"
2659
+ ],
2660
+ "support": {
2661
+ "issues": "https://github.com/EFTEC/BladeOne/issues",
2662
+ "source": "https://github.com/EFTEC/BladeOne/tree/3.52"
2663
+ },
2664
+ "time": "2021-04-17T13:49:01+00:00"
2665
  },
2666
  {
2667
  "name": "felixfbecker/advanced-json-rpc",
2710
  },
2711
  {
2712
  "name": "felixfbecker/language-server-protocol",
2713
+ "version": "v1.5.2",
2714
  "source": {
2715
  "type": "git",
2716
  "url": "https://github.com/felixfbecker/php-language-server-protocol.git",
2717
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842"
2718
  },
2719
  "dist": {
2720
  "type": "zip",
2721
+ "url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/6e82196ffd7c62f7794d778ca52b69feec9f2842",
2722
+ "reference": "6e82196ffd7c62f7794d778ca52b69feec9f2842",
2723
  "shasum": ""
2724
  },
2725
  "require": {
2760
  ],
2761
  "support": {
2762
  "issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
2763
+ "source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.2"
2764
  },
2765
+ "time": "2022-03-02T22:36:06+00:00"
2766
  },
2767
  {
2768
  "name": "friendsofphp/php-cs-fixer",
2769
+ "version": "v3.8.0",
2770
  "source": {
2771
  "type": "git",
2772
  "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
2773
+ "reference": "cbad1115aac4b5c3c5540e7210d3c9fba2f81fa3"
2774
  },
2775
  "dist": {
2776
  "type": "zip",
2777
+ "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/cbad1115aac4b5c3c5540e7210d3c9fba2f81fa3",
2778
+ "reference": "cbad1115aac4b5c3c5540e7210d3c9fba2f81fa3",
2779
  "shasum": ""
2780
  },
2781
  "require": {
2782
  "composer/semver": "^3.2",
2783
+ "composer/xdebug-handler": "^3.0.3",
2784
+ "doctrine/annotations": "^1.13",
2785
  "ext-json": "*",
2786
  "ext-tokenizer": "*",
2787
+ "php": "^7.4 || ^8.0",
2788
  "php-cs-fixer/diff": "^2.0",
2789
+ "symfony/console": "^5.4 || ^6.0",
2790
+ "symfony/event-dispatcher": "^5.4 || ^6.0",
2791
+ "symfony/filesystem": "^5.4 || ^6.0",
2792
+ "symfony/finder": "^5.4 || ^6.0",
2793
+ "symfony/options-resolver": "^5.4 || ^6.0",
2794
  "symfony/polyfill-mbstring": "^1.23",
2795
+ "symfony/polyfill-php80": "^1.25",
2796
+ "symfony/polyfill-php81": "^1.25",
2797
+ "symfony/process": "^5.4 || ^6.0",
2798
+ "symfony/stopwatch": "^5.4 || ^6.0"
2799
  },
2800
  "require-dev": {
2801
  "justinrainbow/json-schema": "^5.2",
2802
  "keradus/cli-executor": "^1.5",
2803
+ "mikey179/vfsstream": "^1.6.10",
2804
  "php-coveralls/php-coveralls": "^2.5.2",
2805
  "php-cs-fixer/accessible-object": "^1.1",
2806
  "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
2807
  "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
2808
  "phpspec/prophecy": "^1.15",
2809
+ "phpspec/prophecy-phpunit": "^2.0",
2810
+ "phpunit/phpunit": "^9.5",
2811
  "phpunitgoodpractices/polyfill": "^1.5",
2812
  "phpunitgoodpractices/traits": "^1.9.1",
2813
+ "symfony/phpunit-bridge": "^6.0",
2814
+ "symfony/yaml": "^5.4 || ^6.0"
2815
  },
2816
  "suggest": {
2817
  "ext-dom": "For handling output formats in XML",
2843
  "description": "A tool to automatically fix PHP code style",
2844
  "support": {
2845
  "issues": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/issues",
2846
+ "source": "https://github.com/FriendsOfPHP/PHP-CS-Fixer/tree/v3.8.0"
2847
  },
2848
  "funding": [
2849
  {
2851
  "type": "github"
2852
  }
2853
  ],
2854
+ "time": "2022-03-18T17:20:59+00:00"
2855
  },
2856
  {
2857
  "name": "gettext/gettext",
3010
  },
3011
  {
3012
  "name": "grasmash/expander",
3013
+ "version": "2.0.3",
3014
  "source": {
3015
  "type": "git",
3016
  "url": "https://github.com/grasmash/expander.git",
3017
+ "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e"
3018
  },
3019
  "dist": {
3020
  "type": "zip",
3021
+ "url": "https://api.github.com/repos/grasmash/expander/zipball/b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e",
3022
+ "reference": "b7cbc1f2fdf9a9c0e253a424c2a4058316b7cb6e",
3023
  "shasum": ""
3024
  },
3025
  "require": {
3026
+ "dflydev/dot-access-data": "^3.0.0",
3027
+ "php": ">=7.1",
3028
+ "psr/log": "^1 | ^2 | ^3"
3029
  },
3030
  "require-dev": {
3031
  "greg-1-anderson/composer-test-scenarios": "^1",
3032
+ "phpunit/phpunit": "^6.0 || ^8.0 || ^9",
3033
+ "squizlabs/php_codesniffer": "^2.7 || ^3.3"
 
3034
  },
3035
  "type": "library",
3036
  "extra": {
3055
  "description": "Expands internal property references in PHP arrays file.",
3056
  "support": {
3057
  "issues": "https://github.com/grasmash/expander/issues",
3058
+ "source": "https://github.com/grasmash/expander/tree/2.0.3"
3059
  },
3060
+ "time": "2022-04-25T22:17:46+00:00"
3061
  },
3062
  {
3063
  "name": "guzzlehttp/guzzle",
3064
+ "version": "7.4.3",
3065
  "source": {
3066
  "type": "git",
3067
  "url": "https://github.com/guzzle/guzzle.git",
3068
+ "reference": "74a8602c6faec9ef74b7a9391ac82c5e65b1cdab"
3069
  },
3070
  "dist": {
3071
  "type": "zip",
3072
+ "url": "https://api.github.com/repos/guzzle/guzzle/zipball/74a8602c6faec9ef74b7a9391ac82c5e65b1cdab",
3073
+ "reference": "74a8602c6faec9ef74b7a9391ac82c5e65b1cdab",
3074
  "shasum": ""
3075
  },
3076
  "require": {
3103
  }
3104
  },
3105
  "autoload": {
 
 
 
3106
  "files": [
3107
  "src/functions_include.php"
3108
+ ],
3109
+ "psr-4": {
3110
+ "GuzzleHttp\\": "src/"
3111
+ }
3112
  },
3113
  "notification-url": "https://packagist.org/downloads/",
3114
  "license": [
3165
  ],
3166
  "support": {
3167
  "issues": "https://github.com/guzzle/guzzle/issues",
3168
+ "source": "https://github.com/guzzle/guzzle/tree/7.4.3"
3169
  },
3170
  "funding": [
3171
  {
3181
  "type": "tidelift"
3182
  }
3183
  ],
3184
+ "time": "2022-05-25T13:24:33+00:00"
3185
  },
3186
  {
3187
  "name": "guzzlehttp/promises",
3210
  }
3211
  },
3212
  "autoload": {
 
 
 
3213
  "files": [
3214
  "src/functions_include.php"
3215
+ ],
3216
+ "psr-4": {
3217
+ "GuzzleHttp\\Promise\\": "src/"
3218
+ }
3219
  },
3220
  "notification-url": "https://packagist.org/downloads/",
3221
  "license": [
3269
  },
3270
  {
3271
  "name": "guzzlehttp/psr7",
3272
+ "version": "2.2.1",
3273
  "source": {
3274
  "type": "git",
3275
  "url": "https://github.com/guzzle/psr7.git",
3276
+ "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2"
3277
  },
3278
  "dist": {
3279
  "type": "zip",
3280
+ "url": "https://api.github.com/repos/guzzle/psr7/zipball/c94a94f120803a18554c1805ef2e539f8285f9a2",
3281
+ "reference": "c94a94f120803a18554c1805ef2e539f8285f9a2",
3282
  "shasum": ""
3283
  },
3284
  "require": {
3302
  "type": "library",
3303
  "extra": {
3304
  "branch-alias": {
3305
+ "dev-master": "2.2-dev"
3306
  }
3307
  },
3308
  "autoload": {
3364
  ],
3365
  "support": {
3366
  "issues": "https://github.com/guzzle/psr7/issues",
3367
+ "source": "https://github.com/guzzle/psr7/tree/2.2.1"
3368
  },
3369
  "funding": [
3370
  {
3380
  "type": "tidelift"
3381
  }
3382
  ],
3383
+ "time": "2022-03-20T21:55:58+00:00"
3384
  },
3385
  {
3386
  "name": "illuminate/collections",
3387
+ "version": "v8.83.16",
3388
  "source": {
3389
  "type": "git",
3390
  "url": "https://github.com/illuminate/collections.git",
3391
+ "reference": "fc232e89c0214dba5d2b431220a24b02d480a472"
3392
  },
3393
  "dist": {
3394
  "type": "zip",
3395
+ "url": "https://api.github.com/repos/illuminate/collections/zipball/fc232e89c0214dba5d2b431220a24b02d480a472",
3396
+ "reference": "fc232e89c0214dba5d2b431220a24b02d480a472",
3397
  "shasum": ""
3398
  },
3399
  "require": {
3411
  }
3412
  },
3413
  "autoload": {
 
 
 
3414
  "files": [
3415
  "helpers.php"
3416
+ ],
3417
+ "psr-4": {
3418
+ "Illuminate\\Support\\": ""
3419
+ }
3420
  },
3421
  "notification-url": "https://packagist.org/downloads/",
3422
  "license": [
3434
  "issues": "https://github.com/laravel/framework/issues",
3435
  "source": "https://github.com/laravel/framework"
3436
  },
3437
+ "time": "2022-03-25T14:53:23+00:00"
3438
  },
3439
  {
3440
  "name": "illuminate/contracts",
3441
+ "version": "v8.83.16",
3442
  "source": {
3443
  "type": "git",
3444
  "url": "https://github.com/illuminate/contracts.git",
3486
  },
3487
  {
3488
  "name": "illuminate/macroable",
3489
+ "version": "v8.83.16",
3490
  "source": {
3491
  "type": "git",
3492
  "url": "https://github.com/illuminate/macroable.git",
3532
  },
3533
  {
3534
  "name": "illuminate/support",
3535
+ "version": "v8.83.16",
3536
  "source": {
3537
  "type": "git",
3538
  "url": "https://github.com/illuminate/support.git",
3539
+ "reference": "be43102d3491e8335812aa5441a1552108ddd7b5"
3540
  },
3541
  "dist": {
3542
  "type": "zip",
3543
+ "url": "https://api.github.com/repos/illuminate/support/zipball/be43102d3491e8335812aa5441a1552108ddd7b5",
3544
+ "reference": "be43102d3491e8335812aa5441a1552108ddd7b5",
3545
  "shasum": ""
3546
  },
3547
  "require": {
3573
  }
3574
  },
3575
  "autoload": {
 
 
 
3576
  "files": [
3577
  "helpers.php"
3578
+ ],
3579
+ "psr-4": {
3580
+ "Illuminate\\Support\\": ""
3581
+ }
3582
  },
3583
  "notification-url": "https://packagist.org/downloads/",
3584
  "license": [
3596
  "issues": "https://github.com/laravel/framework/issues",
3597
  "source": "https://github.com/laravel/framework"
3598
  },
3599
+ "time": "2022-06-07T14:46:48+00:00"
3600
  },
3601
  {
3602
  "name": "justinrainbow/json-schema",
3603
+ "version": "5.2.12",
3604
  "source": {
3605
  "type": "git",
3606
  "url": "https://github.com/justinrainbow/json-schema.git",
3607
+ "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60"
3608
  },
3609
  "dist": {
3610
  "type": "zip",
3611
+ "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
3612
+ "reference": "ad87d5a5ca981228e0e205c2bc7dfb8e24559b60",
3613
  "shasum": ""
3614
  },
3615
  "require": {
3664
  ],
3665
  "support": {
3666
  "issues": "https://github.com/justinrainbow/json-schema/issues",
3667
+ "source": "https://github.com/justinrainbow/json-schema/tree/5.2.12"
3668
  },
3669
+ "time": "2022-04-13T08:02:27+00:00"
3670
  },
3671
  {
3672
  "name": "league/container",
3673
+ "version": "4.2.0",
3674
  "source": {
3675
  "type": "git",
3676
  "url": "https://github.com/thephpleague/container.git",
3677
+ "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
3678
  },
3679
  "dist": {
3680
  "type": "zip",
3681
+ "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
3682
+ "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
3683
  "shasum": ""
3684
  },
3685
  "require": {
3686
+ "php": "^7.2 || ^8.0",
3687
+ "psr/container": "^1.1 || ^2.0"
3688
  },
3689
  "provide": {
3690
  "psr/container-implementation": "^1.0"
3693
  "orno/di": "~2.0"
3694
  },
3695
  "require-dev": {
3696
+ "nette/php-generator": "^3.4",
3697
+ "nikic/php-parser": "^4.10",
3698
+ "phpstan/phpstan": "^0.12.47",
3699
+ "phpunit/phpunit": "^8.5.17",
3700
  "roave/security-advisories": "dev-latest",
3701
  "scrutinizer/ocular": "^1.8",
3702
+ "squizlabs/php_codesniffer": "^3.6"
3703
  },
3704
  "type": "library",
3705
  "extra": {
3706
  "branch-alias": {
3707
+ "dev-master": "4.x-dev",
3708
+ "dev-4.x": "4.x-dev",
3709
  "dev-3.x": "3.x-dev",
3710
  "dev-2.x": "2.x-dev",
3711
  "dev-1.x": "1.x-dev"
3723
  "authors": [
3724
  {
3725
  "name": "Phil Bennett",
3726
+ "email": "mail@philbennett.co.uk",
 
3727
  "role": "Developer"
3728
  }
3729
  ],
3740
  ],
3741
  "support": {
3742
  "issues": "https://github.com/thephpleague/container/issues",
3743
+ "source": "https://github.com/thephpleague/container/tree/4.2.0"
3744
  },
3745
  "funding": [
3746
  {
3748
  "type": "github"
3749
  }
3750
  ],
3751
+ "time": "2021-11-16T10:29:06+00:00"
3752
  },
3753
  {
3754
  "name": "lucatume/wp-browser",
3755
+ "version": "3.1.6",
3756
  "source": {
3757
  "type": "git",
3758
  "url": "https://github.com/lucatume/wp-browser.git",
3759
+ "reference": "5cefdab50d16f69447c48e5a8668d67d4892d6ef"
3760
  },
3761
  "dist": {
3762
  "type": "zip",
3763
+ "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/5cefdab50d16f69447c48e5a8668d67d4892d6ef",
3764
+ "reference": "5cefdab50d16f69447c48e5a8668d67d4892d6ef",
3765
  "shasum": ""
3766
  },
3767
  "require": {
3790
  },
3791
  "require-dev": {
3792
  "erusev/parsedown": "^1.7",
3793
+ "ext-pcntl": "*",
3794
+ "ext-sockets": "*",
3795
  "gumlet/php-image-resize": "^1.6",
3796
  "lucatume/codeception-snapshot-assertions": "^0.2",
3797
  "mikey179/vfsstream": "^1.6",
3815
  "_hash": "484f861f69198089cab0e642f27e5653"
3816
  },
3817
  "autoload": {
 
 
 
 
3818
  "files": [
3819
  "src/tad/WPBrowser/utils.php",
3820
  "src/tad/WPBrowser/wp-polyfills.php"
3821
+ ],
3822
+ "psr-4": {
3823
+ "tad\\": "src/tad",
3824
+ "Codeception\\": "src/Codeception",
3825
+ "lucatume\\WPBrowser\\": "src/"
3826
+ }
3827
  },
3828
  "notification-url": "https://packagist.org/downloads/",
3829
  "license": [
3845
  ],
3846
  "support": {
3847
  "issues": "https://github.com/lucatume/wp-browser/issues",
3848
+ "source": "https://github.com/lucatume/wp-browser/tree/3.1.6"
3849
  },
3850
  "funding": [
3851
  {
3853
  "type": "github"
3854
  }
3855
  ],
3856
+ "time": "2022-04-28T06:45:08+00:00"
3857
  },
3858
  {
3859
  "name": "mck89/peast",
3860
+ "version": "v1.14.0",
3861
  "source": {
3862
  "type": "git",
3863
  "url": "https://github.com/mck89/peast.git",
3864
+ "reference": "70a728d598017e237118652b2fa30fbaa9d4ef6d"
3865
  },
3866
  "dist": {
3867
  "type": "zip",
3868
+ "url": "https://api.github.com/repos/mck89/peast/zipball/70a728d598017e237118652b2fa30fbaa9d4ef6d",
3869
+ "reference": "70a728d598017e237118652b2fa30fbaa9d4ef6d",
3870
  "shasum": ""
3871
  },
3872
  "require": {
3879
  "type": "library",
3880
  "extra": {
3881
  "branch-alias": {
3882
+ "dev-master": "1.14.0-dev"
3883
  }
3884
  },
3885
  "autoload": {
3901
  "description": "Peast is PHP library that generates AST for JavaScript code",
3902
  "support": {
3903
  "issues": "https://github.com/mck89/peast/issues",
3904
+ "source": "https://github.com/mck89/peast/tree/v1.14.0"
3905
  },
3906
+ "time": "2022-05-01T15:09:54+00:00"
3907
  },
3908
  {
3909
  "name": "mikehaertl/php-shellcommand",
3970
  "illuminate/support": ">=4.0.0",
3971
  "php": ">=5.3.0"
3972
  },
 
 
 
3973
  "require-dev": {
3974
  "mockery/mockery": "~0.9",
3975
  "phpunit/phpunit": "~4.0",
4068
  },
4069
  {
4070
  "name": "myclabs/deep-copy",
4071
+ "version": "1.11.0",
4072
  "source": {
4073
  "type": "git",
4074
  "url": "https://github.com/myclabs/DeepCopy.git",
4075
+ "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
4076
  },
4077
  "dist": {
4078
  "type": "zip",
4079
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
4080
+ "reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
4081
  "shasum": ""
4082
  },
4083
  "require": {
4084
  "php": "^7.1 || ^8.0"
4085
  },
4086
+ "conflict": {
4087
+ "doctrine/collections": "<1.6.8",
4088
+ "doctrine/common": "<2.13.3 || >=3,<3.2.2"
4089
  },
4090
  "require-dev": {
4091
+ "doctrine/collections": "^1.6.8",
4092
+ "doctrine/common": "^2.13.3 || ^3.2.2",
4093
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
4094
  },
4095
  "type": "library",
4096
  "autoload": {
 
 
 
4097
  "files": [
4098
  "src/DeepCopy/deep_copy.php"
4099
+ ],
4100
+ "psr-4": {
4101
+ "DeepCopy\\": "src/DeepCopy/"
4102
+ }
4103
  },
4104
  "notification-url": "https://packagist.org/downloads/",
4105
  "license": [
4115
  ],
4116
  "support": {
4117
  "issues": "https://github.com/myclabs/DeepCopy/issues",
4118
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
4119
  },
4120
  "funding": [
4121
  {
4123
  "type": "tidelift"
4124
  }
4125
  ],
4126
+ "time": "2022-03-03T13:19:32+00:00"
4127
  },
4128
  {
4129
  "name": "n98/junit-xml",
4167
  },
4168
  {
4169
  "name": "nelexa/zip",
4170
+ "version": "4.0.1",
4171
  "source": {
4172
  "type": "git",
4173
  "url": "https://github.com/Ne-Lexa/php-zip.git",
4174
+ "reference": "a18f80db509b1b6e9798e2745dc100759107f50c"
4175
  },
4176
  "dist": {
4177
  "type": "zip",
4178
+ "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/a18f80db509b1b6e9798e2745dc100759107f50c",
4179
+ "reference": "a18f80db509b1b6e9798e2745dc100759107f50c",
4180
  "shasum": ""
4181
  },
4182
  "require": {
4183
  "ext-zlib": "*",
4184
+ "php": "^7.4 || ^8.0",
4185
+ "psr/http-message": "*",
4186
+ "symfony/finder": "*"
 
4187
  },
4188
  "require-dev": {
4189
  "ext-bz2": "*",
4190
+ "ext-dom": "*",
4191
  "ext-fileinfo": "*",
4192
+ "ext-iconv": "*",
4193
  "ext-openssl": "*",
4194
  "ext-xml": "*",
4195
+ "friendsofphp/php-cs-fixer": "^3.4.0",
4196
  "guzzlehttp/psr7": "^1.6",
4197
+ "phpunit/phpunit": "^9",
4198
+ "symfony/http-foundation": "*",
4199
+ "symfony/var-dumper": "*",
4200
+ "vimeo/psalm": "^4.6"
4201
  },
4202
  "suggest": {
4203
  "ext-bz2": "Needed to support BZIP2 compression",
4204
  "ext-fileinfo": "Needed to get mime-type file",
4205
+ "ext-iconv": "Needed to support convert zip entry name to requested character encoding",
4206
  "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
4207
  },
4208
  "type": "library",
4222
  "role": "Developer"
4223
  }
4224
  ],
4225
+ "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
4226
  "homepage": "https://github.com/Ne-Lexa/php-zip",
4227
  "keywords": [
4228
  "archive",
4230
  "unzip",
4231
  "winzip",
4232
  "zip",
 
4233
  "ziparchive"
4234
  ],
4235
  "support": {
4236
  "issues": "https://github.com/Ne-Lexa/php-zip/issues",
4237
+ "source": "https://github.com/Ne-Lexa/php-zip/tree/4.0.1"
4238
  },
4239
+ "time": "2021-12-12T09:50:45+00:00"
4240
  },
4241
  {
4242
  "name": "nesbot/carbon",
4243
+ "version": "2.58.0",
4244
  "source": {
4245
  "type": "git",
4246
  "url": "https://github.com/briannesbitt/Carbon.git",
4247
+ "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055"
4248
  },
4249
  "dist": {
4250
  "type": "zip",
4251
+ "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/97a34af22bde8d0ac20ab34b29d7bfe360902055",
4252
+ "reference": "97a34af22bde8d0ac20ab34b29d7bfe360902055",
4253
  "shasum": ""
4254
  },
4255
  "require": {
4267
  "phpmd/phpmd": "^2.9",
4268
  "phpstan/extension-installer": "^1.0",
4269
  "phpstan/phpstan": "^0.12.54 || ^1.0",
4270
+ "phpunit/php-file-iterator": "^2.0.5",
4271
+ "phpunit/phpunit": "^7.5.20 || ^8.5.23",
4272
  "squizlabs/php_codesniffer": "^3.4"
4273
  },
4274
  "bin": [
4333
  "type": "tidelift"
4334
  }
4335
  ],
4336
+ "time": "2022-04-25T19:31:17+00:00"
4337
  },
4338
  {
4339
  "name": "netresearch/jsonmapper",
4388
  },
4389
  {
4390
  "name": "nikic/php-parser",
4391
+ "version": "v4.14.0",
4392
  "source": {
4393
  "type": "git",
4394
  "url": "https://github.com/nikic/PHP-Parser.git",
4395
+ "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1"
4396
  },
4397
  "dist": {
4398
  "type": "zip",
4399
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/34bea19b6e03d8153165d8f30bba4c3be86184c1",
4400
+ "reference": "34bea19b6e03d8153165d8f30bba4c3be86184c1",
4401
  "shasum": ""
4402
  },
4403
  "require": {
4438
  ],
4439
  "support": {
4440
  "issues": "https://github.com/nikic/PHP-Parser/issues",
4441
+ "source": "https://github.com/nikic/PHP-Parser/tree/v4.14.0"
4442
  },
4443
+ "time": "2022-05-31T20:59:12+00:00"
4444
  },
4445
  {
4446
  "name": "openlss/lib-array2xml",
4565
  },
4566
  "time": "2021-06-02T16:18:33+00:00"
4567
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4568
  {
4569
  "name": "pdepend/pdepend",
4570
+ "version": "2.10.3",
4571
  "source": {
4572
  "type": "git",
4573
  "url": "https://github.com/pdepend/pdepend.git",
4574
+ "reference": "da3166a06b4a89915920a42444f707122a1584c9"
4575
  },
4576
  "dist": {
4577
  "type": "zip",
4578
+ "url": "https://api.github.com/repos/pdepend/pdepend/zipball/da3166a06b4a89915920a42444f707122a1584c9",
4579
+ "reference": "da3166a06b4a89915920a42444f707122a1584c9",
4580
  "shasum": ""
4581
  },
4582
  "require": {
4583
  "php": ">=5.3.7",
4584
+ "symfony/config": "^2.3.0|^3|^4|^5|^6.0",
4585
+ "symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0",
4586
+ "symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0"
4587
  },
4588
  "require-dev": {
4589
  "easy-doc/easy-doc": "0.0.0|^1.2.3",
4612
  "description": "Official version of pdepend to be handled with Composer",
4613
  "support": {
4614
  "issues": "https://github.com/pdepend/pdepend/issues",
4615
+ "source": "https://github.com/pdepend/pdepend/tree/2.10.3"
4616
  },
4617
  "funding": [
4618
  {
4620
  "type": "tidelift"
4621
  }
4622
  ],
4623
+ "time": "2022-02-23T07:53:09+00:00"
4624
  },
4625
  {
4626
  "name": "phar-io/manifest",
4786
  },
4787
  {
4788
  "name": "php-webdriver/webdriver",
4789
+ "version": "1.12.1",
4790
  "source": {
4791
  "type": "git",
4792
  "url": "https://github.com/php-webdriver/php-webdriver.git",
4793
+ "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a"
4794
  },
4795
  "dist": {
4796
  "type": "zip",
4797
+ "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/b27ddf458d273c7d4602106fcaf978aa0b7fe15a",
4798
+ "reference": "b27ddf458d273c7d4602106fcaf978aa0b7fe15a",
4799
  "shasum": ""
4800
  },
4801
  "require": {
4823
  },
4824
  "type": "library",
4825
  "autoload": {
 
 
 
4826
  "files": [
4827
  "lib/Exception/TimeoutException.php"
4828
+ ],
4829
+ "psr-4": {
4830
+ "Facebook\\WebDriver\\": "lib/"
4831
+ }
4832
  },
4833
  "notification-url": "https://packagist.org/downloads/",
4834
  "license": [
4845
  ],
4846
  "support": {
4847
  "issues": "https://github.com/php-webdriver/php-webdriver/issues",
4848
+ "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.1"
4849
  },
4850
+ "time": "2022-05-03T12:16:34+00:00"
4851
  },
4852
  {
4853
  "name": "phpcompatibility/php-compatibility",
5023
  },
5024
  {
5025
  "name": "phpdocumentor/type-resolver",
5026
+ "version": "1.6.1",
5027
  "source": {
5028
  "type": "git",
5029
  "url": "https://github.com/phpDocumentor/TypeResolver.git",
5030
+ "reference": "77a32518733312af16a44300404e945338981de3"
5031
  },
5032
  "dist": {
5033
  "type": "zip",
5034
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
5035
+ "reference": "77a32518733312af16a44300404e945338981de3",
5036
  "shasum": ""
5037
  },
5038
  "require": {
5067
  "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
5068
  "support": {
5069
  "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
5070
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
5071
  },
5072
+ "time": "2022-03-15T21:29:03+00:00"
5073
  },
5074
  {
5075
  "name": "phpmd/phpmd",
5076
+ "version": "2.12.0",
5077
  "source": {
5078
  "type": "git",
5079
  "url": "https://github.com/phpmd/phpmd.git",
5080
+ "reference": "c0b678ba71902f539c27c14332aa0ddcf14388ec"
5081
  },
5082
  "dist": {
5083
  "type": "zip",
5084
+ "url": "https://api.github.com/repos/phpmd/phpmd/zipball/c0b678ba71902f539c27c14332aa0ddcf14388ec",
5085
+ "reference": "c0b678ba71902f539c27c14332aa0ddcf14388ec",
5086
  "shasum": ""
5087
  },
5088
  "require": {
5089
+ "composer/xdebug-handler": "^1.0 || ^2.0 || ^3.0",
5090
  "ext-xml": "*",
5091
+ "pdepend/pdepend": "^2.10.3",
5092
  "php": ">=5.3.9"
5093
  },
5094
  "require-dev": {
5144
  "support": {
5145
  "irc": "irc://irc.freenode.org/phpmd",
5146
  "issues": "https://github.com/phpmd/phpmd/issues",
5147
+ "source": "https://github.com/phpmd/phpmd/tree/2.12.0"
5148
  },
5149
  "funding": [
5150
  {
5152
  "type": "tidelift"
5153
  }
5154
  ],
5155
+ "time": "2022-03-24T13:33:01+00:00"
5156
  },
5157
  {
5158
  "name": "phpspec/prophecy",
5223
  },
5224
  {
5225
  "name": "phpstan/phpstan",
5226
+ "version": "1.7.11",
5227
  "source": {
5228
  "type": "git",
5229
  "url": "https://github.com/phpstan/phpstan.git",
5230
+ "reference": "62fcadcde81b4037e42ad2489119d31c46f00191"
5231
  },
5232
  "dist": {
5233
  "type": "zip",
5234
+ "url": "https://api.github.com/repos/phpstan/phpstan/zipball/62fcadcde81b4037e42ad2489119d31c46f00191",
5235
+ "reference": "62fcadcde81b4037e42ad2489119d31c46f00191",
5236
  "shasum": ""
5237
  },
5238
  "require": {
5239
+ "php": "^7.2|^8.0"
5240
  },
5241
  "conflict": {
5242
  "phpstan/phpstan-shim": "*"
5246
  "phpstan.phar"
5247
  ],
5248
  "type": "library",
 
 
 
 
 
5249
  "autoload": {
5250
  "files": [
5251
  "bootstrap.php"
5258
  "description": "PHPStan - PHP Static Analysis Tool",
5259
  "support": {
5260
  "issues": "https://github.com/phpstan/phpstan/issues",
5261
+ "source": "https://github.com/phpstan/phpstan/tree/1.7.11"
5262
  },
5263
  "funding": [
5264
  {
5278
  "type": "tidelift"
5279
  }
5280
  ],
5281
+ "time": "2022-06-07T08:47:03+00:00"
5282
  },
5283
  {
5284
  "name": "phpunit/php-code-coverage",
5716
  }
5717
  },
5718
  "autoload": {
 
 
 
5719
  "files": [
5720
  "src/Framework/Assert/Functions.php"
5721
+ ],
5722
+ "classmap": [
5723
+ "src/"
5724
  ]
5725
  },
5726
  "notification-url": "https://packagist.org/downloads/",
6167
  },
6168
  {
6169
  "name": "publishpress/publishpress-plugin-builder",
6170
+ "version": "v1.4.0",
6171
  "source": {
6172
  "type": "git",
6173
+ "url": "https://github.com/publishpress/PublishPress-Plugin-Builder.git",
6174
+ "reference": "75708e8b1b093988dfd160f50b95803bbff725f1"
6175
+ },
6176
+ "dist": {
6177
+ "type": "zip",
6178
+ "url": "https://api.github.com/repos/publishpress/PublishPress-Plugin-Builder/zipball/75708e8b1b093988dfd160f50b95803bbff725f1",
6179
+ "reference": "75708e8b1b093988dfd160f50b95803bbff725f1",
6180
+ "shasum": ""
6181
  },
6182
  "require": {
6183
  "consolidation/robo": "^3.0",
6184
+ "nelexa/zip": "^3.3|^4.0",
6185
+ "php": "^7.3|^8.0",
6186
  "symfony/yaml": "^5"
6187
  },
6188
  "require-dev": {
6201
  "PublishPressBuilder\\": "src/"
6202
  }
6203
  },
6204
+ "notification-url": "https://packagist.org/downloads/",
6205
  "license": [
6206
  "GPL-2.0-or-later"
6207
  ],
6212
  }
6213
  ],
6214
  "description": "Robo tasks for building WordPress plugins",
6215
+ "support": {
6216
+ "issues": "https://github.com/publishpress/PublishPress-Plugin-Builder/issues",
6217
+ "source": "https://github.com/publishpress/PublishPress-Plugin-Builder/tree/v1.4.0"
6218
+ },
6219
+ "time": "2022-04-14T15:14:49+00:00"
6220
  },
6221
  {
6222
  "name": "ralouphie/getallheaders",
6575
  },
6576
  {
6577
  "name": "sebastian/environment",
6578
+ "version": "5.1.4",
6579
  "source": {
6580
  "type": "git",
6581
  "url": "https://github.com/sebastianbergmann/environment.git",
6582
+ "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7"
6583
  },
6584
  "dist": {
6585
  "type": "zip",
6586
+ "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/1b5dff7bb151a4db11d49d90e5408e4e938270f7",
6587
+ "reference": "1b5dff7bb151a4db11d49d90e5408e4e938270f7",
6588
  "shasum": ""
6589
  },
6590
  "require": {
6626
  ],
6627
  "support": {
6628
  "issues": "https://github.com/sebastianbergmann/environment/issues",
6629
+ "source": "https://github.com/sebastianbergmann/environment/tree/5.1.4"
6630
  },
6631
  "funding": [
6632
  {
6634
  "type": "github"
6635
  }
6636
  ],
6637
+ "time": "2022-04-03T09:37:03+00:00"
6638
  },
6639
  {
6640
  "name": "sebastian/exporter",
7216
  ],
7217
  "time": "2020-09-28T06:39:44+00:00"
7218
  },
7219
+ {
7220
+ "name": "sirbrillig/phpcs-variable-analysis",
7221
+ "version": "v2.11.3",
7222
+ "source": {
7223
+ "type": "git",
7224
+ "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git",
7225
+ "reference": "c921498b474212fe4552928bbeb68d70250ce5e8"
7226
+ },
7227
+ "dist": {
7228
+ "type": "zip",
7229
+ "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/c921498b474212fe4552928bbeb68d70250ce5e8",
7230
+ "reference": "c921498b474212fe4552928bbeb68d70250ce5e8",
7231
+ "shasum": ""
7232
+ },
7233
+ "require": {
7234
+ "php": ">=5.4.0",
7235
+ "squizlabs/php_codesniffer": "^3.5"
7236
+ },
7237
+ "require-dev": {
7238
+ "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
7239
+ "limedeck/phpunit-detailed-printer": "^3.1 || ^4.0 || ^5.0",
7240
+ "phpstan/phpstan": "^0.11.8",
7241
+ "phpunit/phpunit": "^5.0 || ^6.5 || ^7.0 || ^8.0",
7242
+ "sirbrillig/phpcs-import-detection": "^1.1"
7243
+ },
7244
+ "type": "phpcodesniffer-standard",
7245
+ "autoload": {
7246
+ "psr-4": {
7247
+ "VariableAnalysis\\": "VariableAnalysis/"
7248
+ }
7249
+ },
7250
+ "notification-url": "https://packagist.org/downloads/",
7251
+ "license": [
7252
+ "BSD-2-Clause"
7253
+ ],
7254
+ "authors": [
7255
+ {
7256
+ "name": "Sam Graham",
7257
+ "email": "php-codesniffer-variableanalysis@illusori.co.uk"
7258
+ },
7259
+ {
7260
+ "name": "Payton Swick",
7261
+ "email": "payton@foolord.com"
7262
+ }
7263
+ ],
7264
+ "description": "A PHPCS sniff to detect problems with variables.",
7265
+ "support": {
7266
+ "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues",
7267
+ "source": "https://github.com/sirbrillig/phpcs-variable-analysis",
7268
+ "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki"
7269
+ },
7270
+ "time": "2022-02-21T17:01:13+00:00"
7271
+ },
7272
  {
7273
  "name": "softcreatr/jsonpath",
7274
  "version": "0.7.5",
7392
  },
7393
  {
7394
  "name": "symfony/browser-kit",
7395
+ "version": "v5.4.3",
7396
  "source": {
7397
  "type": "git",
7398
  "url": "https://github.com/symfony/browser-kit.git",
7399
+ "reference": "18e73179c6a33d520de1b644941eba108dd811ad"
7400
  },
7401
  "dist": {
7402
  "type": "zip",
7403
+ "url": "https://api.github.com/repos/symfony/browser-kit/zipball/18e73179c6a33d520de1b644941eba108dd811ad",
7404
+ "reference": "18e73179c6a33d520de1b644941eba108dd811ad",
7405
  "shasum": ""
7406
  },
7407
  "require": {
7444
  "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
7445
  "homepage": "https://symfony.com",
7446
  "support": {
7447
+ "source": "https://github.com/symfony/browser-kit/tree/v5.4.3"
7448
  },
7449
  "funding": [
7450
  {
7460
  "type": "tidelift"
7461
  }
7462
  ],
7463
+ "time": "2022-01-02T09:53:40+00:00"
7464
  },
7465
  {
7466
  "name": "symfony/config",
7467
+ "version": "v5.4.9",
7468
  "source": {
7469
  "type": "git",
7470
  "url": "https://github.com/symfony/config.git",
7471
+ "reference": "8f551fe22672ac7ab2c95fe46d899f960ed4d979"
7472
  },
7473
  "dist": {
7474
  "type": "zip",
7475
+ "url": "https://api.github.com/repos/symfony/config/zipball/8f551fe22672ac7ab2c95fe46d899f960ed4d979",
7476
+ "reference": "8f551fe22672ac7ab2c95fe46d899f960ed4d979",
7477
  "shasum": ""
7478
  },
7479
  "require": {
7523
  "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
7524
  "homepage": "https://symfony.com",
7525
  "support": {
7526
+ "source": "https://github.com/symfony/config/tree/v5.4.9"
7527
  },
7528
  "funding": [
7529
  {
7539
  "type": "tidelift"
7540
  }
7541
  ],
7542
+ "time": "2022-05-17T10:39:36+00:00"
7543
  },
7544
  {
7545
  "name": "symfony/console",
7546
+ "version": "v5.4.9",
7547
  "source": {
7548
  "type": "git",
7549
  "url": "https://github.com/symfony/console.git",
7550
+ "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb"
7551
  },
7552
  "dist": {
7553
  "type": "zip",
7554
+ "url": "https://api.github.com/repos/symfony/console/zipball/829d5d1bf60b2efeb0887b7436873becc71a45eb",
7555
+ "reference": "829d5d1bf60b2efeb0887b7436873becc71a45eb",
7556
  "shasum": ""
7557
  },
7558
  "require": {
7622
  "terminal"
7623
  ],
7624
  "support": {
7625
+ "source": "https://github.com/symfony/console/tree/v5.4.9"
7626
  },
7627
  "funding": [
7628
  {
7638
  "type": "tidelift"
7639
  }
7640
  ],
7641
+ "time": "2022-05-18T06:17:34+00:00"
7642
  },
7643
  {
7644
  "name": "symfony/css-selector",
7645
+ "version": "v5.4.3",
7646
  "source": {
7647
  "type": "git",
7648
  "url": "https://github.com/symfony/css-selector.git",
7649
+ "reference": "b0a190285cd95cb019237851205b8140ef6e368e"
7650
  },
7651
  "dist": {
7652
  "type": "zip",
7653
+ "url": "https://api.github.com/repos/symfony/css-selector/zipball/b0a190285cd95cb019237851205b8140ef6e368e",
7654
+ "reference": "b0a190285cd95cb019237851205b8140ef6e368e",
7655
  "shasum": ""
7656
  },
7657
  "require": {
7688
  "description": "Converts CSS selectors to XPath expressions",
7689
  "homepage": "https://symfony.com",
7690
  "support": {
7691
+ "source": "https://github.com/symfony/css-selector/tree/v5.4.3"
7692
  },
7693
  "funding": [
7694
  {
7704
  "type": "tidelift"
7705
  }
7706
  ],
7707
+ "time": "2022-01-02T09:53:40+00:00"
7708
  },
7709
  {
7710
  "name": "symfony/dependency-injection",
7711
+ "version": "v5.4.9",
7712
  "source": {
7713
  "type": "git",
7714
  "url": "https://github.com/symfony/dependency-injection.git",
7715
+ "reference": "beecae161577305926ec078c4ed973f2b98880b3"
7716
  },
7717
  "dist": {
7718
  "type": "zip",
7719
+ "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/beecae161577305926ec078c4ed973f2b98880b3",
7720
+ "reference": "beecae161577305926ec078c4ed973f2b98880b3",
7721
  "shasum": ""
7722
  },
7723
  "require": {
7733
  "symfony/config": "<5.3",
7734
  "symfony/finder": "<4.4",
7735
  "symfony/proxy-manager-bridge": "<4.4",
7736
+ "symfony/yaml": "<4.4.26"
7737
  },
7738
  "provide": {
7739
  "psr/container-implementation": "1.0",
7742
  "require-dev": {
7743
  "symfony/config": "^5.3|^6.0",
7744
  "symfony/expression-language": "^4.4|^5.0|^6.0",
7745
+ "symfony/yaml": "^4.4.26|^5.0|^6.0"
7746
  },
7747
  "suggest": {
7748
  "symfony/config": "",
7777
  "description": "Allows you to standardize and centralize the way objects are constructed in your application",
7778
  "homepage": "https://symfony.com",
7779
  "support": {
7780
+ "source": "https://github.com/symfony/dependency-injection/tree/v5.4.9"
7781
  },
7782
  "funding": [
7783
  {
7793
  "type": "tidelift"
7794
  }
7795
  ],
7796
+ "time": "2022-05-27T06:40:03+00:00"
7797
  },
7798
  {
7799
  "name": "symfony/deprecation-contracts",
7800
+ "version": "v2.5.1",
7801
  "source": {
7802
  "type": "git",
7803
  "url": "https://github.com/symfony/deprecation-contracts.git",
7804
+ "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
7805
  },
7806
  "dist": {
7807
  "type": "zip",
7808
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
7809
+ "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
7810
  "shasum": ""
7811
  },
7812
  "require": {
7844
  "description": "A generic function and convention to trigger deprecation notices",
7845
  "homepage": "https://symfony.com",
7846
  "support": {
7847
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.1"
7848
  },
7849
  "funding": [
7850
  {
7860
  "type": "tidelift"
7861
  }
7862
  ],
7863
+ "time": "2022-01-02T09:53:40+00:00"
7864
  },
7865
  {
7866
  "name": "symfony/dom-crawler",
7867
+ "version": "v5.4.9",
7868
  "source": {
7869
  "type": "git",
7870
  "url": "https://github.com/symfony/dom-crawler.git",
7871
+ "reference": "a213cbc80382320b0efdccdcdce232f191fafe3a"
7872
  },
7873
  "dist": {
7874
  "type": "zip",
7875
+ "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/a213cbc80382320b0efdccdcdce232f191fafe3a",
7876
+ "reference": "a213cbc80382320b0efdccdcdce232f191fafe3a",
7877
  "shasum": ""
7878
  },
7879
  "require": {
7919
  "description": "Eases DOM navigation for HTML and XML documents",
7920
  "homepage": "https://symfony.com",
7921
  "support": {
7922
+ "source": "https://github.com/symfony/dom-crawler/tree/v5.4.9"
7923
  },
7924
  "funding": [
7925
  {
7935
  "type": "tidelift"
7936
  }
7937
  ],
7938
+ "time": "2022-05-04T14:46:32+00:00"
7939
  },
7940
  {
7941
  "name": "symfony/event-dispatcher",
7942
+ "version": "v5.4.9",
7943
  "source": {
7944
  "type": "git",
7945
  "url": "https://github.com/symfony/event-dispatcher.git",
7946
+ "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc"
7947
  },
7948
  "dist": {
7949
  "type": "zip",
7950
+ "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
7951
+ "reference": "8e6ce1cc0279e3ff3c8ff0f43813bc88d21ca1bc",
7952
  "shasum": ""
7953
  },
7954
  "require": {
8004
  "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
8005
  "homepage": "https://symfony.com",
8006
  "support": {
8007
+ "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.9"
8008
  },
8009
  "funding": [
8010
  {
8020
  "type": "tidelift"
8021
  }
8022
  ],
8023
+ "time": "2022-05-05T16:45:39+00:00"
8024
  },
8025
  {
8026
  "name": "symfony/event-dispatcher-contracts",
8027
+ "version": "v2.5.1",
8028
  "source": {
8029
  "type": "git",
8030
  "url": "https://github.com/symfony/event-dispatcher-contracts.git",
8031
+ "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
8032
  },
8033
  "dist": {
8034
  "type": "zip",
8035
+ "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
8036
+ "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
8037
  "shasum": ""
8038
  },
8039
  "require": {
8083
  "standards"
8084
  ],
8085
  "support": {
8086
+ "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.1"
8087
  },
8088
  "funding": [
8089
  {
8099
  "type": "tidelift"
8100
  }
8101
  ],
8102
+ "time": "2022-01-02T09:53:40+00:00"
8103
  },
8104
  {
8105
  "name": "symfony/filesystem",
8106
+ "version": "v5.4.9",
8107
  "source": {
8108
  "type": "git",
8109
  "url": "https://github.com/symfony/filesystem.git",
8110
+ "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba"
8111
  },
8112
  "dist": {
8113
  "type": "zip",
8114
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/36a017fa4cce1eff1b8e8129ff53513abcef05ba",
8115
+ "reference": "36a017fa4cce1eff1b8e8129ff53513abcef05ba",
8116
  "shasum": ""
8117
  },
8118
  "require": {
8147
  "description": "Provides basic utilities for the filesystem",
8148
  "homepage": "https://symfony.com",
8149
  "support": {
8150
+ "source": "https://github.com/symfony/filesystem/tree/v5.4.9"
8151
  },
8152
  "funding": [
8153
  {
8163
  "type": "tidelift"
8164
  }
8165
  ],
8166
+ "time": "2022-05-20T13:55:35+00:00"
8167
  },
8168
  {
8169
  "name": "symfony/finder",
8170
+ "version": "v5.4.8",
8171
  "source": {
8172
  "type": "git",
8173
  "url": "https://github.com/symfony/finder.git",
8174
+ "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9"
8175
  },
8176
  "dist": {
8177
  "type": "zip",
8178
+ "url": "https://api.github.com/repos/symfony/finder/zipball/9b630f3427f3ebe7cd346c277a1408b00249dad9",
8179
+ "reference": "9b630f3427f3ebe7cd346c277a1408b00249dad9",
8180
  "shasum": ""
8181
  },
8182
  "require": {
8210
  "description": "Finds files and directories via an intuitive fluent interface",
8211
  "homepage": "https://symfony.com",
8212
  "support": {
8213
+ "source": "https://github.com/symfony/finder/tree/v5.4.8"
8214
  },
8215
  "funding": [
8216
  {
8226
  "type": "tidelift"
8227
  }
8228
  ],
8229
+ "time": "2022-04-15T08:07:45+00:00"
8230
  },
8231
  {
8232
  "name": "symfony/options-resolver",
8233
+ "version": "v5.4.3",
8234
  "source": {
8235
  "type": "git",
8236
  "url": "https://github.com/symfony/options-resolver.git",
8237
+ "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8"
8238
  },
8239
  "dist": {
8240
  "type": "zip",
8241
+ "url": "https://api.github.com/repos/symfony/options-resolver/zipball/cc1147cb11af1b43f503ac18f31aa3bec213aba8",
8242
+ "reference": "cc1147cb11af1b43f503ac18f31aa3bec213aba8",
8243
  "shasum": ""
8244
  },
8245
  "require": {
8279
  "options"
8280
  ],
8281
  "support": {
8282
+ "source": "https://github.com/symfony/options-resolver/tree/v5.4.3"
8283
  },
8284
  "funding": [
8285
  {
8295
  "type": "tidelift"
8296
  }
8297
  ],
8298
+ "time": "2022-01-02T09:53:40+00:00"
8299
  },
8300
  {
8301
  "name": "symfony/polyfill-ctype",
8302
+ "version": "v1.26.0",
8303
  "source": {
8304
  "type": "git",
8305
  "url": "https://github.com/symfony/polyfill-ctype.git",
8306
+ "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4"
8307
  },
8308
  "dist": {
8309
  "type": "zip",
8310
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
8311
+ "reference": "6fd1b9a79f6e3cf65f9e679b23af304cd9e010d4",
8312
  "shasum": ""
8313
  },
8314
  "require": {
8323
  "type": "library",
8324
  "extra": {
8325
  "branch-alias": {
8326
+ "dev-main": "1.26-dev"
8327
  },
8328
  "thanks": {
8329
  "name": "symfony/polyfill",
8331
  }
8332
  },
8333
  "autoload": {
 
 
 
8334
  "files": [
8335
  "bootstrap.php"
8336
+ ],
8337
+ "psr-4": {
8338
+ "Symfony\\Polyfill\\Ctype\\": ""
8339
+ }
8340
  },
8341
  "notification-url": "https://packagist.org/downloads/",
8342
  "license": [
8361
  "portable"
8362
  ],
8363
  "support": {
8364
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0"
8365
  },
8366
  "funding": [
8367
  {
8377
  "type": "tidelift"
8378
  }
8379
  ],
8380
+ "time": "2022-05-24T11:49:31+00:00"
8381
  },
8382
  {
8383
  "name": "symfony/polyfill-intl-grapheme",
8384
+ "version": "v1.26.0",
8385
  "source": {
8386
  "type": "git",
8387
  "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
8388
+ "reference": "433d05519ce6990bf3530fba6957499d327395c2"
8389
  },
8390
  "dist": {
8391
  "type": "zip",
8392
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/433d05519ce6990bf3530fba6957499d327395c2",
8393
+ "reference": "433d05519ce6990bf3530fba6957499d327395c2",
8394
  "shasum": ""
8395
  },
8396
  "require": {
8402
  "type": "library",
8403
  "extra": {
8404
  "branch-alias": {
8405
+ "dev-main": "1.26-dev"
8406
  },
8407
  "thanks": {
8408
  "name": "symfony/polyfill",
8410
  }
8411
  },
8412
  "autoload": {
 
 
 
8413
  "files": [
8414
  "bootstrap.php"
8415
+ ],
8416
+ "psr-4": {
8417
+ "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
8418
+ }
8419
  },
8420
  "notification-url": "https://packagist.org/downloads/",
8421
  "license": [
8442
  "shim"
8443
  ],
8444
  "support": {
8445
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.26.0"
8446
  },
8447
  "funding": [
8448
  {
8458
  "type": "tidelift"
8459
  }
8460
  ],
8461
+ "time": "2022-05-24T11:49:31+00:00"
8462
  },
8463
  {
8464
  "name": "symfony/polyfill-intl-normalizer",
8465
+ "version": "v1.26.0",
8466
  "source": {
8467
  "type": "git",
8468
  "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
8469
+ "reference": "219aa369ceff116e673852dce47c3a41794c14bd"
8470
  },
8471
  "dist": {
8472
  "type": "zip",
8473
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/219aa369ceff116e673852dce47c3a41794c14bd",
8474
+ "reference": "219aa369ceff116e673852dce47c3a41794c14bd",
8475
  "shasum": ""
8476
  },
8477
  "require": {
8483
  "type": "library",
8484
  "extra": {
8485
  "branch-alias": {
8486
+ "dev-main": "1.26-dev"
8487
  },
8488
  "thanks": {
8489
  "name": "symfony/polyfill",
8491
  }
8492
  },
8493
  "autoload": {
 
 
 
8494
  "files": [
8495
  "bootstrap.php"
8496
  ],
8497
+ "psr-4": {
8498
+ "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
8499
+ },
8500
  "classmap": [
8501
  "Resources/stubs"
8502
  ]
8526
  "shim"
8527
  ],
8528
  "support": {
8529
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.26.0"
8530
  },
8531
  "funding": [
8532
  {
8542
  "type": "tidelift"
8543
  }
8544
  ],
8545
+ "time": "2022-05-24T11:49:31+00:00"
8546
  },
8547
  {
8548
  "name": "symfony/polyfill-mbstring",
8549
+ "version": "v1.26.0",
8550
  "source": {
8551
  "type": "git",
8552
  "url": "https://github.com/symfony/polyfill-mbstring.git",
8553
+ "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
8554
  },
8555
  "dist": {
8556
  "type": "zip",
8557
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
8558
+ "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
8559
  "shasum": ""
8560
  },
8561
  "require": {
8570
  "type": "library",
8571
  "extra": {
8572
  "branch-alias": {
8573
+ "dev-main": "1.26-dev"
8574
  },
8575
  "thanks": {
8576
  "name": "symfony/polyfill",
8578
  }
8579
  },
8580
  "autoload": {
 
 
 
8581
  "files": [
8582
  "bootstrap.php"
8583
+ ],
8584
+ "psr-4": {
8585
+ "Symfony\\Polyfill\\Mbstring\\": ""
8586
+ }
8587
  },
8588
  "notification-url": "https://packagist.org/downloads/",
8589
  "license": [
8609
  "shim"
8610
  ],
8611
  "support": {
8612
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
8613
  },
8614
  "funding": [
8615
  {
8625
  "type": "tidelift"
8626
  }
8627
  ],
8628
+ "time": "2022-05-24T11:49:31+00:00"
8629
  },
8630
  {
8631
  "name": "symfony/polyfill-php73",
8632
+ "version": "v1.26.0",
8633
  "source": {
8634
  "type": "git",
8635
  "url": "https://github.com/symfony/polyfill-php73.git",
8636
+ "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85"
8637
  },
8638
  "dist": {
8639
  "type": "zip",
8640
+ "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/e440d35fa0286f77fb45b79a03fedbeda9307e85",
8641
+ "reference": "e440d35fa0286f77fb45b79a03fedbeda9307e85",
8642
  "shasum": ""
8643
  },
8644
  "require": {
8647
  "type": "library",
8648
  "extra": {
8649
  "branch-alias": {
8650
+ "dev-main": "1.26-dev"
8651
  },
8652
  "thanks": {
8653
  "name": "symfony/polyfill",
8655
  }
8656
  },
8657
  "autoload": {
 
 
 
8658
  "files": [
8659
  "bootstrap.php"
8660
  ],
8661
+ "psr-4": {
8662
+ "Symfony\\Polyfill\\Php73\\": ""
8663
+ },
8664
  "classmap": [
8665
  "Resources/stubs"
8666
  ]
8688
  "shim"
8689
  ],
8690
  "support": {
8691
+ "source": "https://github.com/symfony/polyfill-php73/tree/v1.26.0"
8692
  },
8693
  "funding": [
8694
  {
8704
  "type": "tidelift"
8705
  }
8706
  ],
8707
+ "time": "2022-05-24T11:49:31+00:00"
8708
  },
8709
  {
8710
  "name": "symfony/polyfill-php80",
8711
+ "version": "v1.26.0",
8712
  "source": {
8713
  "type": "git",
8714
  "url": "https://github.com/symfony/polyfill-php80.git",
8715
+ "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
8716
  },
8717
  "dist": {
8718
  "type": "zip",
8719
+ "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
8720
+ "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
8721
  "shasum": ""
8722
  },
8723
  "require": {
8726
  "type": "library",
8727
  "extra": {
8728
  "branch-alias": {
8729
+ "dev-main": "1.26-dev"
8730
  },
8731
  "thanks": {
8732
  "name": "symfony/polyfill",
8734
  }
8735
  },
8736
  "autoload": {
 
 
 
8737
  "files": [
8738
  "bootstrap.php"
8739
  ],
8740
+ "psr-4": {
8741
+ "Symfony\\Polyfill\\Php80\\": ""
8742
+ },
8743
  "classmap": [
8744
  "Resources/stubs"
8745
  ]
8771
  "shim"
8772
  ],
8773
  "support": {
8774
+ "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
8775
  },
8776
  "funding": [
8777
  {
8787
  "type": "tidelift"
8788
  }
8789
  ],
8790
+ "time": "2022-05-10T07:21:04+00:00"
8791
  },
8792
  {
8793
  "name": "symfony/polyfill-php81",
8794
+ "version": "v1.26.0",
8795
  "source": {
8796
  "type": "git",
8797
  "url": "https://github.com/symfony/polyfill-php81.git",
8798
+ "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1"
8799
  },
8800
  "dist": {
8801
  "type": "zip",
8802
+ "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/13f6d1271c663dc5ae9fb843a8f16521db7687a1",
8803
+ "reference": "13f6d1271c663dc5ae9fb843a8f16521db7687a1",
8804
  "shasum": ""
8805
  },
8806
  "require": {
8809
  "type": "library",
8810
  "extra": {
8811
  "branch-alias": {
8812
+ "dev-main": "1.26-dev"
8813
  },
8814
  "thanks": {
8815
  "name": "symfony/polyfill",
8817
  }
8818
  },
8819
  "autoload": {
 
 
 
8820
  "files": [
8821
  "bootstrap.php"
8822
  ],
8823
+ "psr-4": {
8824
+ "Symfony\\Polyfill\\Php81\\": ""
8825
+ },
8826
  "classmap": [
8827
  "Resources/stubs"
8828
  ]
8850
  "shim"
8851
  ],
8852
  "support": {
8853
+ "source": "https://github.com/symfony/polyfill-php81/tree/v1.26.0"
8854
  },
8855
  "funding": [
8856
  {
8866
  "type": "tidelift"
8867
  }
8868
  ],
8869
+ "time": "2022-05-24T11:49:31+00:00"
8870
  },
8871
  {
8872
  "name": "symfony/process",
8873
+ "version": "v5.4.8",
8874
  "source": {
8875
  "type": "git",
8876
  "url": "https://github.com/symfony/process.git",
8877
+ "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3"
8878
  },
8879
  "dist": {
8880
  "type": "zip",
8881
+ "url": "https://api.github.com/repos/symfony/process/zipball/597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
8882
+ "reference": "597f3fff8e3e91836bb0bd38f5718b56ddbde2f3",
8883
  "shasum": ""
8884
  },
8885
  "require": {
8912
  "description": "Executes commands in sub-processes",
8913
  "homepage": "https://symfony.com",
8914
  "support": {
8915
+ "source": "https://github.com/symfony/process/tree/v5.4.8"
8916
  },
8917
  "funding": [
8918
  {
8928
  "type": "tidelift"
8929
  }
8930
  ],
8931
+ "time": "2022-04-08T05:07:18+00:00"
8932
  },
8933
  {
8934
  "name": "symfony/service-contracts",
8935
+ "version": "v2.5.1",
8936
  "source": {
8937
  "type": "git",
8938
  "url": "https://github.com/symfony/service-contracts.git",
8939
+ "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c"
8940
  },
8941
  "dist": {
8942
  "type": "zip",
8943
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
8944
+ "reference": "24d9dc654b83e91aa59f9d167b131bc3b5bea24c",
8945
  "shasum": ""
8946
  },
8947
  "require": {
8948
  "php": ">=7.2.5",
8949
  "psr/container": "^1.1",
8950
+ "symfony/deprecation-contracts": "^2.1|^3"
8951
  },
8952
  "conflict": {
8953
  "ext-psr": "<1.1|>=2"
8995
  "standards"
8996
  ],
8997
  "support": {
8998
+ "source": "https://github.com/symfony/service-contracts/tree/v2.5.1"
8999
  },
9000
  "funding": [
9001
  {
9011
  "type": "tidelift"
9012
  }
9013
  ],
9014
+ "time": "2022-03-13T20:07:29+00:00"
9015
  },
9016
  {
9017
  "name": "symfony/stopwatch",
9018
+ "version": "v5.4.5",
9019
  "source": {
9020
  "type": "git",
9021
  "url": "https://github.com/symfony/stopwatch.git",
9022
+ "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30"
9023
  },
9024
  "dist": {
9025
  "type": "zip",
9026
+ "url": "https://api.github.com/repos/symfony/stopwatch/zipball/4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
9027
+ "reference": "4d04b5c24f3c9a1a168a131f6cbe297155bc0d30",
9028
  "shasum": ""
9029
  },
9030
  "require": {
9057
  "description": "Provides a way to profile code",
9058
  "homepage": "https://symfony.com",
9059
  "support": {
9060
+ "source": "https://github.com/symfony/stopwatch/tree/v5.4.5"
9061
  },
9062
  "funding": [
9063
  {
9073
  "type": "tidelift"
9074
  }
9075
  ],
9076
+ "time": "2022-02-18T16:06:09+00:00"
9077
  },
9078
  {
9079
  "name": "symfony/string",
9080
+ "version": "v5.4.9",
9081
  "source": {
9082
  "type": "git",
9083
  "url": "https://github.com/symfony/string.git",
9084
+ "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99"
9085
  },
9086
  "dist": {
9087
  "type": "zip",
9088
+ "url": "https://api.github.com/repos/symfony/string/zipball/985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
9089
+ "reference": "985e6a9703ef5ce32ba617c9c7d97873bb7b2a99",
9090
  "shasum": ""
9091
  },
9092
  "require": {
9108
  },
9109
  "type": "library",
9110
  "autoload": {
 
 
 
9111
  "files": [
9112
  "Resources/functions.php"
9113
  ],
9114
+ "psr-4": {
9115
+ "Symfony\\Component\\String\\": ""
9116
+ },
9117
  "exclude-from-classmap": [
9118
  "/Tests/"
9119
  ]
9143
  "utf8"
9144
  ],
9145
  "support": {
9146
+ "source": "https://github.com/symfony/string/tree/v5.4.9"
9147
  },
9148
  "funding": [
9149
  {
9159
  "type": "tidelift"
9160
  }
9161
  ],
9162
+ "time": "2022-04-19T10:40:37+00:00"
9163
  },
9164
  {
9165
  "name": "symfony/translation",
9166
+ "version": "v5.4.9",
9167
  "source": {
9168
  "type": "git",
9169
  "url": "https://github.com/symfony/translation.git",
9170
+ "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca"
9171
  },
9172
  "dist": {
9173
  "type": "zip",
9174
+ "url": "https://api.github.com/repos/symfony/translation/zipball/1639abc1177d26bcd4320e535e664cef067ab0ca",
9175
+ "reference": "1639abc1177d26bcd4320e535e664cef067ab0ca",
9176
  "shasum": ""
9177
  },
9178
  "require": {
9240
  "description": "Provides tools to internationalize your application",
9241
  "homepage": "https://symfony.com",
9242
  "support": {
9243
+ "source": "https://github.com/symfony/translation/tree/v5.4.9"
9244
  },
9245
  "funding": [
9246
  {
9256
  "type": "tidelift"
9257
  }
9258
  ],
9259
+ "time": "2022-05-06T12:33:37+00:00"
9260
  },
9261
  {
9262
  "name": "symfony/translation-contracts",
9263
+ "version": "v2.5.1",
9264
  "source": {
9265
  "type": "git",
9266
  "url": "https://github.com/symfony/translation-contracts.git",
9267
+ "reference": "1211df0afa701e45a04253110e959d4af4ef0f07"
9268
  },
9269
  "dist": {
9270
  "type": "zip",
9271
+ "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/1211df0afa701e45a04253110e959d4af4ef0f07",
9272
+ "reference": "1211df0afa701e45a04253110e959d4af4ef0f07",
9273
  "shasum": ""
9274
  },
9275
  "require": {
9318
  "standards"
9319
  ],
9320
  "support": {
9321
+ "source": "https://github.com/symfony/translation-contracts/tree/v2.5.1"
9322
  },
9323
  "funding": [
9324
  {
9334
  "type": "tidelift"
9335
  }
9336
  ],
9337
+ "time": "2022-01-02T09:53:40+00:00"
9338
  },
9339
  {
9340
  "name": "symfony/yaml",
9341
+ "version": "v5.4.3",
9342
  "source": {
9343
  "type": "git",
9344
  "url": "https://github.com/symfony/yaml.git",
9345
+ "reference": "e80f87d2c9495966768310fc531b487ce64237a2"
9346
  },
9347
  "dist": {
9348
  "type": "zip",
9349
+ "url": "https://api.github.com/repos/symfony/yaml/zipball/e80f87d2c9495966768310fc531b487ce64237a2",
9350
+ "reference": "e80f87d2c9495966768310fc531b487ce64237a2",
9351
  "shasum": ""
9352
  },
9353
  "require": {
9393
  "description": "Loads and dumps YAML files",
9394
  "homepage": "https://symfony.com",
9395
  "support": {
9396
+ "source": "https://github.com/symfony/yaml/tree/v5.4.3"
9397
  },
9398
  "funding": [
9399
  {
9409
  "type": "tidelift"
9410
  }
9411
  ],
9412
+ "time": "2022-01-26T16:32:32+00:00"
9413
  },
9414
  {
9415
  "name": "theseer/fdomdocument",
9456
  "issues": "https://github.com/theseer/fDOMDocument/issues",
9457
  "source": "https://github.com/theseer/fDOMDocument/tree/1.6.7"
9458
  },
9459
+ "abandoned": true,
9460
  "time": "2022-01-25T23:10:35+00:00"
9461
  },
9462
  {
9511
  },
9512
  {
9513
  "name": "vimeo/psalm",
9514
+ "version": "4.23.0",
9515
  "source": {
9516
  "type": "git",
9517
  "url": "https://github.com/vimeo/psalm.git",
9518
+ "reference": "f1fe6ff483bf325c803df9f510d09a03fd796f88"
9519
  },
9520
  "dist": {
9521
  "type": "zip",
9522
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/f1fe6ff483bf325c803df9f510d09a03fd796f88",
9523
+ "reference": "f1fe6ff483bf325c803df9f510d09a03fd796f88",
9524
  "shasum": ""
9525
  },
9526
  "require": {
9545
  "php": "^7.1|^8",
9546
  "sebastian/diff": "^3.0 || ^4.0",
9547
  "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0 || ^6.0",
9548
+ "symfony/polyfill-php80": "^1.25",
9549
  "webmozart/path-util": "^2.3"
9550
  },
9551
  "provide": {
9587
  }
9588
  },
9589
  "autoload": {
 
 
 
9590
  "files": [
9591
  "src/functions.php",
9592
  "src/spl_object_id.php"
9593
+ ],
9594
+ "psr-4": {
9595
+ "Psalm\\": "src/Psalm/"
9596
+ }
9597
  },
9598
  "notification-url": "https://packagist.org/downloads/",
9599
  "license": [
9612
  ],
9613
  "support": {
9614
  "issues": "https://github.com/vimeo/psalm/issues",
9615
+ "source": "https://github.com/vimeo/psalm/tree/4.23.0"
9616
  },
9617
+ "time": "2022-04-28T17:35:49+00:00"
9618
  },
9619
  {
9620
  "name": "voku/portable-ascii",
9745
  },
9746
  {
9747
  "name": "webmozart/assert",
9748
+ "version": "1.11.0",
9749
  "source": {
9750
  "type": "git",
9751
  "url": "https://github.com/webmozarts/assert.git",
9752
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
9753
  },
9754
  "dist": {
9755
  "type": "zip",
9756
+ "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
9757
+ "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
9758
  "shasum": ""
9759
  },
9760
  "require": {
9761
+ "ext-ctype": "*",
9762
+ "php": "^7.2 || ^8.0"
9763
  },
9764
  "conflict": {
9765
  "phpstan/phpstan": "<0.12.20",
9797
  ],
9798
  "support": {
9799
  "issues": "https://github.com/webmozarts/assert/issues",
9800
+ "source": "https://github.com/webmozarts/assert/tree/1.11.0"
9801
  },
9802
+ "time": "2022-06-03T18:03:27+00:00"
9803
  },
9804
  {
9805
  "name": "webmozart/path-util",
9854
  },
9855
  {
9856
  "name": "wp-cli/i18n-command",
9857
+ "version": "v2.3.0",
9858
  "source": {
9859
  "type": "git",
9860
  "url": "https://github.com/wp-cli/i18n-command.git",
9861
+ "reference": "bcb1a8159679cafdf1da884dbe5830122bae2c4d"
9862
  },
9863
  "dist": {
9864
  "type": "zip",
9865
+ "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/bcb1a8159679cafdf1da884dbe5830122bae2c4d",
9866
+ "reference": "bcb1a8159679cafdf1da884dbe5830122bae2c4d",
9867
  "shasum": ""
9868
  },
9869
  "require": {
9870
+ "eftec/bladeone": "3.52",
9871
  "gettext/gettext": "^4.8",
9872
  "mck89/peast": "^1.13.11",
9873
  "wp-cli/wp-cli": "^2.5"
9892
  ]
9893
  },
9894
  "autoload": {
 
 
 
9895
  "files": [
9896
  "i18n-command.php"
9897
+ ],
9898
+ "psr-4": {
9899
+ "WP_CLI\\I18n\\": "src/"
9900
+ }
9901
  },
9902
  "notification-url": "https://packagist.org/downloads/",
9903
  "license": [
9913
  "homepage": "https://github.com/wp-cli/i18n-command",
9914
  "support": {
9915
  "issues": "https://github.com/wp-cli/i18n-command/issues",
9916
+ "source": "https://github.com/wp-cli/i18n-command/tree/v2.3.0"
9917
  },
9918
+ "time": "2022-04-06T15:32:48+00:00"
9919
  },
9920
  {
9921
  "name": "wp-cli/mustangostang-spyc",
9944
  }
9945
  },
9946
  "autoload": {
 
 
 
9947
  "files": [
9948
  "includes/functions.php"
9949
+ ],
9950
+ "psr-4": {
9951
+ "Mustangostang\\": "src/"
9952
+ }
9953
  },
9954
  "notification-url": "https://packagist.org/downloads/",
9955
  "license": [
9987
  },
9988
  "type": "library",
9989
  "autoload": {
 
 
 
9990
  "files": [
9991
  "lib/cli/cli.php"
9992
+ ],
9993
+ "psr-0": {
9994
+ "cli": "lib/"
9995
+ }
9996
  },
9997
  "notification-url": "https://packagist.org/downloads/",
9998
  "license": [
10208
  "prefer-lowest": false,
10209
  "platform": [],
10210
  "platform-dev": [],
10211
+ "plugin-api-version": "2.2.0"
10212
  }
post-expirator-debug.php CHANGED
@@ -76,7 +76,7 @@ class PostExpiratorDebug
76
  public function getTable()
77
  {
78
  global $wpdb;
79
- $results = $wpdb->get_results("SELECT * FROM {$this->debug_table} ORDER BY `id` DESC");
80
  if (empty($results)) {
81
  print '<p>' . esc_html__('Debugging table is currently empty.', 'post-expirator') . '</p>';
82
 
76
  public function getTable()
77
  {
78
  global $wpdb;
79
+ $results = $wpdb->get_results("SELECT * FROM {$this->debug_table} ORDER BY `id` ASC");
80
  if (empty($results)) {
81
  print '<p>' . esc_html__('Debugging table is currently empty.', 'post-expirator') . '</p>';
82
 
post-expirator.php CHANGED
@@ -4,2191 +4,2226 @@
4
  * Plugin URI: http://wordpress.org/extend/plugins/post-expirator/
5
  * Description: Allows you to add an expiration date (minute) to posts which you can configure to either delete the post, change it to a draft, or update the post categories at expiration time.
6
  * Author: PublishPress
7
- * Version: 2.7.3
8
  * Author URI: http://publishpress.com
9
  * Text Domain: post-expirator
10
  * Domain Path: /languages
11
  */
12
 
13
- // Default Values
14
- define('POSTEXPIRATOR_VERSION', '2.7.3');
15
- define('POSTEXPIRATOR_DATEFORMAT', __('l F jS, Y', 'post-expirator'));
16
- define('POSTEXPIRATOR_TIMEFORMAT', __('g:ia', 'post-expirator'));
17
- define('POSTEXPIRATOR_FOOTERCONTENTS', __('Post expires at EXPIRATIONTIME on EXPIRATIONDATE', 'post-expirator'));
18
- define('POSTEXPIRATOR_FOOTERSTYLE', 'font-style: italic;');
19
- define('POSTEXPIRATOR_FOOTERDISPLAY', '0');
20
- define('POSTEXPIRATOR_EMAILNOTIFICATION', '0');
21
- define('POSTEXPIRATOR_EMAILNOTIFICATIONADMINS', '0');
22
- define('POSTEXPIRATOR_DEBUGDEFAULT', '0');
23
- define('POSTEXPIRATOR_EXPIREDEFAULT', 'null');
24
- define('POSTEXPIRATOR_SLUG', 'post-expirator');
25
- define('POSTEXPIRATOR_BASEDIR', dirname(__FILE__));
26
- define('POSTEXPIRATOR_BASENAME', basename(__FILE__));
27
- define('POSTEXPIRATOR_BASEURL', plugins_url('/', __FILE__));
28
-
29
- require_once POSTEXPIRATOR_BASEDIR . '/functions.php';
30
-
31
- $autoloadPath = POSTEXPIRATOR_BASEDIR . '/vendor/autoload.php';
32
- if (false === class_exists('PublishPressFuture\\DummyForAutoloadDetection')
33
- && true === file_exists($autoloadPath)
34
- ) {
35
- include_once $autoloadPath;
36
  }
37
 
38
- /**
39
- * Adds links to the plugin listing screen.
40
- *
41
- * @internal
42
- *
43
- * @access private
44
- */
45
- function postexpirator_plugin_action_links($links, $file)
46
- {
47
- $this_plugin = basename(plugin_dir_url(__FILE__)) . '/post-expirator.php';
48
- if ($file === $this_plugin) {
49
- $links[] = '<a href="admin.php?page=publishpress-future">' . __('Settings', 'post-expirator') . '</a>';
50
- }
51
 
52
- return $links;
53
  }
54
 
55
- add_filter('plugin_action_links', 'postexpirator_plugin_action_links', 10, 2);
56
-
57
- /**
58
- * Load translation, if it exists.
59
- *
60
- * @internal
61
- *
62
- * @access private
63
- */
64
- function postexpirator_init()
65
- {
66
- $plugin_dir = plugin_basename(__DIR__);
67
- load_plugin_textdomain('post-expirator', null, $plugin_dir . '/languages/');
68
-
69
- PostExpirator_Reviews::init();
70
-
71
- if (class_exists('WP_CLI')) {
72
- PostExpirator_Cli::getInstance();
 
 
 
 
 
 
 
73
  }
74
 
75
- add_action('wp_insert_post', 'postexpirator_set_default_meta_for_post', 10, 3);
76
- }
77
-
78
- add_action('plugins_loaded', 'postexpirator_init');
 
 
 
 
 
 
 
 
 
79
 
80
- /**
81
- * Adds an 'Expires' column to the post display table.
82
- *
83
- * @internal
84
- *
85
- * @access private
86
- */
87
- function postexpirator_add_column($columns, $type)
88
- {
89
- $defaults = get_option('expirationdateDefaults' . ucfirst($type));
90
- // if settings are not configured, show the metabox by default only for posts and pages
91
- if ((! isset($defaults['activeMetaBox']) && in_array($type, array(
92
- 'post',
93
- 'page'
94
- ), true)) || (is_array(
95
- $defaults
96
- ) && $defaults['activeMetaBox'] === 'active')) {
97
- $columns['expirationdate'] = __('Expires', 'post-expirator');
98
  }
99
 
100
- return $columns;
101
- }
102
-
103
- add_filter('manage_posts_columns', 'postexpirator_add_column', 10, 2);
104
 
105
- /**
106
- * Adds sortable columns.
107
- *
108
- * @internal
109
- *
110
- * @access private
111
- */
112
- function postexpirator_manage_sortable_columns()
113
- {
114
- $post_types = postexpirator_get_post_types();
115
- foreach ($post_types as $post_type) {
116
- add_filter('manage_edit-' . $post_type . '_sortable_columns', 'postexpirator_sortable_column');
117
- }
118
- }
119
 
120
- add_action('admin_init', 'postexpirator_manage_sortable_columns', 100);
121
 
122
- /**
123
- * Adds an 'Expires' column to the post display table.
124
- *
125
- * @internal
126
- *
127
- * @access private
128
- */
129
- function postexpirator_sortable_column($columns)
130
- {
131
- $columns['expirationdate'] = 'expirationdate';
132
-
133
- return $columns;
134
- }
135
 
136
- /**
137
- * Modify the sorting of posts.
138
- *
139
- * @internal
140
- *
141
- * @access private
142
- */
143
- function postexpirator_orderby($query)
144
- {
145
- if (! is_admin()) {
146
- return;
147
  }
148
 
149
- $orderby = $query->get('orderby');
150
 
151
- if ('expirationdate' === $orderby) {
152
- $query->set(
153
- 'meta_query', array(
154
- 'relation' => 'OR',
155
- array(
156
- 'key' => '_expiration-date',
157
- 'compare' => 'EXISTS',
158
- ),
159
- array(
160
- 'key' => '_expiration-date',
161
- 'compare' => 'NOT EXISTS',
162
- 'value' => '',
163
- ),
164
- )
165
- );
166
- $query->set('orderby', 'meta_value_num');
 
 
 
 
 
167
  }
168
- }
169
 
170
- add_action('pre_get_posts', 'postexpirator_orderby');
171
 
172
- /**
173
- * Adds an 'Expires' column to the page display table.
174
- *
175
- * @internal
176
- *
177
- * @access private
178
- */
179
- function postexpirator_add_column_page($columns)
180
- {
181
- $defaults = get_option('expirationdateDefaultsPage');
182
- if (! isset($defaults['activeMetaBox']) || $defaults['activeMetaBox'] === 'active') {
183
- $columns['expirationdate'] = __('Expires', 'post-expirator');
 
184
  }
185
 
186
- return $columns;
187
- }
188
 
189
- add_filter('manage_pages_columns', 'postexpirator_add_column_page');
 
 
 
 
 
 
 
 
 
190
 
191
- /**
192
- * Fills the 'Expires' column of the post display table.
193
- *
194
- * @internal
195
- *
196
- * @access private
197
- */
198
- function postexpirator_show_value($column_name)
199
- {
200
- if ($column_name !== 'expirationdate') {
201
- return;
202
  }
203
 
204
- global $post;
 
 
 
 
 
 
 
 
 
 
 
 
 
205
 
206
- // get the attributes that quick edit functionality requires
207
- // and save it as a JSON encoded HTML attribute
208
- $attributes = PostExpirator_Facade::get_expire_principles($post->ID);
209
- PostExpirator_Display::getInstance()->render_template('expire-column', array(
210
- 'id' => $post->ID,
211
- 'post_type' => $post->post_type,
212
- 'attributes' => $attributes
213
- ));
214
- }
 
 
 
 
 
 
 
 
 
215
 
216
- add_action('manage_posts_custom_column', 'postexpirator_show_value');
217
- add_action('manage_pages_custom_column', 'postexpirator_show_value');
218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
 
220
- /**
221
- * Quick Edit functionality.
222
- *
223
- * @internal
224
- *
225
- * @access private
226
- */
227
- function postexpirator_quickedit($column_name, $post_type)
228
- {
229
- if ($column_name !== 'expirationdate') {
230
- return;
231
  }
232
 
233
- $facade = PostExpirator_Facade::getInstance();
234
 
235
- if (! $facade->current_user_can_expire_posts()) {
236
- return;
237
- }
 
 
 
 
 
 
 
 
 
238
 
239
- $defaults = get_option('expirationdateDefaults' . ucfirst($post_type));
240
- $taxonomy = isset($defaults['taxonomy']) ? $defaults['taxonomy'] : '';
241
- $label = '';
242
 
243
- // if settings have not been configured and this is the default post type
244
- if (empty($taxonomy) && 'post' === $post_type) {
245
- $taxonomy = 'category';
 
 
 
 
 
246
  }
247
 
248
- if (! empty($taxonomy)) {
249
- $tax_object = get_taxonomy($taxonomy);
250
- $label = $tax_object ? $tax_object->label : '';
251
- }
252
 
253
- PostExpirator_Display::getInstance()->render_template('quick-edit', array(
254
- 'post_type' => $post_type,
255
- 'taxonomy' => $taxonomy,
256
- 'tax_label' => $label
257
- ));
258
- }
259
 
260
- add_action('quick_edit_custom_box', 'postexpirator_quickedit', 10, 2);
 
 
 
 
 
 
 
 
 
 
 
261
 
262
- /**
263
- * Bulk Edit functionality.
264
- *
265
- * @internal
266
- *
267
- * @access private
268
- */
269
- function postexpirator_bulkedit($column_name, $post_type)
270
- {
271
- if ($column_name !== 'expirationdate') {
272
- return;
273
- }
274
 
275
- $facade = PostExpirator_Facade::getInstance();
 
 
276
 
277
- if (! $facade->current_user_can_expire_posts()) {
278
- return;
279
- }
280
 
281
- $defaults = get_option('expirationdateDefaults' . ucfirst($post_type));
282
- $taxonomy = isset($defaults['taxonomy']) ? $defaults['taxonomy'] : '';
283
- $label = '';
 
284
 
285
- // if settings have not been configured and this is the default post type
286
- if (empty($taxonomy) && 'post' === $post_type) {
287
- $taxonomy = 'category';
288
- }
289
 
290
- if (! empty($taxonomy)) {
291
- $tax_object = get_taxonomy($taxonomy);
292
- $label = $tax_object ? $tax_object->label : '';
 
 
293
  }
294
 
295
- PostExpirator_Display::getInstance()->render_template('bulk-edit', array(
296
- 'post_type' => $post_type,
297
- 'taxonomy' => $taxonomy,
298
- 'tax_label' => $label
299
- ));
300
- }
301
-
302
- add_action('bulk_edit_custom_box', 'postexpirator_bulkedit', 10, 2);
303
 
304
- /**
305
- * Returns the post types that are supported.
306
- *
307
- * @internal
308
- *
309
- * @access private
310
- */
311
- function postexpirator_get_post_types()
312
- {
313
- $post_types = get_post_types(array('public' => true));
314
- $post_types = array_merge(
315
- $post_types,
316
- get_post_types(array(
317
- 'public' => false,
318
- 'show_ui' => true,
319
- '_builtin' => false
320
- ))
321
- );
322
-
323
- // in case some post types should not be supported.
324
- $unset_post_types = apply_filters('postexpirator_unset_post_types', array('attachment'));
325
- if ($unset_post_types) {
326
- foreach ($unset_post_types as $type) {
327
- unset($post_types[$type]);
328
  }
329
- }
330
 
331
- return $post_types;
332
- }
333
 
334
- /**
335
- * Adds hooks to get the meta box added to pages and custom post types
336
- *
337
- * @internal
338
- *
339
- * @access private
340
- */
341
- function postexpirator_meta_custom()
342
- {
343
- $facade = PostExpirator_Facade::getInstance();
344
-
345
- if (! $facade->current_user_can_expire_posts()) {
346
- return;
347
- }
348
 
349
- $post_types = postexpirator_get_post_types();
350
- foreach ($post_types as $type) {
351
- $defaults = get_option('expirationdateDefaults' . ucfirst($type));
352
- // if settings are not configured, show the metabox by default only for posts and pages
353
- if ((! isset($defaults['activeMetaBox']) && in_array($type, array(
354
- 'post',
355
- 'page'
356
- ), true)) || (is_array(
357
- $defaults
358
- ) && $defaults['activeMetaBox'] === 'active')) {
359
- add_meta_box(
360
- 'expirationdatediv',
361
- __('PublishPress Future', 'post-expirator'),
362
- 'postexpirator_meta_box',
363
- $type,
364
- 'side',
365
- 'core',
366
- array('__back_compat_meta_box' => PostExpirator_Facade::show_gutenberg_metabox())
367
- );
368
  }
369
- }
370
- }
371
 
372
- add_action('add_meta_boxes', 'postexpirator_meta_custom');
 
 
 
373
 
374
- /**
375
- * Actually adds the meta box
376
- *
377
- * @internal
378
- *
379
- * @access private
380
- */
381
- function postexpirator_meta_box($post)
382
- {
383
- $postMetaDate = get_post_meta($post->ID, '_expiration-date', true);
384
- $postMetaStatus = get_post_meta($post->ID, '_expiration-date-status', true);
385
-
386
- $expireType = $default = $enabled = '';
387
- $defaultsOption = get_option('expirationdateDefaults' . ucfirst($post->post_type));
388
- if (empty($postMetaDate)) {
389
- $defaultExpire = PostExpirator_Facade::get_default_expiry($post->post_type);
390
 
391
- $defaultMonth = $defaultExpire['month'];
392
- $defaultDay = $defaultExpire['day'];
393
- $defaultHour = $defaultExpire['hour'];
394
- $defaultYear = $defaultExpire['year'];
395
- $defaultMinute = $defaultExpire['minute'];
396
 
397
- $categories = get_option('expirationdateCategoryDefaults');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
398
 
399
- if (isset($defaultsOption['expireType'])) {
400
- $expireType = $defaultsOption['expireType'];
 
 
 
 
401
  }
402
- } else {
403
- $defaultMonth = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'm');
404
- $defaultDay = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'd');
405
- $defaultYear = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'Y');
406
- $defaultHour = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'H');
407
- $defaultMinute = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'i');
408
 
409
- $attributes = PostExpirator_Facade::get_expire_principles($post->ID);
410
- $expireType = $attributes['expireType'];
411
- $categories = $attributes['category'];
412
  }
413
 
414
- if (PostExpirator_Facade::is_expiration_enabled_for_post($post->ID)) {
415
- $enabled = ' checked="checked"';
416
- }
 
 
 
 
 
 
 
417
 
418
- PostExpirator_Display::getInstance()->render_template(
419
- 'classic-metabox', [
420
- 'post' => $post,
421
- 'enabled' => $enabled,
422
- 'default' => $default,
423
- 'defaultsOption' => $defaultsOption,
424
- 'defaultmonth' => $defaultMonth,
425
- 'defaultday' => $defaultDay,
426
- 'defaulthour' => $defaultHour,
427
- 'defaultyear' => $defaultYear,
428
- 'defaultminute' => $defaultMinute,
429
- 'categories' => $categories,
430
- 'expireType' => $expireType,
431
- ]
432
- );
433
- }
434
 
435
- function postexpirator_set_default_meta_for_post($postId, $post, $update)
436
- {
437
- if ($update) {
438
- return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439
  }
440
 
441
- $postTypeDefaults = get_option('expirationdateDefaults' . ucfirst($post->post_type));
442
 
443
- if (empty($postTypeDefaults) || (int)$postTypeDefaults['autoEnable'] !== 1) {
444
- return;
445
- }
 
 
 
 
 
 
 
 
446
 
447
- $defaultExpire = PostExpirator_Facade::get_default_expiry($post->post_type);
448
-
449
- $categories = get_option('expirationdateCategoryDefaults');
450
-
451
- $status = ! empty($defaultExpire['ts']) ? 'saved' : '';
452
-
453
- $opts = [
454
- 'expireType' => $postTypeDefaults['expireType'],
455
- 'category' => $categories,
456
- 'categoryTaxonomy' => '',
457
- 'enabled' => $status === 'saved',
458
- ];
459
-
460
- update_post_meta($post->ID, '_expiration-date', $defaultExpire['ts']);
461
- update_post_meta($post->ID, '_expiration-date-status', $status);
462
- update_post_meta($post->ID, '_expiration-date-options', $opts);
463
- update_post_meta($post->ID, '_expiration-date-type', $postTypeDefaults['expireType']);
464
- update_post_meta($post->ID, '_expiration-date-categories', (array)$categories);
465
- update_post_meta(
466
- $post->ID,
467
- '_expiration-date-taxonomy',
468
- $opts['categoryTaxonomy']
469
- );
470
- }
471
 
472
- /**
473
- * Add's ajax javascript.
474
- *
475
- * @internal
476
- *
477
- * @access private
478
- */
479
- function postexpirator_js_admin_header()
480
- {
481
- $facade = PostExpirator_Facade::getInstance();
482
-
483
- if (! $facade->current_user_can_expire_posts()) {
484
- return;
485
- }
486
- ?>
487
- <script type="text/javascript">
488
- //<![CDATA[
489
- (function ($) {
490
- $(document).ready(function () {
491
- init();
492
- });
493
-
494
- function init() {
495
- $('#enable-expirationdate').on('click', function (e) {
496
- if ($(this).is(':checked')) {
497
- $('.pe-classic-fields').show();
498
- } else {
499
- $('.pe-classic-fields').hide();
500
- }
501
- });
502
 
503
- $('.pe-howtoexpire').on('change', function (e) {
504
- if ($(this).val().indexOf('category') !== -1) {
505
- $('#expired-category-selection').show();
506
- } else {
507
- $('#expired-category-selection').hide();
508
- }
509
- });
510
  }
511
- })(jQuery);
512
- //]]>
513
- </script>
514
- <?php
515
- }
 
 
 
 
 
 
516
 
517
- add_action('admin_head', 'postexpirator_js_admin_header');
 
 
518
 
519
- /**
520
- * Called when post is saved - stores expiration-date meta value
521
- *
522
- * @internal
523
- *
524
- * @access private
525
- */
526
- function postexpirator_update_post_meta($id)
527
- {
528
- // don't run the echo if this is an auto save
529
- if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
530
- return;
 
 
 
531
  }
532
 
533
- // don't run the echo if the function is called for saving revision.
534
- $posttype = get_post_type((int) $id);
535
- if ($posttype === 'revision') {
536
- return;
537
- }
538
 
539
- // Do not process Bulk edit here. It is processed on the function "postexpirator_date_save_bulk_edit"
540
- if (isset($_GET['postexpirator_view']) && $_GET['postexpirator_view'] === 'bulk-edit') {
541
- return;
542
- }
543
 
544
- $facade = PostExpirator_Facade::getInstance();
 
 
545
 
546
- if (! $facade->current_user_can_expire_posts()) {
547
- return;
548
- }
549
 
550
- $shouldSchedule = false;
551
- $ts = null;
552
- $opts = [];
553
 
554
- if (isset($_POST['postexpirator_view'])) {
555
- if (defined('DOING_AJAX') && DOING_AJAX) {
556
- check_ajax_referer('__postexpirator', '_postexpiratornonce');
557
- } else {
558
- check_admin_referer('__postexpirator', '_postexpiratornonce');
559
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
560
 
561
- // Classic editor, quick edit
562
- $shouldSchedule = isset($_POST['enable-expirationdate']);
 
 
 
 
 
 
 
 
563
 
564
- $default = get_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
565
- if ($default === 'publish') {
566
- $month = intval($_POST['mm']);
567
- $day = intval($_POST['jj']);
568
- $year = intval($_POST['aa']);
569
- $hour = intval($_POST['hh']);
570
- $minute = intval($_POST['mn']);
571
- } else {
572
- $month = intval($_POST['expirationdate_month']);
573
- $day = intval($_POST['expirationdate_day']);
574
- $year = intval($_POST['expirationdate_year']);
575
- $hour = intval($_POST['expirationdate_hour']);
576
- $minute = intval($_POST['expirationdate_minute']);
577
-
578
- if (empty($day)) {
579
- $day = date('d');
580
- }
581
- if (empty($year)) {
582
- $year = date('Y');
583
- }
584
  }
585
- $category = isset($_POST['expirationdate_category'])
586
- ? PostExpirator_Util::sanitize_array_of_integers($_POST['expirationdate_category']) : [];
587
-
588
- $ts = get_gmt_from_date("$year-$month-$day $hour:$minute:0", 'U');
 
 
 
589
 
590
- if (isset($_POST['expirationdate_quickedit'])) {
591
- $opts = PostExpirator_Facade::get_expire_principles($id);
592
- if (isset($_POST['expirationdate_expiretype'])) {
593
- $opts['expireType'] = sanitize_key($_POST['expirationdate_expiretype']);
594
- if (in_array($opts['expireType'], array(
595
- 'category',
596
- 'category-add',
597
- 'category-remove'
598
- ), true)) {
599
- $opts['category'] = $category;
 
 
 
 
 
 
600
  }
601
- }
602
- } else {
603
- // Schedule/Update Expiration
604
- $opts['expireType'] = sanitize_key($_POST['expirationdate_expiretype']);
605
- $opts['id'] = $id;
606
 
607
- if ($opts['expireType'] === 'category' || $opts['expireType'] === 'category-add' || $opts['expireType'] === 'category-remove') {
608
- if (isset($category) && ! empty($category)) {
609
- $opts['category'] = $category;
610
- $opts['categoryTaxonomy'] = sanitize_text_field($_POST['taxonomy-heirarchical']);
611
- }
612
- }
 
 
 
 
 
 
 
 
613
  }
614
- } else {
615
- // Gutenberg or script request
616
- $payload = @file_get_contents('php://input');
617
 
618
- if (empty($payload)) {
619
- $debug = postexpirator_debug();
 
 
 
620
 
621
- if (POSTEXPIRATOR_DEBUG) {
622
- $debug->save(
623
- array(
624
- 'message' => $id . ' -> NO PAYLOAD ON SAVE_POST'
625
- )
626
- );
627
- }
628
 
 
 
 
629
  return;
630
  }
631
 
632
- $payload = @json_decode($payload, true);
 
 
633
 
634
- if (isset($payload['meta'])) {
635
- if (isset($payload['meta']['_expiration-date-status'])) {
636
- $shouldSchedule = $payload['meta']['_expiration-date-status'] === 'saved'
637
- && isset($payload['meta']['_expiration-date'])
638
- && false === empty($payload['meta']['_expiration-date']);
639
  } else {
640
- $shouldSchedule = PostExpirator_Facade::is_expiration_enabled_for_post($id);
641
  }
642
 
643
- if ($shouldSchedule) {
644
- if (isset($payload['meta']['_expiration-date'])) {
645
- $ts = sanitize_text_field($payload['meta']['_expiration-date']);
646
- } else {
647
- $ts = get_post_meta($id, '_expiration-date', true);
648
- }
649
 
650
- if (isset($payload['meta']['_expiration-date-type'])) {
651
- $opts['expireType'] = sanitize_key($payload['meta']['_expiration-date-type']);
652
- } else {
653
- $opts['expireType'] = get_post_meta($id, '_expiration-date-type', true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  }
 
 
 
 
655
 
656
- if (isset($payload['meta']['_expiration-date-categories'])) {
657
- $opts['category'] = PostExpirator_Util::sanitize_array_of_integers($payload['meta']['_expiration-date-categories']);
658
- } else {
659
- $opts['category'] = (array)get_post_meta($id, '_expiration-date-categories', true);
 
660
  }
661
  }
662
  } else {
663
- $shouldSchedule = PostExpirator_Facade::is_expiration_enabled_for_post($id);
 
664
 
665
- if ($shouldSchedule) {
666
- $ts = get_post_meta($id, '_expiration-date', true);
667
 
668
- $opts['expireType'] = get_post_meta($id, '_expiration-date-type', true);
669
- $opts['category'] = (array)get_post_meta($id, '_expiration-date-categories', true);
670
- }
671
- }
672
- }
 
 
673
 
674
- if ($shouldSchedule) {
675
- $opts['id'] = $id;
676
- postexpirator_schedule_event($id, $ts, $opts);
677
- } else {
678
- postexpirator_unschedule_event($id);
679
- }
680
- }
681
 
682
- add_action('save_post', 'postexpirator_update_post_meta');
683
 
684
- /**
685
- * Schedules the single event.
686
- *
687
- * @internal
688
- *
689
- * @access private
690
- */
691
- function postexpirator_schedule_event($id, $ts, $opts)
692
- {
693
- $debug = postexpirator_debug(); // check for/load debug
694
-
695
- $id = intval($id);
696
-
697
- do_action('postexpiratior_schedule', $id, $ts, $opts); // allow custom actions
698
-
699
- if (wp_next_scheduled('postExpiratorExpire', array($id)) !== false) {
700
- $error = wp_clear_scheduled_hook('postExpiratorExpire', array($id), true); // Remove any existing hooks
701
- if (POSTEXPIRATOR_DEBUG) {
702
- $debug->save(
703
- array(
704
- 'message' => $id . ' -> EXISTING CRON EVENT FOUND - UNSCHEDULED - ' . (is_wp_error(
705
- $error
706
- ) ? $error->get_error_message() : 'no error')
707
- )
708
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
709
  }
710
- }
711
 
712
- $scheduled = wp_schedule_single_event($ts, 'postExpiratorExpire', array($id), true);
713
- if (POSTEXPIRATOR_DEBUG) {
714
- if ($scheduled) {
715
- $debug->save(
716
- array(
717
- 'message' => $id . ' -> CRON EVENT SCHEDULED at ' .
718
- PostExpirator_Util::get_wp_date('r', $ts)
719
- . ' ' . '(' . $ts . ') with options ' . print_r($opts, true) . ' no error'
720
- )
721
- );
722
  } else {
723
- $debug->save(
724
- array(
725
- 'message' => $id . ' -> TRIED TO SCHEDULE CRON EVENT at ' .
726
- PostExpirator_Util::get_wp_date('r', $ts)
727
- . ' ' . '(' . $ts . ') with options ' . print_r($opts, true) . ' ' . (is_wp_error(
728
- $scheduled
729
- ) ? $scheduled->get_error_message() : 'no error')
730
- )
731
- );
732
  }
733
  }
734
 
735
- // Update Post Meta
736
- update_post_meta($id, '_expiration-date', $ts);
737
- if (! is_null($opts)) {
738
- PostExpirator_Facade::set_expire_principles($id, $opts);
739
- }
740
- update_post_meta($id, '_expiration-date-status', 'saved');
741
- }
742
 
743
- /**
744
- * Unschedules the single event.
745
- *
746
- * @internal
747
- *
748
- * @access private
749
- */
750
- function postexpirator_unschedule_event($id)
751
- {
752
- $debug = postexpirator_debug(); // check for/load debug
753
-
754
- do_action('postexpiratior_unschedule', $id); // allow custom actions
755
-
756
- delete_post_meta($id, '_expiration-date');
757
- delete_post_meta($id, '_expiration-date-options');
758
- delete_post_meta($id, '_expiration-date-type');
759
- delete_post_meta($id, '_expiration-date-categories');
760
- delete_post_meta($id, '_expiration-date-taxonomy');
761
-
762
- // Delete Scheduled Expiration
763
- if (wp_next_scheduled('postExpiratorExpire', array($id)) !== false) {
764
- wp_clear_scheduled_hook('postExpiratorExpire', array($id)); // Remove any existing hooks
765
- if (POSTEXPIRATOR_DEBUG) {
766
- $debug->save(array('message' => $id . ' -> UNSCHEDULED'));
 
 
767
  }
768
- }
769
- delete_post_meta($id, '_expiration-date-status');
770
- }
771
 
772
- /**
773
- * The new expiration function, to work with single scheduled events.
774
- *
775
- * This was designed to hopefully be more flexible for future tweaks/modifications to the architecture.
776
- *
777
- * @internal
778
- *
779
- * @access private
780
- */
781
- function postexpirator_expire_post($id)
782
- {
783
- $debug = postexpirator_debug(); // check for/load debug
784
-
785
- $id = (int)$id;
786
-
787
- if (empty($id)) {
788
  if (POSTEXPIRATOR_DEBUG) {
789
- $debug->save(array('message' => 'No Post ID found - exiting'));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
790
  }
791
 
792
- return false;
 
 
 
 
 
793
  }
794
 
795
- if (is_null(get_post($id))) {
796
- if (POSTEXPIRATOR_DEBUG) {
797
- $debug->save(array('message' => $id . ' -> Post does not exist - exiting'));
798
- }
 
 
 
 
 
 
799
 
800
- return false;
801
- }
802
 
803
- $postExpireOptions = PostExpirator_Facade::get_expire_principles($id);
 
 
 
 
804
 
805
- if ($postExpireOptions['enabled'] === false) {
806
- if (POSTEXPIRATOR_DEBUG) {
807
- $debug->save(array('message' => $id . ' -> Post expire data exist but is not activated'));
 
 
 
808
  }
809
-
810
- return false;
811
  }
812
 
813
- $postType = get_post_type($id);
814
- $postTitle = get_the_title($id);
815
- $postLink = get_post_permalink($id);
816
-
817
- $expireType = $expireCategory = $expireCategoryTaxonomy = null;
 
 
 
 
 
 
 
818
 
819
- if (isset($postExpireOptions['expireType'])) {
820
- $expireType = $postExpireOptions['expireType'];
821
- }
822
 
823
- if (isset($postExpireOptions['category'])) {
824
- $expireCategory = $postExpireOptions['category'];
825
- }
 
826
 
827
- if (isset($postExpireOptions['categoryTaxonomy'])) {
828
- $expireCategoryTaxonomy = $postExpireOptions['categoryTaxonomy'];
829
- }
830
 
831
- $expirationDate = (int)get_post_meta($id, '_expiration-date', true);
 
 
 
832
 
833
- if (empty($expirationDate)) {
834
- if (POSTEXPIRATOR_DEBUG) {
835
- $debug->save(array('message' => $id . ' -> Tried to expire the post but the expire date is empty'));
836
  }
837
 
838
- return false;
839
- }
 
 
 
 
 
 
 
840
 
841
- // Check for default expire only if not passed in
842
- if (empty($expireType)) {
843
  $postType = get_post_type($id);
844
- if ($postType === 'page') {
845
- $expireType = strtolower(get_option('expirationdateExpiredPageStatus', POSTEXPIRATOR_PAGESTATUS));
846
- } elseif ($postType === 'post') {
847
- $expireType = strtolower(get_option('expirationdateExpiredPostStatus', 'draft'));
848
- } else {
849
- $expireType = apply_filters(
850
- 'postexpirator_custom_posttype_expire',
851
- $expireType,
852
- $postType
853
- ); // hook to set defaults for custom post types
854
  }
855
- }
856
 
857
- // Remove KSES - wp_cron runs as an unauthenticated user, which will by default trigger kses filtering,
858
- // even if the post was published by a admin user. It is fairly safe here to remove the filter call since
859
- // we are only changing the post status/meta information and not touching the content.
860
- kses_remove_filters();
861
 
862
- $postWasExpired = false;
 
 
863
 
864
- // Do Work
865
- if ($expireType === 'draft') {
866
- if (wp_update_post(array('ID' => $id, 'post_status' => 'draft')) === 0) {
867
- if (POSTEXPIRATOR_DEBUG) {
868
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
869
- }
870
- } else {
871
- $emailBody = sprintf(
872
- __(
873
- '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
874
- 'post-expirator'
875
- ),
876
- '##POSTTITLE##',
877
- '##POSTLINK##',
878
- '##EXPIRATIONDATE##',
879
- strtoupper($expireType)
880
- );
881
  if (POSTEXPIRATOR_DEBUG) {
882
- $debug->save(
883
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
884
- );
885
  }
886
 
887
- $postWasExpired = true;
888
  }
889
- } elseif ($expireType === 'private') {
890
- if (wp_update_post(array('ID' => $id, 'post_status' => 'private')) === 0) {
891
- if (POSTEXPIRATOR_DEBUG) {
892
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
 
 
 
 
 
 
 
 
 
 
893
  }
894
- } else {
895
- $emailBody = sprintf(
896
- __(
897
- '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
898
- 'post-expirator'
899
- ),
900
- '##POSTTITLE##',
901
- '##POSTLINK##',
902
- '##EXPIRATIONDATE##',
903
- strtoupper($expireType)
904
- );
905
- if (POSTEXPIRATOR_DEBUG) {
906
- $debug->save(
907
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
 
 
 
 
 
 
 
 
 
 
908
  );
909
- }
 
 
 
 
910
 
911
- $postWasExpired = true;
912
- }
913
- } elseif ($expireType === 'delete') {
914
- if (wp_delete_post($id) === false) {
915
- if (POSTEXPIRATOR_DEBUG) {
916
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
917
  }
918
- } else {
919
- $emailBody = sprintf(
920
- __(
921
- '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
922
- 'post-expirator'
923
- ),
924
- '##POSTTITLE##',
925
- '##POSTLINK##',
926
- '##EXPIRATIONDATE##',
927
- strtoupper($expireType)
928
- );
929
- if (POSTEXPIRATOR_DEBUG) {
930
- $debug->save(
931
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
932
  );
933
- }
 
 
 
 
934
 
935
- $postWasExpired = true;
936
- }
937
- } elseif ($expireType === 'trash') {
938
- if (wp_trash_post($id) === false) {
939
- if (POSTEXPIRATOR_DEBUG) {
940
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
941
  }
942
- } else {
943
- $emailBody = sprintf(
944
- __(
945
- '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
946
- 'post-expirator'
947
- ),
948
- '##POSTTITLE##',
949
- '##POSTLINK##',
950
- '##EXPIRATIONDATE##',
951
- strtoupper($expireType)
952
- );
953
- if (POSTEXPIRATOR_DEBUG) {
954
- $debug->save(
955
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
956
  );
957
- }
 
 
 
 
958
 
959
- $postWasExpired = true;
960
- }
961
- } elseif ($expireType === 'stick') {
962
- if (stick_post($id) === false) {
963
- if (POSTEXPIRATOR_DEBUG) {
964
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
965
  }
966
- } else {
967
- $emailBody = sprintf(
968
- __('%1$s (%2$s) has expired at %3$s. Post "%4$s" status has been successfully set.', 'post-expirator'),
969
- '##POSTTITLE##',
970
- '##POSTLINK##',
971
- '##EXPIRATIONDATE##',
972
- 'STICKY'
973
- );
974
- if (POSTEXPIRATOR_DEBUG) {
975
- $debug->save(
976
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
 
 
 
977
  );
978
- }
 
 
 
 
979
 
980
- $postWasExpired = true;
981
- }
982
- } elseif ($expireType === 'unstick') {
983
- if (unstick_post($id) === false) {
984
- if (POSTEXPIRATOR_DEBUG) {
985
- $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
986
  }
987
- } else {
988
- $emailBody = sprintf(
989
- __(
990
- '%1$s (%2$s) has expired at %3$s. Post "%4$s" status has been successfully removed.',
991
- 'post-expirator'
992
- ),
993
- '##POSTTITLE##',
994
- '##POSTLINK##',
995
- '##EXPIRATIONDATE##',
996
- 'STICKY'
997
- );
998
- if (POSTEXPIRATOR_DEBUG) {
999
- $debug->save(
1000
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1001
  );
 
 
 
 
 
 
 
1002
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1003
 
1004
- $postWasExpired = true;
1005
- }
1006
- } elseif ($expireType === 'category') {
1007
- if (! empty($expireCategory)) {
1008
- if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1009
- if (wp_update_post(array('ID' => $id, 'post_category' => $expireCategory)) === 0) {
1010
- if (POSTEXPIRATOR_DEBUG) {
1011
- $debug->save(
1012
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
 
 
 
 
 
 
 
 
 
 
 
 
1013
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1014
  }
1015
  } else {
1016
- $emailBody = sprintf(
1017
- __(
1018
- '%1$s (%2$s) has expired at %3$s. Post "%4$s" have now been set to "%5$s".',
1019
- 'post-expirator'
1020
- ),
1021
- '##POSTTITLE##',
1022
- '##POSTLINK##',
1023
- '##EXPIRATIONDATE##',
1024
- 'CATEGORIES',
1025
- implode(',', _postexpirator_get_cat_names($expireCategory))
1026
- );
1027
- if (POSTEXPIRATOR_DEBUG) {
1028
- $debug->save(
1029
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1030
- );
1031
- $debug->save(
1032
- array(
1033
- 'message' => $id . ' -> CATEGORIES REPLACED ' . print_r(
1034
- _postexpirator_get_cat_names($expireCategory),
1035
- true
1036
- )
1037
- )
1038
- );
1039
- $debug->save(
1040
- array(
1041
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1042
- _postexpirator_get_cat_names($expireCategory),
1043
- true
1044
- )
1045
- )
1046
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1047
  }
1048
-
1049
- $postWasExpired = true;
1050
  }
1051
  } else {
1052
- $terms = PostExpirator_Util::sanitize_array_of_integers($expireCategory);
1053
- if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, false))) {
1054
- if (POSTEXPIRATOR_DEBUG) {
1055
- $debug->save(
1056
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1057
- );
1058
- }
1059
- } else {
1060
- $emailBody = sprintf(
1061
- __(
1062
- '%1$s (%2$s) has expired at %3$s. Post "%4$s" have now been set to "%5$s".',
1063
- 'post-expirator'
1064
- ),
1065
- '##POSTTITLE##',
1066
- '##POSTLINK##',
1067
- '##EXPIRATIONDATE##',
1068
- 'CATEGORIES',
1069
- implode(',', _postexpirator_get_cat_names($expireCategory))
1070
  );
1071
- if (POSTEXPIRATOR_DEBUG) {
1072
- $debug->save(
1073
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1074
- );
1075
- $debug->save(
1076
- array(
1077
- 'message' => $id . ' -> CATEGORIES REPLACED ' . print_r(
1078
- _postexpirator_get_cat_names($expireCategory),
1079
- true
1080
- )
1081
- )
1082
- );
1083
- $debug->save(
1084
- array(
1085
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1086
- _postexpirator_get_cat_names($expireCategory),
1087
- true
1088
- )
1089
- )
1090
- );
1091
- }
1092
-
1093
- $postWasExpired = true;
1094
  }
1095
  }
1096
- } else {
1097
- if (POSTEXPIRATOR_DEBUG) {
1098
- $debug->save(
1099
- array(
1100
- 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1101
- $postExpireOptions,
1102
- true
1103
- )
1104
- )
1105
- );
1106
- }
1107
- }
1108
- } elseif ($expireType === 'category-add') {
1109
- if (! empty($expireCategory)) {
1110
- if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1111
- $postCategories = wp_get_post_categories($id);
1112
- $mergedCategories = array_merge($postCategories, $expireCategory);
1113
- if (wp_update_post(array('ID' => $id, 'post_category' => $mergedCategories)) === 0) {
1114
- if (POSTEXPIRATOR_DEBUG) {
1115
- $debug->save(
1116
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
 
1117
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
  }
1119
  } else {
1120
- $emailBody = sprintf(
1121
- __(
1122
- '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been added: "%5$s". The full list of categories on the post are: "%6$s".',
1123
- 'post-expirator'
1124
- ),
1125
- '##POSTTITLE##',
1126
- '##POSTLINK##',
1127
- '##EXPIRATIONDATE##',
1128
- 'CATEGORIES',
1129
- implode(',', _postexpirator_get_cat_names($expireCategory)),
1130
- implode(',', _postexpirator_get_cat_names($mergedCategories))
1131
- );
1132
- if (POSTEXPIRATOR_DEBUG) {
1133
- $debug->save(
1134
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1135
- );
1136
- $debug->save(
1137
- array(
1138
- 'message' => $id . ' -> CATEGORIES ADDED ' . print_r(
1139
- _postexpirator_get_cat_names($expireCategory),
1140
- true
1141
- )
1142
- )
1143
- );
1144
- $debug->save(
1145
- array(
1146
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1147
- _postexpirator_get_cat_names($mergedCategories),
1148
- true
1149
- )
1150
- )
1151
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1152
  }
1153
-
1154
- $postWasExpired = true;
1155
  }
1156
  } else {
1157
- $terms = PostExpirator_Util::sanitize_array_of_integers($expireCategory);
1158
- if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, true))) {
1159
- if (POSTEXPIRATOR_DEBUG) {
1160
- $debug->save(
1161
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1162
- );
1163
- }
1164
- } else {
1165
- $emailBody = sprintf(
1166
- __(
1167
- '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been added: "%5$s". The full list of categories on the post are: "%6$s".',
1168
- 'post-expirator'
1169
- ),
1170
- '##POSTTITLE##',
1171
- '##POSTLINK##',
1172
- '##EXPIRATIONDATE##',
1173
- 'CATEGORIES',
1174
- implode(',', _postexpirator_get_cat_names($expireCategory)),
1175
- implode(',', _postexpirator_get_cat_names($terms))
1176
  );
1177
- if (POSTEXPIRATOR_DEBUG) {
1178
- $debug->save(
1179
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1180
- );
1181
- $debug->save(
1182
- array(
1183
- 'message' => $id . ' -> CATEGORIES ADDED ' . print_r(
1184
- _postexpirator_get_cat_names($expireCategory),
1185
- true
1186
- )
1187
- )
1188
- );
1189
- $debug->save(
1190
- array(
1191
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1192
- _postexpirator_get_cat_names($expireCategory),
1193
- true
1194
- )
1195
- )
1196
- );
1197
- }
1198
-
1199
- $postWasExpired = true;
1200
  }
1201
  }
1202
- } else {
1203
- if (POSTEXPIRATOR_DEBUG) {
1204
- $debug->save(
1205
- array(
1206
- 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1207
- $postExpireOptions,
1208
- true
1209
- )
1210
- )
1211
- );
1212
- }
1213
- }
1214
- } elseif ($expireType === 'category-remove') {
1215
- if (! empty($expireCategory)) {
1216
- if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1217
- $postCategories = wp_get_post_categories($id);
1218
- $mergedCategories = array();
1219
- foreach ($postCategories as $category) {
1220
- if (! in_array($category, $expireCategory, false)) {
1221
- $mergedCategories[] = $category;
1222
  }
1223
- }
1224
 
1225
- if (wp_update_post(array('ID' => $id, 'post_category' => $mergedCategories)) === 0) {
1226
- if (POSTEXPIRATOR_DEBUG) {
1227
- $debug->save(
1228
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1229
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1230
  }
1231
  } else {
1232
- $emailBody = sprintf(
1233
- __(
1234
- '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been removed: "%5$s". The full list of categories on the post are: "%6$s".',
1235
- 'post-expirator'
1236
- ),
1237
- '##POSTTITLE##',
1238
- '##POSTLINK##',
1239
- '##EXPIRATIONDATE##',
1240
- 'CATEGORIES',
1241
- implode(',', _postexpirator_get_cat_names($expireCategory)),
1242
- implode(',', _postexpirator_get_cat_names($mergedCategories))
1243
- );
1244
- if (POSTEXPIRATOR_DEBUG) {
1245
- $debug->save(
1246
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1247
- );
1248
- $debug->save(
1249
- array(
1250
- 'message' => $id . ' -> CATEGORIES REMOVED ' . print_r(
1251
- _postexpirator_get_cat_names($expireCategory),
1252
- true
1253
- )
1254
- )
1255
- );
1256
- $debug->save(
1257
- array(
1258
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1259
- _postexpirator_get_cat_names($mergedCategories),
1260
- true
1261
- )
1262
- )
1263
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1264
  }
1265
-
1266
- $postWasExpired = true;
1267
  }
1268
  } else {
1269
- $terms = wp_get_object_terms($id, $expireCategoryTaxonomy, array('fields' => 'ids'));
1270
- $mergedCategories = array();
1271
- foreach ($terms as $term) {
1272
- if (! in_array($term, $expireCategory, false)) {
1273
- $mergedCategories[] = $term;
1274
- }
1275
- }
1276
- $terms = PostExpirator_Util::sanitize_array_of_integers($mergedCategories);
1277
- if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, false))) {
1278
- if (POSTEXPIRATOR_DEBUG) {
1279
- $debug->save(
1280
- array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1281
- );
1282
- }
1283
- } else {
1284
- $emailBody = sprintf(
1285
- __(
1286
- '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been removed: "%5$s". The full list of categories on the post are: "%6$s".',
1287
- 'post-expirator'
1288
- ),
1289
- '##POSTTITLE##',
1290
- '##POSTLINK##',
1291
- '##EXPIRATIONDATE##',
1292
- 'CATEGORIES',
1293
- implode(',', _postexpirator_get_cat_names($expireCategory)),
1294
- implode(',', _postexpirator_get_cat_names($mergedCategories))
1295
  );
1296
- if (POSTEXPIRATOR_DEBUG) {
1297
- $debug->save(
1298
- array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1299
- );
1300
- $debug->save(
1301
- array(
1302
- 'message' => $id . ' -> CATEGORIES REMOVED ' . print_r(
1303
- _postexpirator_get_cat_names($expireCategory),
1304
- true
1305
- )
1306
- )
1307
- );
1308
- $debug->save(
1309
- array(
1310
- 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1311
- _postexpirator_get_cat_names($expireCategory),
1312
- true
1313
- )
1314
- )
1315
- );
1316
- }
1317
-
1318
- $postWasExpired = true;
1319
  }
1320
  }
1321
- } else {
1322
- if (POSTEXPIRATOR_DEBUG) {
1323
- $debug->save(
1324
- array(
1325
- 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1326
- $postExpireOptions,
1327
- true
1328
- )
1329
- )
1330
- );
1331
- }
1332
  }
1333
- }
1334
 
1335
- // Process Email
1336
- $emailEnabled = get_option('expirationdateEmailNotification', POSTEXPIRATOR_EMAILNOTIFICATION);
1337
-
1338
- // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1339
- if ($emailEnabled == 1 && isset($emailBody)) {
1340
- $emailSubject = sprintf(__('Post Expiration Complete "%s"', 'post-expirator'), $postTitle);
1341
- $emailBody = str_replace('##POSTTITLE##', $postTitle, $emailBody);
1342
- $emailBody = str_replace('##POSTLINK##', $postLink, $emailBody);
1343
- $emailBody = str_replace(
1344
- '##EXPIRATIONDATE##',
1345
- get_date_from_gmt(
1346
- gmdate('Y-m-d H:i:s', $expirationDate),
1347
- get_option('date_format') . ' ' . get_option('time_format')
1348
- ),
1349
- $emailBody
1350
- );
1351
 
1352
- $emailsToSend = array();
1353
- // Get Blog Admins
1354
- $blogAdmins = get_option('expirationdateEmailNotificationAdmins', POSTEXPIRATOR_EMAILNOTIFICATIONADMINS);
1355
  // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1356
- if ($blogAdmins == 1) {
1357
- $blogUsers = get_users('role=Administrator');
1358
- foreach ($blogUsers as $user) {
1359
- $emailsToSend[] = $user->user_email;
1360
- }
1361
- }
 
 
 
 
 
 
1362
 
1363
- // Get Global Notification Emails
1364
- $emailsList = get_option('expirationdateEmailNotificationList');
1365
- if (! empty($emailsList)) {
1366
- $values = explode(',', $emailsList);
1367
- foreach ($values as $value) {
1368
- $emailsToSend[] = trim($value);
 
 
 
1369
  }
1370
- }
1371
 
1372
- // Get Post Type Notification Emails
1373
- $defaults = get_option('expirationdateDefaults' . ucfirst($postType));
1374
- if (isset($defaults['emailnotification']) && ! empty($defaults['emailnotification'])) {
1375
- $values = explode(',', $defaults['emailnotification']);
1376
- foreach ($values as $value) {
1377
- $emailsToSend[] = trim($value);
 
1378
  }
1379
- }
1380
 
1381
- // Send Emails
1382
- foreach ($emailsToSend as $email) {
1383
- if (wp_mail($email, sprintf(__('[%1$s] %2$s'), get_option('blogname'), $emailSubject), $emailBody)) {
1384
- if (POSTEXPIRATOR_DEBUG) {
1385
- $debug->save(array('message' => $id . ' -> EXPIRATION EMAIL SENT (' . $email . ')'));
 
1386
  }
1387
- } else {
1388
- if (POSTEXPIRATOR_DEBUG) {
1389
- $debug->save(array('message' => $id . ' -> EXPIRATION EMAIL FAILED (' . $email . ')'));
 
 
 
 
 
 
 
 
 
1390
  }
1391
  }
1392
  }
 
 
 
 
1393
  }
1394
 
1395
- if (true === $postWasExpired) {
1396
- postexpirator_unschedule_event($id);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1397
  }
1398
- }
1399
 
1400
- add_action('postExpiratorExpire', 'postexpirator_expire_post');
1401
 
1402
- /**
1403
- * Internal method to get category names corresponding to the category IDs.
1404
- *
1405
- * @internal
1406
- *
1407
- * @access private
1408
- */
1409
- function _postexpirator_get_cat_names($cats)
1410
- {
1411
- $out = array();
1412
- foreach ($cats as $cat) {
1413
- $out[$cat] = get_the_category_by_id($cat);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1414
  }
1415
 
1416
- return $out;
1417
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1419
 
1420
- /**
1421
- * Show the menu.
1422
- *
1423
- * @internal
1424
- *
1425
- * @access private
1426
- */
1427
- function postexpirator_menu()
1428
- {
1429
- _deprecated_function(__FUNCTION__, '2.5');
1430
- }
1431
 
1432
- /**
1433
- * Hook's to add plugin page menu
1434
- *
1435
- * @internal
1436
- *
1437
- * @access private
1438
- */
1439
- function postexpirator_add_menu()
1440
- {
1441
- _deprecated_function(__FUNCTION__, '2.5');
1442
- }
1443
 
1444
- /**
1445
- * Show the Expiration Date options page
1446
- *
1447
- * @internal
1448
- *
1449
- * @access private
1450
- */
1451
- function postexpirator_menu_general()
1452
- {
1453
- _deprecated_function(__FUNCTION__, '2.5');
1454
- PostExpirator_Display::getInstance()->load_tab('general');
1455
- }
1456
 
1457
- /**
1458
- * The default menu.
1459
- *
1460
- * @internal
1461
- *
1462
- * @access private
1463
- */
1464
- function postexpirator_menu_defaults()
1465
- {
1466
- _deprecated_function(__FUNCTION__, '2.5');
1467
- PostExpirator_Display::getInstance()->load_tab('defaults');
1468
- }
1469
 
1470
- /**
1471
- * Diagnostics menu.
1472
- *
1473
- * @internal
1474
- *
1475
- * @access private
1476
- */
1477
- function postexpirator_menu_diagnostics()
1478
- {
1479
- _deprecated_function(__FUNCTION__, '2.5');
1480
- PostExpirator_Display::getInstance()->load_tab('diagnostics');
1481
- }
1482
 
1483
- /**
1484
- * Debug menu.
1485
- *
1486
- * @internal
1487
- *
1488
- * @access private
1489
- */
1490
- function postexpirator_menu_debug()
1491
- {
1492
- _deprecated_function(__FUNCTION__, '2.5');
1493
- PostExpirator_Display::getInstance()->load_tab('viewdebug');
1494
- }
1495
 
1496
- /**
1497
- * Register the shortcode.
1498
- *
1499
- * @internal
1500
- *
1501
- * @access private
1502
- */
1503
- function postexpirator_shortcode($atts)
1504
- {
1505
- global $post;
1506
-
1507
- $enabled = PostExpirator_Facade::is_expiration_enabled_for_post($post->ID);
1508
- $expirationdatets = get_post_meta($post->ID, '_expiration-date', true);
1509
- if (! $enabled || empty($expirationdatets)) {
1510
- return false;
1511
- }
1512
 
1513
- // @TODO remove extract
1514
- // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
1515
- extract(
1516
- shortcode_atts(
1517
- array(
1518
- 'dateformat' => get_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT),
1519
- 'timeformat' => get_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT),
1520
- 'type' => 'full',
1521
- 'tz' => date('T'),
1522
- ),
1523
- $atts
1524
- )
1525
- );
1526
-
1527
- if (empty($dateformat)) {
1528
- global $expirationdateDefaultDateFormat;
1529
- $dateformat = $expirationdateDefaultDateFormat;
1530
- }
1531
 
1532
- if (empty($timeformat)) {
1533
- global $expirationdateDefaultTimeFormat;
1534
- $timeformat = $expirationdateDefaultTimeFormat;
1535
- }
1536
 
1537
- if ($type === 'full') {
1538
- $format = $dateformat . ' ' . $timeformat;
1539
- } elseif ($type === 'date') {
1540
- $format = $dateformat;
1541
- } elseif ($type === 'time') {
1542
- $format = $timeformat;
1543
- }
1544
 
1545
- return PostExpirator_Util::get_wp_date($format, $expirationdatets);
1546
- }
 
 
1547
 
1548
- add_shortcode('postexpirator', 'postexpirator_shortcode');
 
 
 
1549
 
1550
- /**
1551
- * Add the footer.
1552
- *
1553
- * @internal
1554
- *
1555
- * @access private
1556
- */
1557
- function postexpirator_add_footer($text)
1558
- {
1559
- global $post;
1560
-
1561
- // Check to see if its enabled
1562
- $displayFooter = get_option('expirationdateDisplayFooter');
1563
-
1564
- // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1565
- if ($displayFooter === false || $displayFooter == 0) {
1566
- return $text;
1567
- }
1568
 
1569
- $enabled = PostExpirator_Facade::is_expiration_enabled_for_post($post->ID);
 
 
 
 
1570
 
1571
- if (empty($enabled)) {
1572
- return $text;
1573
  }
1574
 
1575
- $expirationdatets = get_post_meta($post->ID, '_expiration-date', true);
1576
- if (! is_numeric($expirationdatets)) {
1577
- return $text;
1578
- }
1579
 
1580
- $dateformat = get_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT);
1581
- $timeformat = get_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT);
1582
- $expirationdateFooterContents = get_option('expirationdateFooterContents', POSTEXPIRATOR_FOOTERCONTENTS);
1583
- $expirationdateFooterStyle = get_option('expirationdateFooterStyle', POSTEXPIRATOR_FOOTERSTYLE);
1584
-
1585
- $search = array(
1586
- 'EXPIRATIONFULL',
1587
- 'EXPIRATIONDATE',
1588
- 'EXPIRATIONTIME',
1589
- );
1590
-
1591
- $replace = array(
1592
- PostExpirator_Util::get_wp_date("$dateformat $timeformat", $expirationdatets),
1593
- PostExpirator_Util::get_wp_date($dateformat, $expirationdatets),
1594
- PostExpirator_Util::get_wp_date($timeformat, $expirationdatets)
1595
- );
1596
-
1597
- $add_to_footer = '<p style="' . $expirationdateFooterStyle . '">' . str_replace(
1598
- $search,
1599
- $replace,
1600
- $expirationdateFooterContents
1601
- ) . '</p>';
1602
-
1603
- return $text . $add_to_footer;
1604
- }
1605
 
1606
- add_action('the_content', 'postexpirator_add_footer', 0);
 
 
 
 
1607
 
1608
- /**
1609
- * Check for Debug
1610
- *
1611
- * @internal
1612
- *
1613
- * @access private
1614
- */
1615
- function postexpirator_debug()
1616
- {
1617
- $debug = get_option('expirationdateDebug');
1618
- // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1619
- if ($debug == 1) {
1620
- if (! defined('POSTEXPIRATOR_DEBUG')) {
1621
- define('POSTEXPIRATOR_DEBUG', 1);
1622
- }
1623
- require_once(POSTEXPIRATOR_BASEDIR . '/post-expirator-debug.php'); // Load Class
1624
-
1625
- return new PostExpiratorDebug();
1626
- } else {
1627
- if (! defined('POSTEXPIRATOR_DEBUG')) {
1628
- define('POSTEXPIRATOR_DEBUG', 0);
1629
  }
1630
-
1631
- return false;
1632
  }
1633
- }
1634
 
1635
 
1636
- /**
1637
- * Add Stylesheet
1638
- *
1639
- * @internal
1640
- *
1641
- * @access private
1642
- */
1643
- function postexpirator_css($screen_id)
1644
- {
1645
- switch ($screen_id) {
1646
- case 'post.php':
1647
- case 'post-new.php':
1648
- case 'settings_page_post-expirator':
1649
- wp_enqueue_style(
1650
- 'postexpirator-css',
1651
- POSTEXPIRATOR_BASEURL . '/assets/css/style.css',
1652
- array(),
1653
- POSTEXPIRATOR_VERSION
1654
- );
1655
- break;
1656
- case 'edit.php':
1657
- wp_enqueue_style(
1658
- 'postexpirator-edit',
1659
- POSTEXPIRATOR_BASEURL . '/assets/css/edit.css',
1660
- array(),
1661
- POSTEXPIRATOR_VERSION
1662
- );
1663
- break;
 
1664
  }
1665
- }
1666
 
1667
- add_action('admin_enqueue_scripts', 'postexpirator_css', 10, 1);
1668
 
1669
- /**
1670
- * PublishPress Future Activation/Upgrade
1671
- *
1672
- * @internal
1673
- *
1674
- * @access private
1675
- */
1676
- function postexpirator_upgrade()
1677
- {
1678
- // Check for current version, if not exists, run activation
1679
- $version = get_option('postexpiratorVersion');
1680
- if ($version === false) { // not installed, run default activation
1681
- postexpirator_activate();
1682
- update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1683
- } else {
1684
- if (version_compare($version, '1.6.1') === -1) {
1685
  update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1686
- update_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
1687
- }
 
 
 
1688
 
1689
- if (version_compare($version, '1.6.2') === -1) {
1690
- update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1691
- }
1692
 
1693
- if (version_compare($version, '2.0.0-rc1') === -1) {
1694
- global $wpdb;
1695
 
1696
- // Schedule Events/Migrate Config
1697
- $results = $wpdb->get_results(
1698
- $wpdb->prepare(
1699
- 'select post_id, meta_value from ' . $wpdb->postmeta . ' as postmeta, ' . $wpdb->posts . ' as posts where postmeta.post_id = posts.ID AND postmeta.meta_key = %s AND postmeta.meta_value >= %d',
1700
- 'expiration-date',
1701
- time()
1702
- )
1703
- );
1704
- foreach ($results as $result) {
1705
- wp_schedule_single_event($result->meta_value, 'postExpiratorExpire', array($result->post_id));
1706
- $opts = array();
1707
- $opts['id'] = $result->post_id;
1708
- $posttype = get_post_type($result->post_id);
1709
- if ($posttype === 'page') {
1710
- $opts['expireType'] = strtolower(get_option('expirationdateExpiredPageStatus', 'Draft'));
1711
- } else {
1712
- $opts['expireType'] = strtolower(get_option('expirationdateExpiredPostStatus', 'Draft'));
1713
- }
 
 
 
 
 
 
1714
 
1715
- $cat = get_post_meta($result->post_id, '_expiration-date-category', true);
1716
- if ((isset($cat) && ! empty($cat))) {
1717
- $opts['category'] = $cat;
1718
- $opts['expireType'] = 'category';
1719
  }
1720
 
1721
- PostExpirator_Facade::set_expire_principles($result->post_id, $opts);
1722
- }
 
 
 
 
 
 
1723
 
1724
- // update meta key to new format
1725
- $wpdb->query(
1726
- $wpdb->prepare(
1727
- "UPDATE $wpdb->postmeta SET meta_key = %s WHERE meta_key = %s",
1728
- '_expiration-date',
1729
- 'expiration-date'
1730
- )
1731
- );
 
1732
 
1733
- // migrate defaults
1734
- $pagedefault = get_option('expirationdateExpiredPageStatus');
1735
- $postdefault = get_option('expirationdateExpiredPostStatus');
1736
- if ($pagedefault) {
1737
- update_option('expirationdateDefaultsPage', array('expireType' => $pagedefault));
1738
- }
1739
- if ($postdefault) {
1740
- update_option('expirationdateDefaultsPost', array('expireType' => $postdefault));
1741
  }
1742
 
1743
- delete_option('expirationdateCronSchedule');
1744
- delete_option('expirationdateAutoEnabled');
1745
- delete_option('expirationdateExpiredPageStatus');
1746
- delete_option('expirationdateExpiredPostStatus');
1747
- update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1748
- }
 
 
1749
 
1750
- if (version_compare($version, '2.0.1') === -1) {
1751
- // Forgot to do this in 2.0.0
1752
- if (is_multisite()) {
1753
- global $current_blog;
1754
- wp_clear_scheduled_hook('expirationdate_delete_' . $current_blog->blog_id);
1755
- } else {
1756
- wp_clear_scheduled_hook('expirationdate_delete');
1757
  }
1758
 
1759
  update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1760
  }
1761
-
1762
- update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1763
- }
1764
- }
1765
-
1766
- add_action('admin_init', 'postexpirator_upgrade');
1767
-
1768
- /**
1769
- * Called at plugin activation
1770
- *
1771
- * @internal
1772
- *
1773
- * @access private
1774
- */
1775
- function postexpirator_activate()
1776
- {
1777
- if (get_option('expirationdateDefaultDateFormat') === false) {
1778
- update_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT);
1779
- }
1780
- if (get_option('expirationdateDefaultTimeFormat') === false) {
1781
- update_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT);
1782
- }
1783
- if (get_option('expirationdateFooterContents') === false) {
1784
- update_option('expirationdateFooterContents', POSTEXPIRATOR_FOOTERCONTENTS);
1785
- }
1786
- if (get_option('expirationdateFooterStyle') === false) {
1787
- update_option('expirationdateFooterStyle', POSTEXPIRATOR_FOOTERSTYLE);
1788
- }
1789
- if (get_option('expirationdateDisplayFooter') === false) {
1790
- update_option('expirationdateDisplayFooter', POSTEXPIRATOR_FOOTERDISPLAY);
1791
- }
1792
- if (get_option('expirationdateDebug') === false) {
1793
- update_option('expirationdateDebug', POSTEXPIRATOR_DEBUGDEFAULT);
1794
- }
1795
- if (get_option('expirationdateDefaultDate') === false) {
1796
- update_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
1797
- }
1798
- if (get_option('expirationdateGutenbergSupport') === false) {
1799
- update_option('expirationdateGutenbergSupport', 1);
1800
- }
1801
- }
1802
-
1803
- /**
1804
- * Called at plugin deactivation
1805
- *
1806
- * @internal
1807
- *
1808
- * @access private
1809
- */
1810
- function expirationdate_deactivate()
1811
- {
1812
- $preserveData = (bool)get_option('expirationdatePreserveData', true);
1813
-
1814
- if ($preserveData) {
1815
- return;
1816
- }
1817
-
1818
- delete_option('expirationdateExpiredPostStatus');
1819
- delete_option('expirationdateExpiredPageStatus');
1820
- delete_option('expirationdateDefaultDateFormat');
1821
- delete_option('expirationdateDefaultTimeFormat');
1822
- delete_option('expirationdateDisplayFooter');
1823
- delete_option('expirationdateFooterContents');
1824
- delete_option('expirationdateFooterStyle');
1825
- delete_option('expirationdateCategory');
1826
- delete_option('expirationdateCategoryDefaults');
1827
- delete_option('expirationdateDebug');
1828
- delete_option('postexpiratorVersion');
1829
- delete_option('expirationdateCronSchedule');
1830
- delete_option('expirationdateDefaultDate');
1831
- delete_option('expirationdateDefaultDateCustom');
1832
- delete_option('expirationdateAutoEnabled');
1833
- delete_option('expirationdateDefaultsPage');
1834
- delete_option('expirationdateDefaultsPost');
1835
- delete_option('expirationdateGutenbergSupport');
1836
- delete_option('expirationdatePreserveData');
1837
-
1838
- // what about custom post types? - how to clean up?
1839
- if (is_multisite()) {
1840
- global $current_blog;
1841
-
1842
- wp_clear_scheduled_hook('expirationdate_delete_' . $current_blog->blog_id);
1843
- } else {
1844
- wp_clear_scheduled_hook('expirationdate_delete');
1845
  }
1846
- require_once(POSTEXPIRATOR_BASEDIR . '/post-expirator-debug.php');
1847
- $debug = new PostExpiratorDebug();
1848
- $debug->removeDbTable();
1849
- }
1850
-
1851
- register_deactivation_hook(__FILE__, 'expirationdate_deactivate');
1852
-
1853
- /**
1854
- * The walker class for category checklist.
1855
- *
1856
- * @internal
1857
- *
1858
- * @access private
1859
- */
1860
- class Walker_PostExpirator_Category_Checklist extends Walker
1861
- {
1862
 
1863
- /**
1864
- * What the class handles.
1865
- *
1866
- * @var string
1867
- */
1868
- public $tree_type = 'category';
1869
 
1870
  /**
1871
- * DB fields to use.
1872
  *
1873
- * @var array
1874
- */
1875
- public $db_fields = array('parent' => 'parent', 'id' => 'term_id'); // TODO: decouple this
1876
-
1877
- /**
1878
- * The disabled attribute.
1879
  *
1880
- * @var string
1881
- */
1882
- public $disabled = '';
1883
-
1884
- /**
1885
- * Set the disabled attribute.
1886
  */
1887
- public function setDisabled()
1888
  {
1889
- $this->disabled = 'disabled="disabled"';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1890
  }
1891
 
1892
  /**
1893
- * Starts the list before the elements are added.
1894
  *
1895
- * The $args parameter holds additional values that may be used with the child
1896
- * class methods. This method is called at the start of the output list.
1897
  *
1898
- * @param string $output Used to append additional content (passed by reference).
1899
- * @param int $depth Depth of the item.
1900
- * @param array $args An array of additional arguments.
1901
  */
1902
- public function start_lvl(&$output, $depth = 0, $args = array())
1903
  {
1904
- $indent = str_repeat("\t", $depth);
1905
- $output .= "$indent<ul class='children'>\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1906
  }
1907
 
 
 
1908
  /**
1909
- * Ends the list of after the elements are added.
1910
  *
1911
- * The $args parameter holds additional values that may be used with the child
1912
- * class methods. This method finishes the list at the end of output of the elements.
1913
  *
1914
- * @param string $output Used to append additional content (passed by reference).
1915
- * @param int $depth Depth of the item.
1916
- * @param array $args An array of additional arguments.
1917
  */
1918
- public function end_lvl(&$output, $depth = 0, $args = array())
1919
  {
1920
- $indent = str_repeat("\t", $depth);
1921
- $output .= "$indent</ul>\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1922
  }
1923
 
1924
  /**
1925
- * Start the element output.
1926
  *
1927
- * The $args parameter holds additional values that may be used with the child
1928
- * class methods. Includes the element output also.
1929
  *
1930
- * @param string $output Used to append additional content (passed by reference).
1931
- * @param object $category The data object.
1932
- * @param int $depth Depth of the item.
1933
- * @param array $args An array of additional arguments.
1934
- * @param int $current_object_id ID of the current item.
1935
  */
1936
- public function start_el(&$output, $category, $depth = 0, $args = array(), $current_object_id = 0)
1937
  {
1938
- // @TODO remove extract
1939
- // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
1940
- extract($args);
1941
- if (empty($taxonomy)) {
1942
- $taxonomy = 'category';
1943
  }
1944
 
1945
- $name = 'expirationdate_category';
1946
-
1947
- $class = in_array($category->term_id, $popular_cats, true) ? ' class="expirator-category"' : '';
1948
- $output .= "\n<li id='expirator-{$taxonomy}-{$category->term_id}'$class>" . '<label class="selectit"><input value="' . $category->term_id . '" type="checkbox" name="' . $name . '[]" id="expirator-in-' . $taxonomy . '-' . $category->term_id . '"' . checked(
1949
- in_array($category->term_id, $selected_cats, true),
1950
- true,
1951
- false
1952
- ) . disabled(empty($args['disabled']), false, false) . ' ' . $this->disabled . '/> ' . esc_html(
1953
- apply_filters('the_category', $category->name)
1954
- ) . '</label>';
1955
  }
1956
 
1957
  /**
1958
- * Ends the element output, if needed.
1959
  *
1960
- * The $args parameter holds additional values that may be used with the child class methods.
1961
  *
1962
- * @param string $output Used to append additional content (passed by reference).
1963
- * @param object $category The data object.
1964
- * @param int $depth Depth of the item.
1965
- * @param array $args An array of additional arguments.
1966
  */
1967
- public function end_el(&$output, $category, $depth = 0, $args = array())
1968
  {
1969
- $output .= "</li>\n";
1970
- }
1971
- }
1972
 
1973
- /**
1974
- * Get the HTML for expire type.
1975
- *
1976
- * @internal
1977
- *
1978
- * @access private
1979
- */
1980
- function _postexpirator_expire_type($opts)
1981
- {
1982
- if (empty($opts)) {
1983
- return false;
1984
- }
1985
 
1986
- PostExpirator_Display::getInstance()->render_template('how-to-expire', array('opts' => $opts));
1987
- }
1988
 
1989
- /**
1990
- * Get the HTML for taxonomy.
1991
- *
1992
- * @internal
1993
- *
1994
- * @access private
1995
- */
1996
- function _postexpirator_taxonomy($opts)
1997
- {
1998
- if (empty($opts)) {
1999
- return false;
2000
- }
2001
 
2002
- // @TODO remove extract
2003
- // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
2004
- extract($opts);
2005
- if (! isset($name)) {
2006
- return false;
2007
- }
2008
- if (! isset($id)) {
2009
- $id = $name;
2010
- }
2011
- if (! isset($disabled)) {
2012
  $disabled = false;
2013
- }
2014
- if (! isset($onchange)) {
 
 
2015
  $onchange = '';
2016
- }
2017
- if (! isset($type)) {
 
 
2018
  $type = '';
2019
- }
 
 
2020
 
2021
- $taxonomies = get_object_taxonomies($type, 'object');
2022
- $taxonomies = wp_filter_object_list($taxonomies, array('hierarchical' => true));
 
 
2023
 
2024
- if (empty($taxonomies)) {
2025
- $disabled = true;
2026
- }
 
 
 
 
 
 
 
2027
 
2028
- $rv = array();
2029
- if ($taxonomies) {
2030
- // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
2031
- $rv[] = '<select name="' . esc_attr($name) . '" id="' . esc_attr($id) . '"' . ($disabled == true ? ' disabled="disabled"' : '') . ' onchange="' . esc_attr($onchange) . '">';
2032
  foreach ($taxonomies as $taxonomy) {
2033
- $rv[] = '<option value="' . esc_attr($taxonomy->name) . '" ' . ($selected === esc_attr($taxonomy->name) ? 'selected="selected"' : '') . '>' . esc_html($taxonomy->label) . '</option>';
2034
  }
2035
 
2036
- $rv[] = '</select>';
2037
- $rv[] = '<p class="description">' . esc_html(
2038
  'Select the hierarchical taxonomy to be used for "category" based expiration.',
2039
  'post-expirator'
2040
  ) . '</p>';
2041
- } else {
2042
- $rv[] = esc_html__('No taxonomies found', 'post-expirator');
2043
  }
2044
 
2045
- return implode("<br/>\n", $rv);
2046
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2047
 
2048
- /**
2049
- * Include the JS.
2050
- *
2051
- * @internal
2052
- *
2053
- * @access private
2054
- */
2055
- function postexpirator_quickedit_javascript()
2056
- {
2057
- // if using code as plugin
2058
- wp_enqueue_script('postexpirator-edit', POSTEXPIRATOR_BASEURL . '/assets/js/admin-edit.js', array(
2059
- 'jquery',
2060
- 'inline-edit-post'
2061
- ), POSTEXPIRATOR_VERSION, true);
2062
- wp_localize_script(
2063
- 'postexpirator-edit', 'config', array(
2064
- 'ajax' => array(
2065
- 'nonce' => wp_create_nonce(POSTEXPIRATOR_SLUG),
2066
- 'bulk_edit' => 'manage_wp_posts_using_bulk_quick_save_bulk_edit',
2067
- ),
2068
- )
2069
- );
2070
- }
2071
 
2072
- add_action('admin_print_scripts-edit.php', 'postexpirator_quickedit_javascript');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2073
 
2074
- /**
2075
- * Receives AJAX call from bulk edit to process save.
2076
- *
2077
- * @internal
2078
- *
2079
- * @access private
2080
- */
2081
- function postexpirator_date_save_bulk_edit()
2082
- {
2083
- check_ajax_referer(POSTEXPIRATOR_SLUG, 'nonce');
2084
-
2085
- $facade = PostExpirator_Facade::getInstance();
2086
-
2087
- if (! $facade->current_user_can_expire_posts()) {
2088
- wp_die(
2089
- esc_html__('You\'re not allowed to set posts to expire', 'post-expirator'),
2090
- esc_html__('Forbidden', 'post-expirator'),
2091
- 403
2092
- );
2093
- }
2094
 
2095
- $status = sanitize_key($_POST['expirationdate_status']);
2096
- // if no change, do nothing
2097
- if ($status === 'no-change') {
2098
- return;
2099
- }
2100
 
2101
- // we need the post IDs
2102
- $post_ids = (isset($_POST['post_ids']) && ! empty($_POST['post_ids']))
2103
- ? PostExpirator_Util::sanitize_array_of_integers($_POST['post_ids']) : null;
2104
 
2105
- // if we have post IDs
2106
- if (! empty($post_ids) && is_array($post_ids)) {
2107
- $post_type = get_post_type($post_ids[0]);
2108
 
2109
- $defaults = PostExpirator_Facade::get_default_expiry($post_type);
2110
 
2111
- $year = intval('' === $_POST['expirationdate_year'] ? $defaults['year'] : $_POST['expirationdate_year']);
2112
- $month = intval('' === $_POST['expirationdate_month'] ? $defaults['month'] : $_POST['expirationdate_month']);
2113
- $day = intval('' === $_POST['expirationdate_day'] ? $defaults['day'] : $_POST['expirationdate_day']);
2114
- $hour = intval('' === $_POST['expirationdate_hour'] ? $defaults['hour'] : $_POST['expirationdate_hour']);
2115
- $minute = intval(
2116
- '' === $_POST['expirationdate_minute'] ? $defaults['minute'] : $_POST['expirationdate_minute']
2117
- );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2118
 
2119
- $ts = get_gmt_from_date("$year-$month-$day $hour:$minute:0", 'U');
2120
 
2121
- if (! $ts) {
2122
  return;
2123
  }
2124
 
2125
- foreach ($post_ids as $post_id) {
2126
- $ed = get_post_meta($post_id, '_expiration-date', true);
2127
- $update_expiry = false;
2128
-
2129
- switch ($status) {
2130
- case 'change-only':
2131
- $update_expiry = ! empty($ed);
2132
- break;
2133
- case 'add-only':
2134
- $update_expiry = empty($ed);
2135
- break;
2136
- case 'change-add':
2137
- $update_expiry = true;
2138
- break;
2139
- case 'remove-only':
2140
- delete_post_meta($post_id, '_expiration-date');
2141
- postexpirator_unschedule_event($post_id);
2142
- break;
2143
  }
2144
 
2145
- if ($update_expiry) {
2146
- $opts = PostExpirator_Facade::get_expire_principles($post_id);
2147
- $opts['expireType'] = sanitize_key($_POST['expirationdate_expiretype']);
 
 
 
 
 
2148
 
2149
  if (in_array($opts['expireType'], array('category', 'category-add', 'category-remove'), true)) {
2150
- $opts['category'] = PostExpirator_Util::sanitize_array_of_integers($_POST['expirationdate_category']);
2151
  }
2152
 
2153
- PostExpirator_Facade::set_expire_principles($post_id, $opts);
2154
- update_post_meta($post_id, '_expiration-date', $ts);
2155
- postexpirator_schedule_event($post_id, $ts, $opts);
2156
  }
2157
  }
2158
  }
2159
- }
2160
 
2161
- add_action('wp_ajax_manage_wp_posts_using_bulk_quick_save_bulk_edit', 'postexpirator_date_save_bulk_edit');
2162
 
2163
- /**
2164
- * Autoloads the classes.
2165
- */
2166
- function postexpirator_autoload($class)
2167
- {
2168
- $namespaces = array('PostExpirator');
2169
- foreach ($namespaces as $namespace) {
2170
- if (substr($class, 0, strlen($namespace)) === $namespace) {
2171
- $class = str_replace('_', '', strstr($class, '_'));
2172
- $filename = POSTEXPIRATOR_BASEDIR . '/classes/' . sprintf('%s.class.php', $class);
2173
- if (is_readable($filename)) {
2174
- require_once $filename;
2175
-
2176
- return true;
 
2177
  }
2178
  }
 
 
2179
  }
2180
 
2181
- return false;
2182
- }
2183
 
2184
- spl_autoload_register('postexpirator_autoload');
 
 
 
 
 
 
2185
 
2186
- /**
2187
- * Launch the plugin by initializing its helpers.
2188
- */
2189
- function postexpirator_launch()
2190
- {
2191
- PostExpirator_Facade::getInstance();
2192
  }
2193
-
2194
- postexpirator_launch();
4
  * Plugin URI: http://wordpress.org/extend/plugins/post-expirator/
5
  * Description: Allows you to add an expiration date (minute) to posts which you can configure to either delete the post, change it to a draft, or update the post categories at expiration time.
6
  * Author: PublishPress
7
+ * Version: 2.7.4
8
  * Author URI: http://publishpress.com
9
  * Text Domain: post-expirator
10
  * Domain Path: /languages
11
  */
12
 
13
+ $includeFilebRelativePath = '/publishpress/publishpress-instance-protection/include.php';
14
+ if (file_exists(__DIR__ . '/vendor' . $includeFilebRelativePath)) {
15
+ require_once __DIR__ . '/vendor' . $includeFilebRelativePath;
16
+ } else if (defined('POSTEXPIRATOR_VENDOR_PATH') && file_exists(POSTEXPIRATOR_VENDOR_PATH . $includeFilebRelativePath)) {
17
+ require_once POSTEXPIRATOR_VENDOR_PATH . $includeFilebRelativePath;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  }
19
 
20
+ if (class_exists('PublishPressInstanceProtection\\Config')) {
21
+ $pluginCheckerConfig = new PublishPressInstanceProtection\Config();
22
+ $pluginCheckerConfig->pluginSlug = 'post-expirator';
23
+ $pluginCheckerConfig->pluginName = 'PublishPress Future';
 
 
 
 
 
 
 
 
 
24
 
25
+ $pluginChecker = new PublishPressInstanceProtection\InstanceChecker($pluginCheckerConfig);
26
  }
27
 
28
+ if (! defined('POSTEXPIRATOR_LOADED')) {
29
+ // Default Values
30
+ define('POSTEXPIRATOR_VERSION', '2.7.4');
31
+ define('POSTEXPIRATOR_DATEFORMAT', __('l F jS, Y', 'post-expirator'));
32
+ define('POSTEXPIRATOR_TIMEFORMAT', __('g:ia', 'post-expirator'));
33
+ define('POSTEXPIRATOR_FOOTERCONTENTS', __('Post expires at EXPIRATIONTIME on EXPIRATIONDATE', 'post-expirator'));
34
+ define('POSTEXPIRATOR_FOOTERSTYLE', 'font-style: italic;');
35
+ define('POSTEXPIRATOR_FOOTERDISPLAY', '0');
36
+ define('POSTEXPIRATOR_EMAILNOTIFICATION', '0');
37
+ define('POSTEXPIRATOR_EMAILNOTIFICATIONADMINS', '0');
38
+ define('POSTEXPIRATOR_DEBUGDEFAULT', '0');
39
+ define('POSTEXPIRATOR_EXPIREDEFAULT', 'null');
40
+ define('POSTEXPIRATOR_SLUG', 'post-expirator');
41
+ define('POSTEXPIRATOR_BASEDIR', dirname(__FILE__));
42
+ define('POSTEXPIRATOR_BASENAME', basename(__FILE__));
43
+ define('POSTEXPIRATOR_BASEURL', plugins_url('/', __FILE__));
44
+ define('POSTEXPIRATOR_LOADED', true);
45
+
46
+ require_once POSTEXPIRATOR_BASEDIR . '/functions.php';
47
+
48
+ $autoloadPath = POSTEXPIRATOR_BASEDIR . '/vendor/autoload.php';
49
+ if (false === class_exists('PublishPressFuture\\DummyForAutoloadDetection')
50
+ && true === file_exists($autoloadPath)
51
+ ) {
52
+ include_once $autoloadPath;
53
  }
54
 
55
+ /**
56
+ * Adds links to the plugin listing screen.
57
+ *
58
+ * @internal
59
+ *
60
+ * @access private
61
+ */
62
+ function postexpirator_plugin_action_links($links, $file)
63
+ {
64
+ $this_plugin = basename(plugin_dir_url(__FILE__)) . '/post-expirator.php';
65
+ if ($file === $this_plugin) {
66
+ $links[] = '<a href="admin.php?page=publishpress-future">' . __('Settings', 'post-expirator') . '</a>';
67
+ }
68
 
69
+ return $links;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
 
72
+ add_filter('plugin_action_links', 'postexpirator_plugin_action_links', 10, 2);
 
 
 
73
 
74
+ /**
75
+ * Load translation, if it exists.
76
+ *
77
+ * @internal
78
+ *
79
+ * @access private
80
+ */
81
+ function postexpirator_init()
82
+ {
83
+ $plugin_dir = plugin_basename(__DIR__);
84
+ load_plugin_textdomain('post-expirator', null, $plugin_dir . '/languages/');
 
 
 
85
 
86
+ PostExpirator_Reviews::init();
87
 
88
+ if (class_exists('WP_CLI')) {
89
+ PostExpirator_Cli::getInstance();
90
+ }
 
 
 
 
 
 
 
 
 
 
91
 
92
+ add_action('wp_insert_post', 'postexpirator_set_default_meta_for_post', 10, 3);
 
 
 
 
 
 
 
 
 
 
93
  }
94
 
95
+ add_action('plugins_loaded', 'postexpirator_init');
96
 
97
+ /**
98
+ * Adds an 'Expires' column to the post display table.
99
+ *
100
+ * @internal
101
+ *
102
+ * @access private
103
+ */
104
+ function postexpirator_add_column($columns, $type)
105
+ {
106
+ $defaults = get_option('expirationdateDefaults' . ucfirst($type));
107
+ // if settings are not configured, show the metabox by default only for posts and pages
108
+ if ((! isset($defaults['activeMetaBox']) && in_array($type, array(
109
+ 'post',
110
+ 'page'
111
+ ), true)) || (is_array(
112
+ $defaults
113
+ ) && $defaults['activeMetaBox'] === 'active')) {
114
+ $columns['expirationdate'] = __('Expires', 'post-expirator');
115
+ }
116
+
117
+ return $columns;
118
  }
 
119
 
120
+ add_filter('manage_posts_columns', 'postexpirator_add_column', 10, 2);
121
 
122
+ /**
123
+ * Adds sortable columns.
124
+ *
125
+ * @internal
126
+ *
127
+ * @access private
128
+ */
129
+ function postexpirator_manage_sortable_columns()
130
+ {
131
+ $post_types = postexpirator_get_post_types();
132
+ foreach ($post_types as $post_type) {
133
+ add_filter('manage_edit-' . $post_type . '_sortable_columns', 'postexpirator_sortable_column');
134
+ }
135
  }
136
 
137
+ add_action('admin_init', 'postexpirator_manage_sortable_columns', 100);
 
138
 
139
+ /**
140
+ * Adds an 'Expires' column to the post display table.
141
+ *
142
+ * @internal
143
+ *
144
+ * @access private
145
+ */
146
+ function postexpirator_sortable_column($columns)
147
+ {
148
+ $columns['expirationdate'] = 'expirationdate';
149
 
150
+ return $columns;
 
 
 
 
 
 
 
 
 
 
151
  }
152
 
153
+ /**
154
+ * Modify the sorting of posts.
155
+ *
156
+ * @internal
157
+ *
158
+ * @access private
159
+ */
160
+ function postexpirator_orderby($query)
161
+ {
162
+ if (! is_admin()) {
163
+ return;
164
+ }
165
+
166
+ $orderby = $query->get('orderby');
167
 
168
+ if ('expirationdate' === $orderby) {
169
+ $query->set(
170
+ 'meta_query', array(
171
+ 'relation' => 'OR',
172
+ array(
173
+ 'key' => '_expiration-date',
174
+ 'compare' => 'EXISTS',
175
+ ),
176
+ array(
177
+ 'key' => '_expiration-date',
178
+ 'compare' => 'NOT EXISTS',
179
+ 'value' => '',
180
+ ),
181
+ )
182
+ );
183
+ $query->set('orderby', 'meta_value_num');
184
+ }
185
+ }
186
 
187
+ add_action('pre_get_posts', 'postexpirator_orderby');
 
188
 
189
+ /**
190
+ * Adds an 'Expires' column to the page display table.
191
+ *
192
+ * @internal
193
+ *
194
+ * @access private
195
+ */
196
+ function postexpirator_add_column_page($columns)
197
+ {
198
+ $defaults = get_option('expirationdateDefaultsPage');
199
+ if (! isset($defaults['activeMetaBox']) || $defaults['activeMetaBox'] === 'active') {
200
+ $columns['expirationdate'] = __('Expires', 'post-expirator');
201
+ }
202
 
203
+ return $columns;
 
 
 
 
 
 
 
 
 
 
204
  }
205
 
206
+ add_filter('manage_pages_columns', 'postexpirator_add_column_page');
207
 
208
+ /**
209
+ * Fills the 'Expires' column of the post display table.
210
+ *
211
+ * @internal
212
+ *
213
+ * @access private
214
+ */
215
+ function postexpirator_show_value($column_name)
216
+ {
217
+ if ($column_name !== 'expirationdate') {
218
+ return;
219
+ }
220
 
221
+ global $post;
 
 
222
 
223
+ // get the attributes that quick edit functionality requires
224
+ // and save it as a JSON encoded HTML attribute
225
+ $attributes = PostExpirator_Facade::get_expire_principles($post->ID);
226
+ PostExpirator_Display::getInstance()->render_template('expire-column', array(
227
+ 'id' => $post->ID,
228
+ 'post_type' => $post->post_type,
229
+ 'attributes' => $attributes
230
+ ));
231
  }
232
 
233
+ add_action('manage_posts_custom_column', 'postexpirator_show_value');
234
+ add_action('manage_pages_custom_column', 'postexpirator_show_value');
 
 
235
 
 
 
 
 
 
 
236
 
237
+ /**
238
+ * Quick Edit functionality.
239
+ *
240
+ * @internal
241
+ *
242
+ * @access private
243
+ */
244
+ function postexpirator_quickedit($column_name, $post_type)
245
+ {
246
+ if ($column_name !== 'expirationdate') {
247
+ return;
248
+ }
249
 
250
+ $facade = PostExpirator_Facade::getInstance();
 
 
 
 
 
 
 
 
 
 
 
251
 
252
+ if (! $facade->current_user_can_expire_posts()) {
253
+ return;
254
+ }
255
 
256
+ $defaults = get_option('expirationdateDefaults' . ucfirst($post_type));
257
+ $taxonomy = isset($defaults['taxonomy']) ? $defaults['taxonomy'] : '';
258
+ $label = '';
259
 
260
+ // if settings have not been configured and this is the default post type
261
+ if (empty($taxonomy) && 'post' === $post_type) {
262
+ $taxonomy = 'category';
263
+ }
264
 
265
+ if (! empty($taxonomy)) {
266
+ $tax_object = get_taxonomy($taxonomy);
267
+ $label = $tax_object ? $tax_object->label : '';
268
+ }
269
 
270
+ PostExpirator_Display::getInstance()->render_template('quick-edit', array(
271
+ 'post_type' => $post_type,
272
+ 'taxonomy' => $taxonomy,
273
+ 'tax_label' => $label
274
+ ));
275
  }
276
 
277
+ add_action('quick_edit_custom_box', 'postexpirator_quickedit', 10, 2);
 
 
 
 
 
 
 
278
 
279
+ /**
280
+ * Bulk Edit functionality.
281
+ *
282
+ * @internal
283
+ *
284
+ * @access private
285
+ */
286
+ function postexpirator_bulkedit($column_name, $post_type)
287
+ {
288
+ if ($column_name !== 'expirationdate') {
289
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  }
 
291
 
292
+ $facade = PostExpirator_Facade::getInstance();
 
293
 
294
+ if (! $facade->current_user_can_expire_posts()) {
295
+ return;
296
+ }
 
 
 
 
 
 
 
 
 
 
 
297
 
298
+ $defaults = get_option('expirationdateDefaults' . ucfirst($post_type));
299
+ $taxonomy = isset($defaults['taxonomy']) ? $defaults['taxonomy'] : '';
300
+ $label = '';
301
+
302
+ // if settings have not been configured and this is the default post type
303
+ if (empty($taxonomy) && 'post' === $post_type) {
304
+ $taxonomy = 'category';
 
 
 
 
 
 
 
 
 
 
 
 
305
  }
 
 
306
 
307
+ if (! empty($taxonomy)) {
308
+ $tax_object = get_taxonomy($taxonomy);
309
+ $label = $tax_object ? $tax_object->label : '';
310
+ }
311
 
312
+ PostExpirator_Display::getInstance()->render_template('bulk-edit', array(
313
+ 'post_type' => $post_type,
314
+ 'taxonomy' => $taxonomy,
315
+ 'tax_label' => $label
316
+ ));
317
+ }
 
 
 
 
 
 
 
 
 
 
318
 
319
+ add_action('bulk_edit_custom_box', 'postexpirator_bulkedit', 10, 2);
 
 
 
 
320
 
321
+ /**
322
+ * Returns the post types that are supported.
323
+ *
324
+ * @internal
325
+ *
326
+ * @access private
327
+ */
328
+ function postexpirator_get_post_types()
329
+ {
330
+ $post_types = get_post_types(array('public' => true));
331
+ $post_types = array_merge(
332
+ $post_types,
333
+ get_post_types(array(
334
+ 'public' => false,
335
+ 'show_ui' => true,
336
+ '_builtin' => false
337
+ ))
338
+ );
339
 
340
+ // in case some post types should not be supported.
341
+ $unset_post_types = apply_filters('postexpirator_unset_post_types', array('attachment'));
342
+ if ($unset_post_types) {
343
+ foreach ($unset_post_types as $type) {
344
+ unset($post_types[$type]);
345
+ }
346
  }
 
 
 
 
 
 
347
 
348
+ return $post_types;
 
 
349
  }
350
 
351
+ /**
352
+ * Adds hooks to get the meta box added to pages and custom post types
353
+ *
354
+ * @internal
355
+ *
356
+ * @access private
357
+ */
358
+ function postexpirator_meta_custom()
359
+ {
360
+ $facade = PostExpirator_Facade::getInstance();
361
 
362
+ if (! $facade->current_user_can_expire_posts()) {
363
+ return;
364
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
365
 
366
+ $post_types = postexpirator_get_post_types();
367
+ foreach ($post_types as $type) {
368
+ $defaults = get_option('expirationdateDefaults' . ucfirst($type));
369
+ // if settings are not configured, show the metabox by default only for posts and pages
370
+ if ((! isset($defaults['activeMetaBox']) && in_array($type, array(
371
+ 'post',
372
+ 'page'
373
+ ), true)) || (is_array(
374
+ $defaults
375
+ ) && $defaults['activeMetaBox'] === 'active')) {
376
+ add_meta_box(
377
+ 'expirationdatediv',
378
+ __('PublishPress Future', 'post-expirator'),
379
+ 'postexpirator_meta_box',
380
+ $type,
381
+ 'side',
382
+ 'core',
383
+ array('__back_compat_meta_box' => PostExpirator_Facade::show_gutenberg_metabox())
384
+ );
385
+ }
386
+ }
387
  }
388
 
389
+ add_action('add_meta_boxes', 'postexpirator_meta_custom');
390
 
391
+ /**
392
+ * Actually adds the meta box
393
+ *
394
+ * @internal
395
+ *
396
+ * @access private
397
+ */
398
+ function postexpirator_meta_box($post)
399
+ {
400
+ $postMetaDate = get_post_meta($post->ID, '_expiration-date', true);
401
+ $postMetaStatus = get_post_meta($post->ID, '_expiration-date-status', true);
402
 
403
+ $expireType = $default = $enabled = '';
404
+ $defaultsOption = get_option('expirationdateDefaults' . ucfirst($post->post_type));
405
+ if (empty($postMetaDate)) {
406
+ $defaultExpire = PostExpirator_Facade::get_default_expiry($post->post_type);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
407
 
408
+ $defaultMonth = $defaultExpire['month'];
409
+ $defaultDay = $defaultExpire['day'];
410
+ $defaultHour = $defaultExpire['hour'];
411
+ $defaultYear = $defaultExpire['year'];
412
+ $defaultMinute = $defaultExpire['minute'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413
 
414
+ $categories = get_option('expirationdateCategoryDefaults');
415
+
416
+ if (isset($defaultsOption['expireType'])) {
417
+ $expireType = $defaultsOption['expireType'];
 
 
 
418
  }
419
+ } else {
420
+ $defaultMonth = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'm');
421
+ $defaultDay = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'd');
422
+ $defaultYear = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'Y');
423
+ $defaultHour = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'H');
424
+ $defaultMinute = get_date_from_gmt(gmdate('Y-m-d H:i:s', $postMetaDate), 'i');
425
+
426
+ $attributes = PostExpirator_Facade::get_expire_principles($post->ID);
427
+ $expireType = $attributes['expireType'];
428
+ $categories = $attributes['category'];
429
+ }
430
 
431
+ if (PostExpirator_Facade::is_expiration_enabled_for_post($post->ID)) {
432
+ $enabled = ' checked="checked"';
433
+ }
434
 
435
+ PostExpirator_Display::getInstance()->render_template(
436
+ 'classic-metabox', [
437
+ 'post' => $post,
438
+ 'enabled' => $enabled,
439
+ 'default' => $default,
440
+ 'defaultsOption' => $defaultsOption,
441
+ 'defaultmonth' => $defaultMonth,
442
+ 'defaultday' => $defaultDay,
443
+ 'defaulthour' => $defaultHour,
444
+ 'defaultyear' => $defaultYear,
445
+ 'defaultminute' => $defaultMinute,
446
+ 'categories' => $categories,
447
+ 'expireType' => $expireType,
448
+ ]
449
+ );
450
  }
451
 
452
+ function postexpirator_set_default_meta_for_post($postId, $post, $update)
453
+ {
454
+ if ($update) {
455
+ return;
456
+ }
457
 
458
+ $postTypeDefaults = get_option('expirationdateDefaults' . ucfirst($post->post_type));
 
 
 
459
 
460
+ if (empty($postTypeDefaults) || (int)$postTypeDefaults['autoEnable'] !== 1) {
461
+ return;
462
+ }
463
 
464
+ $defaultExpire = PostExpirator_Facade::get_default_expiry($post->post_type);
 
 
465
 
466
+ $categories = get_option('expirationdateCategoryDefaults');
 
 
467
 
468
+ $status = ! empty($defaultExpire['ts']) ? 'saved' : '';
469
+
470
+ $opts = [
471
+ 'expireType' => $postTypeDefaults['expireType'],
472
+ 'category' => $categories,
473
+ 'categoryTaxonomy' => '',
474
+ 'enabled' => $status === 'saved',
475
+ ];
476
+
477
+ update_post_meta($post->ID, '_expiration-date', $defaultExpire['ts']);
478
+ update_post_meta($post->ID, '_expiration-date-status', $status);
479
+ update_post_meta($post->ID, '_expiration-date-options', $opts);
480
+ update_post_meta($post->ID, '_expiration-date-type', $postTypeDefaults['expireType']);
481
+ update_post_meta($post->ID, '_expiration-date-categories', (array)$categories);
482
+ update_post_meta(
483
+ $post->ID,
484
+ '_expiration-date-taxonomy',
485
+ $opts['categoryTaxonomy']
486
+ );
487
+ }
488
 
489
+ /**
490
+ * Add's ajax javascript.
491
+ *
492
+ * @internal
493
+ *
494
+ * @access private
495
+ */
496
+ function postexpirator_js_admin_header()
497
+ {
498
+ $facade = PostExpirator_Facade::getInstance();
499
 
500
+ if (! $facade->current_user_can_expire_posts()) {
501
+ return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  }
503
+ ?>
504
+ <script type="text/javascript">
505
+ //<![CDATA[
506
+ (function ($) {
507
+ $(document).ready(function () {
508
+ init();
509
+ });
510
 
511
+ function init() {
512
+ $('#enable-expirationdate').on('click', function (e) {
513
+ if ($(this).is(':checked')) {
514
+ $('.pe-classic-fields').show();
515
+ } else {
516
+ $('.pe-classic-fields').hide();
517
+ }
518
+ });
519
+
520
+ $('.pe-howtoexpire').on('change', function (e) {
521
+ if ($(this).val().indexOf('category') !== -1) {
522
+ $('#expired-category-selection').show();
523
+ } else {
524
+ $('#expired-category-selection').hide();
525
+ }
526
+ });
527
  }
528
+ })(jQuery);
529
+ //]]>
530
+ </script>
531
+ <?php
532
+ }
533
 
534
+ add_action('admin_head', 'postexpirator_js_admin_header');
535
+
536
+ /**
537
+ * Called when post is saved - stores expiration-date meta value
538
+ *
539
+ * @internal
540
+ *
541
+ * @access private
542
+ */
543
+ function postexpirator_update_post_meta($id)
544
+ {
545
+ // don't run the echo if this is an auto save
546
+ if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
547
+ return;
548
  }
 
 
 
549
 
550
+ // don't run the echo if the function is called for saving revision.
551
+ $posttype = get_post_type((int) $id);
552
+ if ($posttype === 'revision') {
553
+ return;
554
+ }
555
 
556
+ // Do not process Bulk edit here. It is processed on the function "postexpirator_date_save_bulk_edit"
557
+ if (isset($_GET['postexpirator_view']) && $_GET['postexpirator_view'] === 'bulk-edit') {
558
+ return;
559
+ }
 
 
 
560
 
561
+ $facade = PostExpirator_Facade::getInstance();
562
+
563
+ if (! $facade->current_user_can_expire_posts()) {
564
  return;
565
  }
566
 
567
+ $shouldSchedule = false;
568
+ $ts = null;
569
+ $opts = [];
570
 
571
+ if (isset($_POST['postexpirator_view'])) {
572
+ if (defined('DOING_AJAX') && DOING_AJAX) {
573
+ check_ajax_referer('__postexpirator', '_postexpiratornonce');
 
 
574
  } else {
575
+ check_admin_referer('__postexpirator', '_postexpiratornonce');
576
  }
577
 
578
+ // Classic editor, quick edit
579
+ $shouldSchedule = isset($_POST['enable-expirationdate']);
 
 
 
 
580
 
581
+ $default = get_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
582
+ if ($default === 'publish') {
583
+ $month = intval($_POST['mm']);
584
+ $day = intval($_POST['jj']);
585
+ $year = intval($_POST['aa']);
586
+ $hour = intval($_POST['hh']);
587
+ $minute = intval($_POST['mn']);
588
+ } else {
589
+ $month = intval($_POST['expirationdate_month']);
590
+ $day = intval($_POST['expirationdate_day']);
591
+ $year = intval($_POST['expirationdate_year']);
592
+ $hour = intval($_POST['expirationdate_hour']);
593
+ $minute = intval($_POST['expirationdate_minute']);
594
+
595
+ if (empty($day)) {
596
+ $day = date('d');
597
+ }
598
+ if (empty($year)) {
599
+ $year = date('Y');
600
+ }
601
+ }
602
+ $category = isset($_POST['expirationdate_category'])
603
+ ? PostExpirator_Util::sanitize_array_of_integers($_POST['expirationdate_category']) : []; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
604
+
605
+ $ts = get_gmt_from_date("$year-$month-$day $hour:$minute:0", 'U');
606
+
607
+ if (isset($_POST['expirationdate_quickedit'])) {
608
+ $opts = PostExpirator_Facade::get_expire_principles($id);
609
+ if (isset($_POST['expirationdate_expiretype'])) {
610
+ $opts['expireType'] = sanitize_key($_POST['expirationdate_expiretype']);
611
+ if (in_array($opts['expireType'], array(
612
+ 'category',
613
+ 'category-add',
614
+ 'category-remove'
615
+ ), true)) {
616
+ $opts['category'] = $category;
617
+ }
618
  }
619
+ } else {
620
+ // Schedule/Update Expiration
621
+ $opts['expireType'] = sanitize_key($_POST['expirationdate_expiretype']);
622
+ $opts['id'] = $id;
623
 
624
+ if ($opts['expireType'] === 'category' || $opts['expireType'] === 'category-add' || $opts['expireType'] === 'category-remove') {
625
+ if (isset($category) && ! empty($category)) {
626
+ $opts['category'] = $category;
627
+ $opts['categoryTaxonomy'] = sanitize_text_field($_POST['taxonomy-heirarchical']);
628
+ }
629
  }
630
  }
631
  } else {
632
+ // Gutenberg or script request
633
+ $payload = @file_get_contents('php://input');
634
 
635
+ if (empty($payload)) {
636
+ $debug = postexpirator_debug();
637
 
638
+ if (POSTEXPIRATOR_DEBUG) {
639
+ $debug->save(
640
+ array(
641
+ 'message' => $id . ' -> NO PAYLOAD ON SAVE_POST'
642
+ )
643
+ );
644
+ }
645
 
646
+ return;
647
+ }
 
 
 
 
 
648
 
649
+ $payload = @json_decode($payload, true);
650
 
651
+ if (isset($payload['meta'])) {
652
+ if (isset($payload['meta']['_expiration-date-status'])) {
653
+ $shouldSchedule = $payload['meta']['_expiration-date-status'] === 'saved'
654
+ && isset($payload['meta']['_expiration-date'])
655
+ && false === empty($payload['meta']['_expiration-date']);
656
+ } else {
657
+ $shouldSchedule = PostExpirator_Facade::is_expiration_enabled_for_post($id);
658
+ }
659
+
660
+ if ($shouldSchedule) {
661
+ if (isset($payload['meta']['_expiration-date'])) {
662
+ $ts = sanitize_text_field($payload['meta']['_expiration-date']);
663
+ } else {
664
+ $ts = get_post_meta($id, '_expiration-date', true);
665
+ }
666
+
667
+ if (isset($payload['meta']['_expiration-date-type'])) {
668
+ $opts['expireType'] = sanitize_key($payload['meta']['_expiration-date-type']);
669
+ } else {
670
+ $opts['expireType'] = get_post_meta($id, '_expiration-date-type', true);
671
+ }
672
+
673
+ if (isset($payload['meta']['_expiration-date-categories'])) {
674
+ $opts['category'] = PostExpirator_Util::sanitize_array_of_integers($payload['meta']['_expiration-date-categories']);
675
+ } else {
676
+ $opts['category'] = (array)get_post_meta($id, '_expiration-date-categories', true);
677
+ }
678
+ }
679
+ } else {
680
+ $shouldSchedule = PostExpirator_Facade::is_expiration_enabled_for_post($id);
681
+
682
+ if ($shouldSchedule) {
683
+ $ts = get_post_meta($id, '_expiration-date', true);
684
+
685
+ $opts['expireType'] = get_post_meta($id, '_expiration-date-type', true);
686
+ $opts['category'] = (array)get_post_meta($id, '_expiration-date-categories', true);
687
+ }
688
+ }
689
  }
 
690
 
691
+ if ($shouldSchedule) {
692
+ $opts['id'] = $id;
693
+ postexpirator_schedule_event($id, $ts, $opts);
 
 
 
 
 
 
 
694
  } else {
695
+ postexpirator_unschedule_event($id);
 
 
 
 
 
 
 
 
696
  }
697
  }
698
 
699
+ add_action('save_post', 'postexpirator_update_post_meta');
 
 
 
 
 
 
700
 
701
+ /**
702
+ * Schedules the single event.
703
+ *
704
+ * @internal
705
+ *
706
+ * @access private
707
+ */
708
+ function postexpirator_schedule_event($id, $ts, $opts)
709
+ {
710
+ $debug = postexpirator_debug(); // check for/load debug
711
+
712
+ $id = intval($id);
713
+
714
+ do_action('postexpirator_schedule', $id, $ts, $opts); // allow custom actions
715
+
716
+ if (wp_next_scheduled('postExpiratorExpire', array($id)) !== false) {
717
+ $error = wp_clear_scheduled_hook('postExpiratorExpire', array($id), true); // Remove any existing hooks
718
+ if (POSTEXPIRATOR_DEBUG) {
719
+ $debug->save(
720
+ array(
721
+ 'message' => $id . ' -> EXISTING CRON EVENT FOUND - UNSCHEDULED - ' . (is_wp_error(
722
+ $error
723
+ ) ? $error->get_error_message() : 'no error')
724
+ )
725
+ );
726
+ }
727
  }
 
 
 
728
 
729
+ $scheduled = wp_schedule_single_event($ts, 'postExpiratorExpire', array($id), true);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730
  if (POSTEXPIRATOR_DEBUG) {
731
+ if ($scheduled) {
732
+ $debug->save(
733
+ array(
734
+ 'message' => $id . ' -> CRON EVENT SCHEDULED at ' .
735
+ PostExpirator_Util::get_wp_date('r', $ts)
736
+ . ' ' . '(' . $ts . ') with options ' . print_r($opts, true) . ' no error'
737
+ )
738
+ );
739
+ } else {
740
+ $debug->save(
741
+ array(
742
+ 'message' => $id . ' -> TRIED TO SCHEDULE CRON EVENT at ' .
743
+ PostExpirator_Util::get_wp_date('r', $ts)
744
+ . ' ' . '(' . $ts . ') with options ' . print_r($opts, true) . ' ' . (is_wp_error(
745
+ $scheduled
746
+ ) ? $scheduled->get_error_message() : 'no error')
747
+ )
748
+ );
749
+ }
750
  }
751
 
752
+ // Update Post Meta
753
+ update_post_meta($id, '_expiration-date', $ts);
754
+ if (! is_null($opts)) {
755
+ PostExpirator_Facade::set_expire_principles($id, $opts);
756
+ }
757
+ update_post_meta($id, '_expiration-date-status', 'saved');
758
  }
759
 
760
+ /**
761
+ * Unschedules the single event.
762
+ *
763
+ * @internal
764
+ *
765
+ * @access private
766
+ */
767
+ function postexpirator_unschedule_event($id)
768
+ {
769
+ $debug = postexpirator_debug(); // check for/load debug
770
 
771
+ do_action('postexpirator_unschedule', $id); // allow custom actions
 
772
 
773
+ delete_post_meta($id, '_expiration-date');
774
+ delete_post_meta($id, '_expiration-date-options');
775
+ delete_post_meta($id, '_expiration-date-type');
776
+ delete_post_meta($id, '_expiration-date-categories');
777
+ delete_post_meta($id, '_expiration-date-taxonomy');
778
 
779
+ // Delete Scheduled Expiration
780
+ if (wp_next_scheduled('postExpiratorExpire', array($id)) !== false) {
781
+ wp_clear_scheduled_hook('postExpiratorExpire', array($id)); // Remove any existing hooks
782
+ if (POSTEXPIRATOR_DEBUG) {
783
+ $debug->save(array('message' => $id . ' -> UNSCHEDULED'));
784
+ }
785
  }
786
+ delete_post_meta($id, '_expiration-date-status');
 
787
  }
788
 
789
+ /**
790
+ * The new expiration function, to work with single scheduled events.
791
+ *
792
+ * This was designed to hopefully be more flexible for future tweaks/modifications to the architecture.
793
+ *
794
+ * @internal
795
+ *
796
+ * @access private
797
+ */
798
+ function postexpirator_expire_post($id)
799
+ {
800
+ $debug = postexpirator_debug(); // check for/load debug
801
 
802
+ $id = (int)$id;
 
 
803
 
804
+ if (empty($id)) {
805
+ if (POSTEXPIRATOR_DEBUG) {
806
+ $debug->save(array('message' => 'No Post ID found - exiting'));
807
+ }
808
 
809
+ return false;
810
+ }
 
811
 
812
+ if (is_null(get_post($id))) {
813
+ if (POSTEXPIRATOR_DEBUG) {
814
+ $debug->save(array('message' => $id . ' -> Post does not exist - exiting'));
815
+ }
816
 
817
+ return false;
 
 
818
  }
819
 
820
+ $postExpireOptions = PostExpirator_Facade::get_expire_principles($id);
821
+
822
+ if ($postExpireOptions['enabled'] === false) {
823
+ if (POSTEXPIRATOR_DEBUG) {
824
+ $debug->save(array('message' => $id . ' -> Post expire data exist but is not activated'));
825
+ }
826
+
827
+ return false;
828
+ }
829
 
 
 
830
  $postType = get_post_type($id);
831
+ $postTitle = get_the_title($id);
832
+ $postLink = get_post_permalink($id);
833
+
834
+ $expireType = $expireCategory = $expireCategoryTaxonomy = null;
835
+
836
+ if (isset($postExpireOptions['expireType'])) {
837
+ $expireType = $postExpireOptions['expireType'];
 
 
 
838
  }
 
839
 
840
+ if (isset($postExpireOptions['category'])) {
841
+ $expireCategory = $postExpireOptions['category'];
842
+ }
 
843
 
844
+ if (isset($postExpireOptions['categoryTaxonomy'])) {
845
+ $expireCategoryTaxonomy = $postExpireOptions['categoryTaxonomy'];
846
+ }
847
 
848
+ $expirationDate = (int)get_post_meta($id, '_expiration-date', true);
849
+
850
+ if (empty($expirationDate)) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
851
  if (POSTEXPIRATOR_DEBUG) {
852
+ $debug->save(array('message' => $id . ' -> Tried to expire the post but the expire date is empty'));
 
 
853
  }
854
 
855
+ return false;
856
  }
857
+
858
+ // Check for default expire only if not passed in
859
+ if (empty($expireType)) {
860
+ $postType = get_post_type($id);
861
+ if ($postType === 'page') {
862
+ $expireType = strtolower(get_option('expirationdateExpiredPageStatus', POSTEXPIRATOR_PAGESTATUS));
863
+ } elseif ($postType === 'post') {
864
+ $expireType = strtolower(get_option('expirationdateExpiredPostStatus', 'draft'));
865
+ } else {
866
+ $expireType = apply_filters(
867
+ 'postexpirator_custom_posttype_expire',
868
+ $expireType,
869
+ $postType
870
+ ); // hook to set defaults for custom post types
871
  }
872
+ }
873
+
874
+ // Remove KSES - wp_cron runs as an unauthenticated user, which will by default trigger kses filtering,
875
+ // even if the post was published by a admin user. It is fairly safe here to remove the filter call since
876
+ // we are only changing the post status/meta information and not touching the content.
877
+ kses_remove_filters();
878
+
879
+ $postWasExpired = false;
880
+
881
+ // Do Work
882
+ if ($expireType === 'draft') {
883
+ if (wp_update_post(array('ID' => $id, 'post_status' => 'draft')) === 0) {
884
+ if (POSTEXPIRATOR_DEBUG) {
885
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
886
+ }
887
+ } else {
888
+ $emailBody = sprintf(
889
+ __(
890
+ '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
891
+ 'post-expirator'
892
+ ),
893
+ '##POSTTITLE##',
894
+ '##POSTLINK##',
895
+ '##EXPIRATIONDATE##',
896
+ strtoupper($expireType)
897
  );
898
+ if (POSTEXPIRATOR_DEBUG) {
899
+ $debug->save(
900
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
901
+ );
902
+ }
903
 
904
+ $postWasExpired = true;
 
 
 
 
 
905
  }
906
+ } elseif ($expireType === 'private') {
907
+ if (wp_update_post(array('ID' => $id, 'post_status' => 'private')) === 0) {
908
+ if (POSTEXPIRATOR_DEBUG) {
909
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
910
+ }
911
+ } else {
912
+ $emailBody = sprintf(
913
+ __(
914
+ '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
915
+ 'post-expirator'
916
+ ),
917
+ '##POSTTITLE##',
918
+ '##POSTLINK##',
919
+ '##EXPIRATIONDATE##',
920
+ strtoupper($expireType)
921
  );
922
+ if (POSTEXPIRATOR_DEBUG) {
923
+ $debug->save(
924
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
925
+ );
926
+ }
927
 
928
+ $postWasExpired = true;
 
 
 
 
 
929
  }
930
+ } elseif ($expireType === 'delete') {
931
+ if (wp_delete_post($id) === false) {
932
+ if (POSTEXPIRATOR_DEBUG) {
933
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
934
+ }
935
+ } else {
936
+ $emailBody = sprintf(
937
+ __(
938
+ '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
939
+ 'post-expirator'
940
+ ),
941
+ '##POSTTITLE##',
942
+ '##POSTLINK##',
943
+ '##EXPIRATIONDATE##',
944
+ strtoupper($expireType)
945
  );
946
+ if (POSTEXPIRATOR_DEBUG) {
947
+ $debug->save(
948
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
949
+ );
950
+ }
951
 
952
+ $postWasExpired = true;
 
 
 
 
 
953
  }
954
+ } elseif ($expireType === 'trash') {
955
+ if (wp_trash_post($id) === false) {
956
+ if (POSTEXPIRATOR_DEBUG) {
957
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
958
+ }
959
+ } else {
960
+ $emailBody = sprintf(
961
+ __(
962
+ '%1$s (%2$s) has expired at %3$s. Post status has been successfully changed to "%4$s".',
963
+ 'post-expirator'
964
+ ),
965
+ '##POSTTITLE##',
966
+ '##POSTLINK##',
967
+ '##EXPIRATIONDATE##',
968
+ strtoupper($expireType)
969
  );
970
+ if (POSTEXPIRATOR_DEBUG) {
971
+ $debug->save(
972
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
973
+ );
974
+ }
975
 
976
+ $postWasExpired = true;
 
 
 
 
 
977
  }
978
+ } elseif ($expireType === 'stick') {
979
+ if (stick_post($id) === false) {
980
+ if (POSTEXPIRATOR_DEBUG) {
981
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
982
+ }
983
+ } else {
984
+ $emailBody = sprintf(
985
+ __('%1$s (%2$s) has expired at %3$s. Post "%4$s" status has been successfully set.', 'post-expirator'),
986
+ '##POSTTITLE##',
987
+ '##POSTLINK##',
988
+ '##EXPIRATIONDATE##',
989
+ 'STICKY'
 
 
990
  );
991
+ if (POSTEXPIRATOR_DEBUG) {
992
+ $debug->save(
993
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
994
+ );
995
+ }
996
+
997
+ $postWasExpired = true;
998
  }
999
+ } elseif ($expireType === 'unstick') {
1000
+ if (unstick_post($id) === false) {
1001
+ if (POSTEXPIRATOR_DEBUG) {
1002
+ $debug->save(array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true)));
1003
+ }
1004
+ } else {
1005
+ $emailBody = sprintf(
1006
+ __(
1007
+ '%1$s (%2$s) has expired at %3$s. Post "%4$s" status has been successfully removed.',
1008
+ 'post-expirator'
1009
+ ),
1010
+ '##POSTTITLE##',
1011
+ '##POSTLINK##',
1012
+ '##EXPIRATIONDATE##',
1013
+ 'STICKY'
1014
+ );
1015
+ if (POSTEXPIRATOR_DEBUG) {
1016
+ $debug->save(
1017
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1018
+ );
1019
+ }
1020
 
1021
+ $postWasExpired = true;
1022
+ }
1023
+ } elseif ($expireType === 'category') {
1024
+ if (! empty($expireCategory)) {
1025
+ if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1026
+ if (wp_update_post(array('ID' => $id, 'post_category' => $expireCategory)) === 0) {
1027
+ if (POSTEXPIRATOR_DEBUG) {
1028
+ $debug->save(
1029
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1030
+ );
1031
+ }
1032
+ } else {
1033
+ $emailBody = sprintf(
1034
+ __(
1035
+ '%1$s (%2$s) has expired at %3$s. Post "%4$s" have now been set to "%5$s".',
1036
+ 'post-expirator'
1037
+ ),
1038
+ '##POSTTITLE##',
1039
+ '##POSTLINK##',
1040
+ '##EXPIRATIONDATE##',
1041
+ 'CATEGORIES',
1042
+ implode(',', _postexpirator_get_cat_names($expireCategory))
1043
  );
1044
+ if (POSTEXPIRATOR_DEBUG) {
1045
+ $debug->save(
1046
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1047
+ );
1048
+ $debug->save(
1049
+ array(
1050
+ 'message' => $id . ' -> CATEGORIES REPLACED ' . print_r(
1051
+ _postexpirator_get_cat_names($expireCategory),
1052
+ true
1053
+ )
1054
+ )
1055
+ );
1056
+ $debug->save(
1057
+ array(
1058
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1059
+ _postexpirator_get_cat_names($expireCategory),
1060
+ true
1061
+ )
1062
+ )
1063
+ );
1064
+ }
1065
+
1066
+ $postWasExpired = true;
1067
  }
1068
  } else {
1069
+ $terms = PostExpirator_Util::sanitize_array_of_integers($expireCategory);
1070
+ if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, false))) {
1071
+ if (POSTEXPIRATOR_DEBUG) {
1072
+ $debug->save(
1073
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1074
+ );
1075
+ }
1076
+ } else {
1077
+ $emailBody = sprintf(
1078
+ __(
1079
+ '%1$s (%2$s) has expired at %3$s. Post "%4$s" have now been set to "%5$s".',
1080
+ 'post-expirator'
1081
+ ),
1082
+ '##POSTTITLE##',
1083
+ '##POSTLINK##',
1084
+ '##EXPIRATIONDATE##',
1085
+ 'CATEGORIES',
1086
+ implode(',', _postexpirator_get_cat_names($expireCategory))
 
 
 
 
 
 
 
 
 
 
 
 
1087
  );
1088
+ if (POSTEXPIRATOR_DEBUG) {
1089
+ $debug->save(
1090
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1091
+ );
1092
+ $debug->save(
1093
+ array(
1094
+ 'message' => $id . ' -> CATEGORIES REPLACED ' . print_r(
1095
+ _postexpirator_get_cat_names($expireCategory),
1096
+ true
1097
+ )
1098
+ )
1099
+ );
1100
+ $debug->save(
1101
+ array(
1102
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1103
+ _postexpirator_get_cat_names($expireCategory),
1104
+ true
1105
+ )
1106
+ )
1107
+ );
1108
+ }
1109
+
1110
+ $postWasExpired = true;
1111
  }
 
 
1112
  }
1113
  } else {
1114
+ if (POSTEXPIRATOR_DEBUG) {
1115
+ $debug->save(
1116
+ array(
1117
+ 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1118
+ $postExpireOptions,
1119
+ true
1120
+ )
1121
+ )
 
 
 
 
 
 
 
 
 
 
1122
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
  }
1124
  }
1125
+ } elseif ($expireType === 'category-add') {
1126
+ if (! empty($expireCategory)) {
1127
+ if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1128
+ $postCategories = wp_get_post_categories($id);
1129
+ $mergedCategories = array_merge($postCategories, $expireCategory);
1130
+ if (wp_update_post(array('ID' => $id, 'post_category' => $mergedCategories)) === 0) {
1131
+ if (POSTEXPIRATOR_DEBUG) {
1132
+ $debug->save(
1133
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1134
+ );
1135
+ }
1136
+ } else {
1137
+ $emailBody = sprintf(
1138
+ __(
1139
+ '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been added: "%5$s". The full list of categories on the post are: "%6$s".',
1140
+ 'post-expirator'
1141
+ ),
1142
+ '##POSTTITLE##',
1143
+ '##POSTLINK##',
1144
+ '##EXPIRATIONDATE##',
1145
+ 'CATEGORIES',
1146
+ implode(',', _postexpirator_get_cat_names($expireCategory)),
1147
+ implode(',', _postexpirator_get_cat_names($mergedCategories))
1148
  );
1149
+ if (POSTEXPIRATOR_DEBUG) {
1150
+ $debug->save(
1151
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1152
+ );
1153
+ $debug->save(
1154
+ array(
1155
+ 'message' => $id . ' -> CATEGORIES ADDED ' . print_r(
1156
+ _postexpirator_get_cat_names($expireCategory),
1157
+ true
1158
+ )
1159
+ )
1160
+ );
1161
+ $debug->save(
1162
+ array(
1163
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1164
+ _postexpirator_get_cat_names($mergedCategories),
1165
+ true
1166
+ )
1167
+ )
1168
+ );
1169
+ }
1170
+
1171
+ $postWasExpired = true;
1172
  }
1173
  } else {
1174
+ $terms = PostExpirator_Util::sanitize_array_of_integers($expireCategory);
1175
+ if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, true))) {
1176
+ if (POSTEXPIRATOR_DEBUG) {
1177
+ $debug->save(
1178
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1179
+ );
1180
+ }
1181
+ } else {
1182
+ $emailBody = sprintf(
1183
+ __(
1184
+ '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been added: "%5$s". The full list of categories on the post are: "%6$s".',
1185
+ 'post-expirator'
1186
+ ),
1187
+ '##POSTTITLE##',
1188
+ '##POSTLINK##',
1189
+ '##EXPIRATIONDATE##',
1190
+ 'CATEGORIES',
1191
+ implode(',', _postexpirator_get_cat_names($expireCategory)),
1192
+ implode(',', _postexpirator_get_cat_names($terms))
 
 
 
 
 
 
 
 
 
 
 
 
1193
  );
1194
+ if (POSTEXPIRATOR_DEBUG) {
1195
+ $debug->save(
1196
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1197
+ );
1198
+ $debug->save(
1199
+ array(
1200
+ 'message' => $id . ' -> CATEGORIES ADDED ' . print_r(
1201
+ _postexpirator_get_cat_names($expireCategory),
1202
+ true
1203
+ )
1204
+ )
1205
+ );
1206
+ $debug->save(
1207
+ array(
1208
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1209
+ _postexpirator_get_cat_names($expireCategory),
1210
+ true
1211
+ )
1212
+ )
1213
+ );
1214
+ }
1215
+
1216
+ $postWasExpired = true;
1217
  }
 
 
1218
  }
1219
  } else {
1220
+ if (POSTEXPIRATOR_DEBUG) {
1221
+ $debug->save(
1222
+ array(
1223
+ 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1224
+ $postExpireOptions,
1225
+ true
1226
+ )
1227
+ )
 
 
 
 
 
 
 
 
 
 
 
1228
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1229
  }
1230
  }
1231
+ } elseif ($expireType === 'category-remove') {
1232
+ if (! empty($expireCategory)) {
1233
+ if (empty($expireCategoryTaxonomy) || $expireCategoryTaxonomy === 'category') {
1234
+ $postCategories = wp_get_post_categories($id);
1235
+ $mergedCategories = array();
1236
+ foreach ($postCategories as $category) {
1237
+ if (! in_array($category, $expireCategory, false)) {
1238
+ $mergedCategories[] = $category;
1239
+ }
 
 
 
 
 
 
 
 
 
 
 
1240
  }
 
1241
 
1242
+ if (wp_update_post(array('ID' => $id, 'post_category' => $mergedCategories)) === 0) {
1243
+ if (POSTEXPIRATOR_DEBUG) {
1244
+ $debug->save(
1245
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1246
+ );
1247
+ }
1248
+ } else {
1249
+ $emailBody = sprintf(
1250
+ __(
1251
+ '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been removed: "%5$s". The full list of categories on the post are: "%6$s".',
1252
+ 'post-expirator'
1253
+ ),
1254
+ '##POSTTITLE##',
1255
+ '##POSTLINK##',
1256
+ '##EXPIRATIONDATE##',
1257
+ 'CATEGORIES',
1258
+ implode(',', _postexpirator_get_cat_names($expireCategory)),
1259
+ implode(',', _postexpirator_get_cat_names($mergedCategories))
1260
  );
1261
+ if (POSTEXPIRATOR_DEBUG) {
1262
+ $debug->save(
1263
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1264
+ );
1265
+ $debug->save(
1266
+ array(
1267
+ 'message' => $id . ' -> CATEGORIES REMOVED ' . print_r(
1268
+ _postexpirator_get_cat_names($expireCategory),
1269
+ true
1270
+ )
1271
+ )
1272
+ );
1273
+ $debug->save(
1274
+ array(
1275
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1276
+ _postexpirator_get_cat_names($mergedCategories),
1277
+ true
1278
+ )
1279
+ )
1280
+ );
1281
+ }
1282
+
1283
+ $postWasExpired = true;
1284
  }
1285
  } else {
1286
+ $terms = wp_get_object_terms($id, $expireCategoryTaxonomy, array('fields' => 'ids'));
1287
+ $mergedCategories = array();
1288
+ foreach ($terms as $term) {
1289
+ if (! in_array($term, $expireCategory, false)) {
1290
+ $mergedCategories[] = $term;
1291
+ }
1292
+ }
1293
+ $terms = PostExpirator_Util::sanitize_array_of_integers($mergedCategories);
1294
+ if (is_wp_error(wp_set_object_terms($id, $terms, $expireCategoryTaxonomy, false))) {
1295
+ if (POSTEXPIRATOR_DEBUG) {
1296
+ $debug->save(
1297
+ array('message' => $id . ' -> FAILED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1298
+ );
1299
+ }
1300
+ } else {
1301
+ $emailBody = sprintf(
1302
+ __(
1303
+ '%1$s (%2$s) has expired at %3$s. The following post "%4$s" have now been removed: "%5$s". The full list of categories on the post are: "%6$s".',
1304
+ 'post-expirator'
1305
+ ),
1306
+ '##POSTTITLE##',
1307
+ '##POSTLINK##',
1308
+ '##EXPIRATIONDATE##',
1309
+ 'CATEGORIES',
1310
+ implode(',', _postexpirator_get_cat_names($expireCategory)),
1311
+ implode(',', _postexpirator_get_cat_names($mergedCategories))
 
 
 
 
 
1312
  );
1313
+ if (POSTEXPIRATOR_DEBUG) {
1314
+ $debug->save(
1315
+ array('message' => $id . ' -> PROCESSED ' . $expireType . ' ' . print_r($postExpireOptions, true))
1316
+ );
1317
+ $debug->save(
1318
+ array(
1319
+ 'message' => $id . ' -> CATEGORIES REMOVED ' . print_r(
1320
+ _postexpirator_get_cat_names($expireCategory),
1321
+ true
1322
+ )
1323
+ )
1324
+ );
1325
+ $debug->save(
1326
+ array(
1327
+ 'message' => $id . ' -> CATEGORIES COMPLETE ' . print_r(
1328
+ _postexpirator_get_cat_names($expireCategory),
1329
+ true
1330
+ )
1331
+ )
1332
+ );
1333
+ }
1334
+
1335
+ $postWasExpired = true;
1336
  }
 
 
1337
  }
1338
  } else {
1339
+ if (POSTEXPIRATOR_DEBUG) {
1340
+ $debug->save(
1341
+ array(
1342
+ 'message' => $id . ' -> CATEGORIES MISSING ' . $expireType . ' ' . print_r(
1343
+ $postExpireOptions,
1344
+ true
1345
+ )
1346
+ )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1347
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1348
  }
1349
  }
 
 
 
 
 
 
 
 
 
 
 
1350
  }
 
1351
 
1352
+ // Process Email
1353
+ $emailEnabled = get_option('expirationdateEmailNotification', POSTEXPIRATOR_EMAILNOTIFICATION);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1354
 
 
 
 
1355
  // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1356
+ if ($emailEnabled == 1 && isset($emailBody)) {
1357
+ $emailSubject = sprintf(__('Post Expiration Complete "%s"', 'post-expirator'), $postTitle);
1358
+ $emailBody = str_replace('##POSTTITLE##', $postTitle, $emailBody);
1359
+ $emailBody = str_replace('##POSTLINK##', $postLink, $emailBody);
1360
+ $emailBody = str_replace(
1361
+ '##EXPIRATIONDATE##',
1362
+ get_date_from_gmt(
1363
+ gmdate('Y-m-d H:i:s', $expirationDate),
1364
+ get_option('date_format') . ' ' . get_option('time_format')
1365
+ ),
1366
+ $emailBody
1367
+ );
1368
 
1369
+ $emailsToSend = array();
1370
+ // Get Blog Admins
1371
+ $blogAdmins = get_option('expirationdateEmailNotificationAdmins', POSTEXPIRATOR_EMAILNOTIFICATIONADMINS);
1372
+ // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1373
+ if ($blogAdmins == 1) {
1374
+ $blogUsers = get_users('role=Administrator');
1375
+ foreach ($blogUsers as $user) {
1376
+ $emailsToSend[] = $user->user_email;
1377
+ }
1378
  }
 
1379
 
1380
+ // Get Global Notification Emails
1381
+ $emailsList = get_option('expirationdateEmailNotificationList');
1382
+ if (! empty($emailsList)) {
1383
+ $values = explode(',', $emailsList);
1384
+ foreach ($values as $value) {
1385
+ $emailsToSend[] = trim($value);
1386
+ }
1387
  }
 
1388
 
1389
+ // Get Post Type Notification Emails
1390
+ $defaults = get_option('expirationdateDefaults' . ucfirst($postType));
1391
+ if (isset($defaults['emailnotification']) && ! empty($defaults['emailnotification'])) {
1392
+ $values = explode(',', $defaults['emailnotification']);
1393
+ foreach ($values as $value) {
1394
+ $emailsToSend[] = trim($value);
1395
  }
1396
+ }
1397
+
1398
+ // Send Emails
1399
+ foreach ($emailsToSend as $email) {
1400
+ if (wp_mail($email, sprintf(__('[%1$s] %2$s'), get_option('blogname'), $emailSubject), $emailBody)) {
1401
+ if (POSTEXPIRATOR_DEBUG) {
1402
+ $debug->save(array('message' => $id . ' -> EXPIRATION EMAIL SENT (' . $email . ')'));
1403
+ }
1404
+ } else {
1405
+ if (POSTEXPIRATOR_DEBUG) {
1406
+ $debug->save(array('message' => $id . ' -> EXPIRATION EMAIL FAILED (' . $email . ')'));
1407
+ }
1408
  }
1409
  }
1410
  }
1411
+
1412
+ if (true === $postWasExpired) {
1413
+ postexpirator_unschedule_event($id);
1414
+ }
1415
  }
1416
 
1417
+ add_action('postExpiratorExpire', 'postexpirator_expire_post');
1418
+
1419
+ /**
1420
+ * Internal method to get category names corresponding to the category IDs.
1421
+ *
1422
+ * @internal
1423
+ *
1424
+ * @access private
1425
+ */
1426
+ function _postexpirator_get_cat_names($cats)
1427
+ {
1428
+ $out = array();
1429
+ foreach ($cats as $cat) {
1430
+ $out[$cat] = get_the_category_by_id($cat);
1431
+ }
1432
+
1433
+ return $out;
1434
  }
 
1435
 
 
1436
 
1437
+ /**
1438
+ * Show the menu.
1439
+ *
1440
+ * @internal
1441
+ *
1442
+ * @access private
1443
+ */
1444
+ function postexpirator_menu()
1445
+ {
1446
+ _deprecated_function(__FUNCTION__, '2.5');
1447
+ }
1448
+
1449
+ /**
1450
+ * Hook's to add plugin page menu
1451
+ *
1452
+ * @internal
1453
+ *
1454
+ * @access private
1455
+ */
1456
+ function postexpirator_add_menu()
1457
+ {
1458
+ _deprecated_function(__FUNCTION__, '2.5');
1459
+ }
1460
+
1461
+ /**
1462
+ * Show the Expiration Date options page
1463
+ *
1464
+ * @internal
1465
+ *
1466
+ * @access private
1467
+ */
1468
+ function postexpirator_menu_general()
1469
+ {
1470
+ _deprecated_function(__FUNCTION__, '2.5');
1471
+ PostExpirator_Display::getInstance()->load_tab('general');
1472
  }
1473
 
1474
+ /**
1475
+ * The default menu.
1476
+ *
1477
+ * @internal
1478
+ *
1479
+ * @access private
1480
+ */
1481
+ function postexpirator_menu_defaults()
1482
+ {
1483
+ _deprecated_function(__FUNCTION__, '2.5');
1484
+ PostExpirator_Display::getInstance()->load_tab('defaults');
1485
+ }
1486
+
1487
+ /**
1488
+ * Diagnostics menu.
1489
+ *
1490
+ * @internal
1491
+ *
1492
+ * @access private
1493
+ */
1494
+ function postexpirator_menu_diagnostics()
1495
+ {
1496
+ _deprecated_function(__FUNCTION__, '2.5');
1497
+ PostExpirator_Display::getInstance()->load_tab('diagnostics');
1498
+ }
1499
+
1500
+ /**
1501
+ * Debug menu.
1502
+ *
1503
+ * @internal
1504
+ *
1505
+ * @access private
1506
+ */
1507
+ function postexpirator_menu_debug()
1508
+ {
1509
+ _deprecated_function(__FUNCTION__, '2.5');
1510
+ PostExpirator_Display::getInstance()->load_tab('viewdebug');
1511
+ }
1512
+
1513
+ /**
1514
+ * Register the shortcode.
1515
+ *
1516
+ * @internal
1517
+ *
1518
+ * @access private
1519
+ */
1520
+ function postexpirator_shortcode($atts)
1521
+ {
1522
+ global $post;
1523
+
1524
+ $enabled = PostExpirator_Facade::is_expiration_enabled_for_post($post->ID);
1525
+ $expirationdatets = get_post_meta($post->ID, '_expiration-date', true);
1526
+ if (! $enabled || empty($expirationdatets)) {
1527
+ return false;
1528
+ }
1529
 
1530
+ // @TODO remove extract
1531
+ // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
1532
+ extract(
1533
+ shortcode_atts(
1534
+ array(
1535
+ 'dateformat' => get_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT),
1536
+ 'timeformat' => get_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT),
1537
+ 'type' => 'full',
1538
+ 'tz' => date('T'),
1539
+ ),
1540
+ $atts
1541
+ )
1542
+ );
1543
 
1544
+ if (empty($dateformat)) {
1545
+ global $expirationdateDefaultDateFormat;
1546
+ $dateformat = $expirationdateDefaultDateFormat;
1547
+ }
 
 
 
 
 
 
 
1548
 
1549
+ if (empty($timeformat)) {
1550
+ global $expirationdateDefaultTimeFormat;
1551
+ $timeformat = $expirationdateDefaultTimeFormat;
1552
+ }
 
 
 
 
 
 
 
1553
 
1554
+ if ($type === 'full') {
1555
+ $format = $dateformat . ' ' . $timeformat;
1556
+ } elseif ($type === 'date') {
1557
+ $format = $dateformat;
1558
+ } elseif ($type === 'time') {
1559
+ $format = $timeformat;
1560
+ }
 
 
 
 
 
1561
 
1562
+ return PostExpirator_Util::get_wp_date($format, $expirationdatets);
1563
+ }
 
 
 
 
 
 
 
 
 
 
1564
 
1565
+ add_shortcode('postexpirator', 'postexpirator_shortcode');
 
 
 
 
 
 
 
 
 
 
 
1566
 
1567
+ /**
1568
+ * Add the footer.
1569
+ *
1570
+ * @internal
1571
+ *
1572
+ * @access private
1573
+ */
1574
+ function postexpirator_add_footer($text)
1575
+ {
1576
+ global $post;
 
 
1577
 
1578
+ // Check to see if its enabled
1579
+ $displayFooter = get_option('expirationdateDisplayFooter');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1580
 
1581
+ // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1582
+ if ($displayFooter === false || $displayFooter == 0) {
1583
+ return $text;
1584
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1585
 
1586
+ $enabled = PostExpirator_Facade::is_expiration_enabled_for_post($post->ID);
 
 
 
1587
 
1588
+ if (empty($enabled)) {
1589
+ return $text;
1590
+ }
 
 
 
 
1591
 
1592
+ $expirationdatets = get_post_meta($post->ID, '_expiration-date', true);
1593
+ if (! is_numeric($expirationdatets)) {
1594
+ return $text;
1595
+ }
1596
 
1597
+ $dateformat = get_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT);
1598
+ $timeformat = get_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT);
1599
+ $expirationdateFooterContents = get_option('expirationdateFooterContents', POSTEXPIRATOR_FOOTERCONTENTS);
1600
+ $expirationdateFooterStyle = get_option('expirationdateFooterStyle', POSTEXPIRATOR_FOOTERSTYLE);
1601
 
1602
+ $search = array(
1603
+ 'EXPIRATIONFULL',
1604
+ 'EXPIRATIONDATE',
1605
+ 'EXPIRATIONTIME',
1606
+ );
1607
+
1608
+ $replace = array(
1609
+ PostExpirator_Util::get_wp_date("$dateformat $timeformat", $expirationdatets),
1610
+ PostExpirator_Util::get_wp_date($dateformat, $expirationdatets),
1611
+ PostExpirator_Util::get_wp_date($timeformat, $expirationdatets)
1612
+ );
 
 
 
 
 
 
 
1613
 
1614
+ $add_to_footer = '<p style="' . $expirationdateFooterStyle . '">' . str_replace(
1615
+ $search,
1616
+ $replace,
1617
+ $expirationdateFooterContents
1618
+ ) . '</p>';
1619
 
1620
+ return $text . $add_to_footer;
 
1621
  }
1622
 
1623
+ add_action('the_content', 'postexpirator_add_footer', 0);
 
 
 
1624
 
1625
+ /**
1626
+ * Check for Debug
1627
+ *
1628
+ * @internal
1629
+ *
1630
+ * @access private
1631
+ */
1632
+ function postexpirator_debug()
1633
+ {
1634
+ $debug = get_option('expirationdateDebug');
1635
+ // phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
1636
+ if ($debug == 1) {
1637
+ if (! defined('POSTEXPIRATOR_DEBUG')) {
1638
+ define('POSTEXPIRATOR_DEBUG', 1);
1639
+ }
1640
+ require_once(POSTEXPIRATOR_BASEDIR . '/post-expirator-debug.php'); // Load Class
 
 
 
 
 
 
 
 
 
1641
 
1642
+ return new PostExpiratorDebug();
1643
+ } else {
1644
+ if (! defined('POSTEXPIRATOR_DEBUG')) {
1645
+ define('POSTEXPIRATOR_DEBUG', 0);
1646
+ }
1647
 
1648
+ return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1649
  }
 
 
1650
  }
 
1651
 
1652
 
1653
+ /**
1654
+ * Add Stylesheet
1655
+ *
1656
+ * @internal
1657
+ *
1658
+ * @access private
1659
+ */
1660
+ function postexpirator_css($screen_id)
1661
+ {
1662
+ switch ($screen_id) {
1663
+ case 'post.php':
1664
+ case 'post-new.php':
1665
+ case 'settings_page_post-expirator':
1666
+ wp_enqueue_style(
1667
+ 'postexpirator-css',
1668
+ POSTEXPIRATOR_BASEURL . '/assets/css/style.css',
1669
+ array(),
1670
+ POSTEXPIRATOR_VERSION
1671
+ );
1672
+ break;
1673
+ case 'edit.php':
1674
+ wp_enqueue_style(
1675
+ 'postexpirator-edit',
1676
+ POSTEXPIRATOR_BASEURL . '/assets/css/edit.css',
1677
+ array(),
1678
+ POSTEXPIRATOR_VERSION
1679
+ );
1680
+ break;
1681
+ }
1682
  }
 
1683
 
1684
+ add_action('admin_enqueue_scripts', 'postexpirator_css', 10, 1);
1685
 
1686
+ /**
1687
+ * PublishPress Future Activation/Upgrade
1688
+ *
1689
+ * @internal
1690
+ *
1691
+ * @access private
1692
+ */
1693
+ function postexpirator_upgrade()
1694
+ {
1695
+ // Check for current version, if not exists, run activation
1696
+ $version = get_option('postexpiratorVersion');
1697
+ if ($version === false) { // not installed, run default activation
1698
+ postexpirator_activate();
 
 
 
1699
  update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1700
+ } else {
1701
+ if (version_compare($version, '1.6.1') === -1) {
1702
+ update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1703
+ update_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
1704
+ }
1705
 
1706
+ if (version_compare($version, '1.6.2') === -1) {
1707
+ update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1708
+ }
1709
 
1710
+ if (version_compare($version, '2.0.0-rc1') === -1) {
1711
+ global $wpdb;
1712
 
1713
+ // Schedule Events/Migrate Config
1714
+ $results = $wpdb->get_results(
1715
+ $wpdb->prepare(
1716
+ 'select post_id, meta_value from ' . $wpdb->postmeta . ' as postmeta, ' . $wpdb->posts . ' as posts where postmeta.post_id = posts.ID AND postmeta.meta_key = %s AND postmeta.meta_value >= %d',
1717
+ 'expiration-date',
1718
+ time()
1719
+ )
1720
+ );
1721
+ foreach ($results as $result) {
1722
+ wp_schedule_single_event($result->meta_value, 'postExpiratorExpire', array($result->post_id));
1723
+ $opts = array();
1724
+ $opts['id'] = $result->post_id;
1725
+ $posttype = get_post_type($result->post_id);
1726
+ if ($posttype === 'page') {
1727
+ $opts['expireType'] = strtolower(get_option('expirationdateExpiredPageStatus', 'Draft'));
1728
+ } else {
1729
+ $opts['expireType'] = strtolower(get_option('expirationdateExpiredPostStatus', 'Draft'));
1730
+ }
1731
+
1732
+ $cat = get_post_meta($result->post_id, '_expiration-date-category', true);
1733
+ if ((isset($cat) && ! empty($cat))) {
1734
+ $opts['category'] = $cat;
1735
+ $opts['expireType'] = 'category';
1736
+ }
1737
 
1738
+ PostExpirator_Facade::set_expire_principles($result->post_id, $opts);
 
 
 
1739
  }
1740
 
1741
+ // update meta key to new format
1742
+ $wpdb->query(
1743
+ $wpdb->prepare(
1744
+ "UPDATE $wpdb->postmeta SET meta_key = %s WHERE meta_key = %s",
1745
+ '_expiration-date',
1746
+ 'expiration-date'
1747
+ )
1748
+ );
1749
 
1750
+ // migrate defaults
1751
+ $pagedefault = get_option('expirationdateExpiredPageStatus');
1752
+ $postdefault = get_option('expirationdateExpiredPostStatus');
1753
+ if ($pagedefault) {
1754
+ update_option('expirationdateDefaultsPage', array('expireType' => $pagedefault));
1755
+ }
1756
+ if ($postdefault) {
1757
+ update_option('expirationdateDefaultsPost', array('expireType' => $postdefault));
1758
+ }
1759
 
1760
+ delete_option('expirationdateCronSchedule');
1761
+ delete_option('expirationdateAutoEnabled');
1762
+ delete_option('expirationdateExpiredPageStatus');
1763
+ delete_option('expirationdateExpiredPostStatus');
1764
+ update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
 
 
 
1765
  }
1766
 
1767
+ if (version_compare($version, '2.0.1') === -1) {
1768
+ // Forgot to do this in 2.0.0
1769
+ if (is_multisite()) {
1770
+ global $current_blog;
1771
+ wp_clear_scheduled_hook('expirationdate_delete_' . $current_blog->blog_id);
1772
+ } else {
1773
+ wp_clear_scheduled_hook('expirationdate_delete');
1774
+ }
1775
 
1776
+ update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
 
 
 
 
 
 
1777
  }
1778
 
1779
  update_option('postexpiratorVersion', POSTEXPIRATOR_VERSION);
1780
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1781
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1782
 
1783
+ add_action('admin_init', 'postexpirator_upgrade');
 
 
 
 
 
1784
 
1785
  /**
1786
+ * Called at plugin activation
1787
  *
1788
+ * @internal
 
 
 
 
 
1789
  *
1790
+ * @access private
 
 
 
 
 
1791
  */
1792
+ function postexpirator_activate()
1793
  {
1794
+ if (get_option('expirationdateDefaultDateFormat') === false) {
1795
+ update_option('expirationdateDefaultDateFormat', POSTEXPIRATOR_DATEFORMAT);
1796
+ }
1797
+ if (get_option('expirationdateDefaultTimeFormat') === false) {
1798
+ update_option('expirationdateDefaultTimeFormat', POSTEXPIRATOR_TIMEFORMAT);
1799
+ }
1800
+ if (get_option('expirationdateFooterContents') === false) {
1801
+ update_option('expirationdateFooterContents', POSTEXPIRATOR_FOOTERCONTENTS);
1802
+ }
1803
+ if (get_option('expirationdateFooterStyle') === false) {
1804
+ update_option('expirationdateFooterStyle', POSTEXPIRATOR_FOOTERSTYLE);
1805
+ }
1806
+ if (get_option('expirationdateDisplayFooter') === false) {
1807
+ update_option('expirationdateDisplayFooter', POSTEXPIRATOR_FOOTERDISPLAY);
1808
+ }
1809
+ if (get_option('expirationdateDebug') === false) {
1810
+ update_option('expirationdateDebug', POSTEXPIRATOR_DEBUGDEFAULT);
1811
+ }
1812
+ if (get_option('expirationdateDefaultDate') === false) {
1813
+ update_option('expirationdateDefaultDate', POSTEXPIRATOR_EXPIREDEFAULT);
1814
+ }
1815
+ if (get_option('expirationdateGutenbergSupport') === false) {
1816
+ update_option('expirationdateGutenbergSupport', 1);
1817
+ }
1818
  }
1819
 
1820
  /**
1821
+ * Called at plugin deactivation
1822
  *
1823
+ * @internal
 
1824
  *
1825
+ * @access private
 
 
1826
  */
1827
+ function expirationdate_deactivate()
1828
  {
1829
+ $preserveData = (bool)get_option('expirationdatePreserveData', true);
1830
+
1831
+ if ($preserveData) {
1832
+ return;
1833
+ }
1834
+
1835
+ delete_option('expirationdateExpiredPostStatus');
1836
+ delete_option('expirationdateExpiredPageStatus');
1837
+ delete_option('expirationdateDefaultDateFormat');
1838
+ delete_option('expirationdateDefaultTimeFormat');
1839
+ delete_option('expirationdateDisplayFooter');
1840
+ delete_option('expirationdateFooterContents');
1841
+ delete_option('expirationdateFooterStyle');
1842
+ delete_option('expirationdateCategory');
1843
+ delete_option('expirationdateCategoryDefaults');
1844
+ delete_option('expirationdateDebug');
1845
+ delete_option('postexpiratorVersion');
1846
+ delete_option('expirationdateCronSchedule');
1847
+ delete_option('expirationdateDefaultDate');
1848
+ delete_option('expirationdateDefaultDateCustom');
1849
+ delete_option('expirationdateAutoEnabled');
1850
+ delete_option('expirationdateDefaultsPage');
1851
+ delete_option('expirationdateDefaultsPost');
1852
+ delete_option('expirationdateGutenbergSupport');
1853
+ delete_option('expirationdatePreserveData');
1854
+
1855
+ // what about custom post types? - how to clean up?
1856
+ if (is_multisite()) {
1857
+ global $current_blog;
1858
+
1859
+ wp_clear_scheduled_hook('expirationdate_delete_' . $current_blog->blog_id);
1860
+ } else {
1861
+ wp_clear_scheduled_hook('expirationdate_delete');
1862
+ }
1863
+ require_once(POSTEXPIRATOR_BASEDIR . '/post-expirator-debug.php');
1864
+ $debug = new PostExpiratorDebug();
1865
+ $debug->removeDbTable();
1866
  }
1867
 
1868
+ register_deactivation_hook(__FILE__, 'expirationdate_deactivate');
1869
+
1870
  /**
1871
+ * The walker class for category checklist.
1872
  *
1873
+ * @internal
 
1874
  *
1875
+ * @access private
 
 
1876
  */
1877
+ class Walker_PostExpirator_Category_Checklist extends Walker
1878
  {
1879
+
1880
+ /**
1881
+ * What the class handles.
1882
+ *
1883
+ * @var string
1884
+ */
1885
+ public $tree_type = 'category';
1886
+
1887
+ /**
1888
+ * DB fields to use.
1889
+ *
1890
+ * @var array
1891
+ */
1892
+ public $db_fields = array('parent' => 'parent', 'id' => 'term_id'); // TODO: decouple this
1893
+
1894
+ /**
1895
+ * The disabled attribute.
1896
+ *
1897
+ * @var string
1898
+ */
1899
+ public $disabled = '';
1900
+
1901
+ /**
1902
+ * Set the disabled attribute.
1903
+ */
1904
+ public function setDisabled()
1905
+ {
1906
+ $this->disabled = 'disabled="disabled"';
1907
+ }
1908
+
1909
+ /**
1910
+ * Starts the list before the elements are added.
1911
+ *
1912
+ * The $args parameter holds additional values that may be used with the child
1913
+ * class methods. This method is called at the start of the output list.
1914
+ *
1915
+ * @param string $output Used to append additional content (passed by reference).
1916
+ * @param int $depth Depth of the item.
1917
+ * @param array $args An array of additional arguments.
1918
+ */
1919
+ public function start_lvl(&$output, $depth = 0, $args = array())
1920
+ {
1921
+ $indent = str_repeat("\t", $depth);
1922
+ $output .= "$indent<ul class='children'>\n";
1923
+ }
1924
+
1925
+ /**
1926
+ * Ends the list of after the elements are added.
1927
+ *
1928
+ * The $args parameter holds additional values that may be used with the child
1929
+ * class methods. This method finishes the list at the end of output of the elements.
1930
+ *
1931
+ * @param string $output Used to append additional content (passed by reference).
1932
+ * @param int $depth Depth of the item.
1933
+ * @param array $args An array of additional arguments.
1934
+ */
1935
+ public function end_lvl(&$output, $depth = 0, $args = array())
1936
+ {
1937
+ $indent = str_repeat("\t", $depth);
1938
+ $output .= "$indent</ul>\n";
1939
+ }
1940
+
1941
+ /**
1942
+ * Start the element output.
1943
+ *
1944
+ * The $args parameter holds additional values that may be used with the child
1945
+ * class methods. Includes the element output also.
1946
+ *
1947
+ * @param string $output Used to append additional content (passed by reference).
1948
+ * @param object $category The data object.
1949
+ * @param int $depth Depth of the item.
1950
+ * @param array $args An array of additional arguments.
1951
+ * @param int $current_object_id ID of the current item.
1952
+ */
1953
+ public function start_el(&$output, $category, $depth = 0, $args = array(), $current_object_id = 0)
1954
+ {
1955
+ // @TODO remove extract
1956
+ // phpcs:ignore WordPress.PHP.DontExtract.extract_extract
1957
+ extract($args);
1958
+ if (empty($taxonomy)) {
1959
+ $taxonomy = 'category';
1960
+ }
1961
+
1962
+ $name = 'expirationdate_category';
1963
+
1964
+ $class = in_array($category->term_id, $popular_cats, true) ? ' class="expirator-category"' : '';
1965
+ $output .= "\n<li id='expirator-{$taxonomy}-{$category->term_id}'$class>" . '<label class="selectit"><input value="' . $category->term_id . '" type="checkbox" name="' . $name . '[]" id="expirator-in-' . $taxonomy . '-' . $category->term_id . '"' . checked(
1966
+ in_array($category->term_id, $selected_cats, true),
1967
+ true,
1968
+ false
1969
+ ) . disabled(empty($args['disabled']), false, false) . ' ' . $this->disabled . '/> ' . esc_html(
1970
+ apply_filters('the_category', $category->name)
1971
+ ) . '</label>';
1972
+ }
1973
+
1974
+ /**
1975
+ * Ends the element output, if needed.
1976
+ *
1977
+ * The $args parameter holds additional values that may be used with the child class methods.
1978
+ *
1979
+ * @param string $output Used to append additional content (passed by reference).
1980
+ * @param object $category The data object.
1981
+ * @param int $depth Depth of the item.
1982
+ * @param array $args An array of additional arguments.
1983
+ */
1984
+ public function end_el(&$output, $category, $depth = 0, $args = array())
1985
+ {
1986
+ $output .= "</li>\n";
1987
+ }
1988
  }
1989
 
1990
  /**
1991
+ * Get the HTML for expire type.
1992
  *
1993
+ * @internal
 
1994
  *
1995
+ * @access private
 
 
 
 
1996
  */
1997
+ function _postexpirator_expire_type($opts)
1998
  {
1999
+ if (empty($opts)) {
2000
+ return false;
 
 
 
2001
  }
2002
 
2003
+ PostExpirator_Display::getInstance()->render_template('how-to-expire', array('opts' => $opts));
 
 
 
 
 
 
 
 
 
2004
  }
2005
 
2006
  /**
2007
+ * Get the HTML for taxonomy.
2008
  *
2009
+ * @internal
2010
  *
2011
+ * @access private
 
 
 
2012
  */
2013
+ function _postexpirator_taxonomy($opts)
2014
  {
2015
+ if (empty($opts)) {
2016
+ return false;
2017
+ }
2018
 
2019
+ if (! isset($opts['name'])) {
2020
+ return false;
2021
+ }
 
 
 
 
 
 
 
 
 
2022
 
2023
+ $name = sanitize_text_field($opts['name']);
 
2024
 
2025
+ if (! isset($id)) {
2026
+ $id = $name;
2027
+ }
 
 
 
 
 
 
 
 
 
2028
 
 
 
 
 
 
 
 
 
 
 
2029
  $disabled = false;
2030
+ if (isset($opts['disabled'])) {
2031
+ $disabled = (bool)$opts['disabled'];
2032
+ }
2033
+
2034
  $onchange = '';
2035
+ if (isset($opts['onchange'])) {
2036
+ $onchange = sanitize_text_field($opts['onchange']);
2037
+ }
2038
+
2039
  $type = '';
2040
+ if (isset($opts['type'])) {
2041
+ $type = sanitize_text_field($opts['type']);
2042
+ }
2043
 
2044
+ $selected = false;
2045
+ if (isset($opts['selected'])) {
2046
+ $selected = $opts['selected'];
2047
+ }
2048
 
2049
+ $taxonomies = get_object_taxonomies($type, 'object');
2050
+ $taxonomies = wp_filter_object_list($taxonomies, array('hierarchical' => true));
2051
+
2052
+ if (empty($taxonomies)) {
2053
+ return esc_html__('No taxonomies found', 'post-expirator');
2054
+ }
2055
+
2056
+ $output = [];
2057
+
2058
+ $output[] = '<select name="' . esc_attr($name) . '" id="' . esc_attr($id) . '"' . ($disabled === true ? ' disabled="disabled"' : '') . ' onchange="' . esc_attr($onchange) . '">';
2059
 
 
 
 
 
2060
  foreach ($taxonomies as $taxonomy) {
2061
+ $output[] = '<option value="' . esc_attr($taxonomy->name) . '" ' . ($selected === esc_attr($taxonomy->name) ? 'selected="selected"' : '') . '>' . esc_html($taxonomy->label) . '</option>';
2062
  }
2063
 
2064
+ $output[] = '</select>';
2065
+ $output[] = '<p class="description">' . esc_html__(
2066
  'Select the hierarchical taxonomy to be used for "category" based expiration.',
2067
  'post-expirator'
2068
  ) . '</p>';
2069
+
2070
+ return implode("<br/>\n", $output);
2071
  }
2072
 
2073
+ /**
2074
+ * Include the JS.
2075
+ *
2076
+ * @internal
2077
+ *
2078
+ * @access private
2079
+ */
2080
+ function postexpirator_quickedit_javascript()
2081
+ {
2082
+ // if using code as plugin
2083
+ wp_enqueue_script('postexpirator-edit', POSTEXPIRATOR_BASEURL . '/assets/js/admin-edit.js', array(
2084
+ 'jquery',
2085
+ 'inline-edit-post'
2086
+ ), POSTEXPIRATOR_VERSION, true);
2087
+
2088
+ global $wp_version;
2089
+
2090
+ wp_localize_script(
2091
+ 'postexpirator-edit', 'postexpiratorConfig', array(
2092
+ 'wpAfter6' => version_compare($wp_version, '6', '>='),
2093
+ 'ajax' => array(
2094
+ 'nonce' => wp_create_nonce(POSTEXPIRATOR_SLUG),
2095
+ 'bulk_edit' => 'manage_wp_posts_using_bulk_quick_save_bulk_edit',
2096
+ ),
2097
+ )
2098
+ );
2099
+ }
2100
 
2101
+ add_action('admin_print_scripts-edit.php', 'postexpirator_quickedit_javascript');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
 
2103
+ function postexpirator_date_save_bulk_edit()
2104
+ {
2105
+ // Save Bulk edit data
2106
+ $wpListTable = _get_list_table('WP_Posts_List_Table');
2107
+ $doaction = $wpListTable->current_action();
2108
+ $facade = PostExpirator_Facade::getInstance();
2109
+
2110
+ if (
2111
+ 'edit' !== $doaction
2112
+ || ! isset($_REQUEST['postexpirator_view'])
2113
+ || $_REQUEST['postexpirator_view'] !== 'bulk-edit'
2114
+ || ! isset($_REQUEST['expirationdate_status'])
2115
+ || sanitize_key($_REQUEST['expirationdate_status']) === 'no-change'
2116
+ || ! $facade->current_user_can_expire_posts()
2117
+ ) {
2118
+ return;
2119
+ }
2120
 
2121
+ check_admin_referer('bulk-posts');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2122
 
2123
+ $status = sanitize_key($_REQUEST['expirationdate_status']);
 
 
 
 
2124
 
2125
+ $postIds = array_map('intval', (array)$_REQUEST['post']);
 
 
2126
 
2127
+ if (empty($postIds)) {
2128
+ return;
2129
+ }
2130
 
2131
+ $postType = get_post_type($postIds[0]);
2132
 
2133
+ $defaults = PostExpirator_Facade::get_default_expiry($postType);
2134
+
2135
+ $year = $defaults['year'];
2136
+ if (isset($_REQUEST['expirationdate_year'])) {
2137
+ $year = (int)$_REQUEST['expirationdate_year'];
2138
+ }
2139
+
2140
+ $month = $defaults['month'];
2141
+ if (isset($_REQUEST['expirationdate_month'])) {
2142
+ $month = (int)$_REQUEST['expirationdate_month'];
2143
+ }
2144
+
2145
+ $day = $defaults['day'];
2146
+ if (isset($_REQUEST['expirationdate_day'])) {
2147
+ $day = (int)$_REQUEST['expirationdate_day'];
2148
+ }
2149
+
2150
+ $hour = $defaults['hour'];
2151
+ if (isset($_REQUEST['expirationdate_hour'])) {
2152
+ $hour = (int)$_REQUEST['expirationdate_hour'];
2153
+ }
2154
+
2155
+ $minute = $defaults['minute'];
2156
+ if (isset($_REQUEST['expirationdate_minute'])) {
2157
+ $minute = (int)$_REQUEST['expirationdate_minute'];
2158
+ }
2159
 
2160
+ $newExpirationDate = get_gmt_from_date("$year-$month-$day $hour:$minute:0", 'U');
2161
 
2162
+ if (! $newExpirationDate) {
2163
  return;
2164
  }
2165
 
2166
+ foreach ($postIds as $postId) {
2167
+ $postExpirationDate = get_post_meta($postId, '_expiration-date', true);
2168
+
2169
+ if ($status === 'remove-only') {
2170
+ delete_post_meta($postId, '_expiration-date');
2171
+ postexpirator_unschedule_event($postId);
2172
+ continue;
 
 
 
 
 
 
 
 
 
 
 
2173
  }
2174
 
2175
+ $updateExpiry = ($status === 'change-only' && ! empty($postExpirationDate))
2176
+ || ($status === 'add-only' && empty($postExpirationDate))
2177
+ || $status === 'change-add';
2178
+
2179
+
2180
+ if ($updateExpiry) {
2181
+ $opts = PostExpirator_Facade::get_expire_principles($postId);
2182
+ $opts['expireType'] = sanitize_key($_REQUEST['expirationdate_expiretype']);
2183
 
2184
  if (in_array($opts['expireType'], array('category', 'category-add', 'category-remove'), true)) {
2185
+ $opts['category'] = PostExpirator_Util::sanitize_array_of_integers($_REQUEST['expirationdate_category']); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
2186
  }
2187
 
2188
+ PostExpirator_Facade::set_expire_principles($postId, $opts);
2189
+ update_post_meta($postId, '_expiration-date', $newExpirationDate);
2190
+ postexpirator_schedule_event($postId, $newExpirationDate, $opts);
2191
  }
2192
  }
2193
  }
 
2194
 
2195
+ add_filter('admin_init', 'postexpirator_date_save_bulk_edit');
2196
 
2197
+ /**
2198
+ * Autoloads the classes.
2199
+ */
2200
+ function postexpirator_autoload($class)
2201
+ {
2202
+ $namespaces = array('PostExpirator');
2203
+ foreach ($namespaces as $namespace) {
2204
+ if (substr($class, 0, strlen($namespace)) === $namespace) {
2205
+ $class = str_replace('_', '', strstr($class, '_'));
2206
+ $filename = POSTEXPIRATOR_BASEDIR . '/classes/' . sprintf('%s.class.php', $class);
2207
+ if (is_readable($filename)) {
2208
+ require_once $filename;
2209
+
2210
+ return true;
2211
+ }
2212
  }
2213
  }
2214
+
2215
+ return false;
2216
  }
2217
 
2218
+ spl_autoload_register('postexpirator_autoload');
 
2219
 
2220
+ /**
2221
+ * Launch the plugin by initializing its helpers.
2222
+ */
2223
+ function postexpirator_launch()
2224
+ {
2225
+ PostExpirator_Facade::getInstance();
2226
+ }
2227
 
2228
+ postexpirator_launch();
 
 
 
 
 
2229
  }
 
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Author URI: https://publishpress.com
5
  Tags: expire, posts, pages, schedule
6
  Requires at least: 5.3
7
  Tested up to: 6.0
8
- Stable tag: 2.7.3
9
 
10
  Add an expiration date to posts. When your post is automatically unpublished, you can delete the post, change the status, or update the post categories.
11
 
@@ -81,363 +81,331 @@ This section describes how to install the plugin and get it working.
81
 
82
  == Changelog ==
83
 
 
 
 
 
 
 
 
 
 
 
 
84
  = [2.7.3] - 27 Jan 2022 =
85
 
86
- * Fixed: Fix the selection of categories when setting a post to expire, #220;
87
 
88
  = [2.7.2] - 25 Jan 2022 =
89
 
90
- * Changed: Added more clear debug message if the cron event was not scheduled due to an error;
91
- * Changed: Refactored the list of cron schedules in the Diagnostics tab adding more post information, #215;
92
- * Changed: Removed the admin notice about the plugin renaming;
93
- * Added: Added the event GUID as tooltip to each post in the Current Cron Schedule list on the Diagnostics page, #214;
94
- * Fixed: Fix the Expires column in the posts page correctly identifying the post ID on cron event with multiple IDs, #210;
95
- * Fixed: Fix wrong function used to escape a html attributes on a setting page;
96
- * Fixed: Fix missed sanitization for some data on admin pages;
97
- * Fixed: Fix some false positives given by PHPCS;
98
- * Fixed: Fix expiration data processing avoid to process for deactivated posts;
99
- * Fixed: Fix a typo in the diagnostics settings tab;
100
- * Fixed: Fix the checkbox state for posts that are not set to expire, #217;
101
 
102
  = [2.7.1] - 12 Jan 2022 =
103
 
104
- * Added: Add visual indicator to the cron event status in the settings page, #155;
105
- * Added: Add small help text to the Expires column icon to say if the event is scheduled or not;
106
- * Added: Add additional permission check before loading the settings page;
107
- * Added: Add CLI command to expire a post, #206;
108
- * Changed: Remove the plugin description from the settings page, #194;
109
- * Changed: Deprecated a not used function called "expirationdate_get_blog_url";
110
- * Changed: Updated the min required WP to 5.3 due to the requirement of using the function 'wp_date';
111
- * Fixed: Fix PHP error while purging the debug log, #135;
112
- * Fixed: Fix composer's autoloader path;
113
- * Fixed: Code cleanup. Removed comments and dead code;
114
- * Fixed: Fixed the block for direct access to view files;
115
- * Fixed: Added check for is_admin before checking if the user has permission to see the settings page;
116
- * Fixed: Avoid running sortable column code if not in the admin;
117
- * Fixed: Cross-site scripting (XSS) was possible if a third party allowed html or javascript into a database setting or language file;
118
- * Fixed: Fix the URL for the View Debug Log admin page, #196;
119
- * Fixed: Removed unopened span tag from a form;
120
- * Fixed: Added a secondary admin and ajax referer check when saving expiration post data;
121
- * Fixed: Fix the option "Preserve data after deactivating the plugin" that was not saving the setting, #198;
122
- * Fixed: Fix the post expiration function to make sure a post is not expired if the checkbox is not checked on it, #199;
123
- * Fixed: Fix the post expiration meta not being cleanup after a post expires, #207;
124
- * Fixed: Fix the post expiration checkbox status when post type is set configured to check it by default;
125
 
126
  = [2.7.0] - 02 Dec 2021 =
127
 
128
- * Changed: Rename the plugin from Post Expirator to PublishPress Future, #14;
129
- * Changed: Add the PublishPress footer and branding, #68;
130
- * Changed: Separate the settings into different tabs, #97, #98;
131
- * Changed: Rename the "General Settings" tab to "Default", #99;
132
- * Added: Add new admin menu item: Future, #8;
133
- * Fixed: Fix the 1hr diff between expiration time when editing and shown in post list, #138;
134
- * Fixed: Post Expirator is adding wrong expiry dates to old posts, #160;
135
- * Fixed: Post Expirator is setting unwanted expire time for posts, #187;
136
 
137
  = [2.6.3] - 18 Nov 2021 =
138
 
139
- * Fixed: Fix the timezone applied to time fields, #134;
140
- * Fixed: Add the timezone string to the time fields, #134;
141
- * Fixed: Fix the selected expiring categories on the quick edit panel, #160;
142
- * Added: Add setting field for choosing between preserve or delete data when the plugin is deactivated, #137;
143
- * Fixed: Fix E_COMPILER_ERROR when cleaning up the debug table, #183;
144
- * Fixed: Fix translation and localization of date and time, #150;
145
 
146
  = [2.6.2] - 04 Nov 2021 =
147
 
148
- * Fixed: Fix fatal error: Call to a member function add_cap() on null, #167;
149
- * Fixed: Fix hierarchical taxonomy selection error for multiple taxonomies, #144;
150
- * Fixed: Fix PHP warning: use of undefined constant - assumed 'expireType', #617;
151
- * Fixed: Fix translation of strings in the block editor panel, #163;
152
- * Fixed: Fix category not being added or removed when the post expires, #170;
153
- * Fixed: Fix PHP notice: Undefined variable: merged, #174;
154
- * Fixed: Fix category-based expiration for custom post types in classic editor, #179;
155
- * Fixed: Fix expiration date being added to old posts when edited, #168;
156
 
157
  = [2.6.1] - 27 Oct 2021 =
158
 
159
- * Fixed: Fix category replace not saving, #159;
160
- * Fixed: Fix auto enabled settings, #158;
161
- * Fixed: Fix expiration data and cron on Gutenberg style box, #156, #136;
162
- * Fixed: Fix the request that loads categories in the Gutenberg style panel, #133;
163
- * Fixed: Fix the category replace not working with the new Gutenberg style panel, #127;
164
- * Fixed: Fix the default options for the Gutenberg style panel, #145;
165
- * Added: Add post information to the scheduled list for easier debugging, #164;
166
- * Added: Add a review request after a specific period of usage, #103;
167
- * Added: Improve the list of cron tasks, filtering only the tasks related to the plugin, #153;
168
 
169
  = [2.6.0] - 04 Oct 2021 =
170
 
171
- * Added: Add specific capabilities for expiring posts, #141;
172
 
173
  = [2.5.1] - 27 Sep 2021 =
174
 
175
- * Fixed: Default Expiration Categories cannot be unset, #94;
176
- * Fixed: Tidy up design for Classic Editor version, #83;
177
- * Fixed: All posts now carry the default expiration, #115;
178
- * Fixed: Error with 2.5.0 and WordPress 5.8.1, #110;
179
- * Fixed: Do not show private post types that don't have an admin UI, #116;
180
 
181
  = [2.5.0] - 08 Aug 2021 =
182
 
183
- * Fixed: Appearance Widgets screen shows PHP Notice, #92;
184
- * Fixed: Stop the PublishPress Future box from appearing in non-public post types, #78;
185
- * Added: Add "How to Expire" to Quick Edit, #62;
186
- * Changed: Settings UI enhancement, #14;
187
- * Fixed: Hide metabox from Media Library files, #56;
188
- * Added: Support for Gutenberg block editor, #10;
189
- * Added: Set a default time per post type, #12;
190
-
191
 
192
  = [2.4.4] - 22 Jul 2021 =
193
 
194
- * Fixed: Fix conflict with the plugin WCFM, #60;
195
- * Fixed: Fix the Category: Remove option, #61;
196
 
197
  = [2.4.3] - 07 Jul 2021 =
198
 
199
- * Added: Expose wrappers for legacy functions, #40;
200
- * Added: Support for quotes in Default expiry, #43;
201
- * Fixed: Default expiry duration is broken for future years, #39;
202
- * Fixed: Translation bug, #5;
203
- * Fixed: Post expiring one year early, #24;
204
- * Changed: Bulk and Quick Edit boxes default to current date/year, #46;
205
 
206
  = [2.4.2] =
207
 
208
- * Fixed: Bulk edit does not change scheduled event bug, #29;
209
- * Fixed: Date not being translated in shortcode, #16;
210
- * Fixed: Bulk Edit doesn't work, #4;
211
 
212
  = [2.4.1] =
213
 
214
- * Fix: Updated deprecated .live jQuery reference.
215
 
216
  = [2.4.0] =
217
 
218
- * Fix: Fixed PHP Error with PHP 7.
219
 
220
  = [2.3.1] =
221
 
222
- * Fix: Fixed PHP Error that snuck in on some installations.
223
 
224
  = [2.3.0] =
225
 
226
- * New: Email notification upon post expiration. A global email can be set, blog admins can be selected and/or specific users based on post type can be notified.
227
- * New: Expiration Option Added - Stick/Unstick post is now available.
228
- * New: Expiration Option Added - Trash post is now available.
229
- * New: Added custom actions that can be hooked into when expiration events are scheduled / unscheduled.
230
- * Fix: Minor HTML Code Issues
231
 
232
  = [2.2.2] =
233
 
234
- * Fix: Quick Edit did not retain the expire type setting, and defaulted back to "Draft". This has been resolved.
235
 
236
  = [2.2.1] =
237
 
238
- * Fix: Fixed issue with bulk edit not correctly updating the expiration date.
239
 
240
  = [2.2.0] =
241
 
242
- * New: Quick Edit - setting expiration date and toggling post expiration status can now be done via quick edit.
243
- * New: Bulk Edit - changing expiration date on posts that already are configured can now be done via bulk edit.
244
- * New: Added ability to order by Expiration Date in dashboard.
245
- * New: Adjusted formatting on defaults page. Multiple post types are now displayed cleaner.
246
- * Fix: Minor Code Cleanup
247
 
248
  = [2.1.4] =
249
 
250
- * Fix: PHP Strict errors with 5.4+
251
- * Fix: Removed temporary timezone conversion - now using core functions again
252
 
253
  = [2.1.3] =
254
 
255
- * Fix: Default category selection now saves correctly on default settings screen
256
 
257
  = [2.1.2] =
258
 
259
- * Security: Added form nonce for protect against possible CSRF
260
- * Security: Fixed XSS issue on settings pages
261
- * New: Added check to show if WP_CRON is enabled on diagnostics page
262
- * Fix: Minor Code Cleanup
263
 
264
  = [2.1.1] =
265
 
266
- * New: Added the option to disable post expirator for certain post types if desired
267
- * Fix: Fixed php warning issue cause when post type defaults are not set
268
 
269
  = [2.1.0] =
270
 
271
- * New: Added support for hierarchical custom taxonomy
272
- * New: Enhanced custom post type support
273
- * Fix: Updated debug function to be friendly for scripted calls
274
- * Fix: Change to only show public custom post types on defaults screen
275
- * Fix: Removed category expiration options for 'pages', which is currently unsupported
276
- * Fix: Some date calls were getting "double" converted for the timezone pending how other plugins handled date - this issue should now be resolved
277
 
278
  = [2.0.1] =
279
 
280
- * Removes old scheduled hook - this was not done completely in the 2.0.0 upgrade
281
- * Old option cleanup
282
 
283
  = [2.0.0] =
284
 
285
- This is a major update of the core functions of this plugin. All current plugins and settings should be upgraded to the new formats and work as expected. Any posts currently schedule to be expirated in the future will be automatically upgraded to the new format.
286
-
287
- * New: Improved debug calls and logging
288
- * New: Added the ability to expire to a "private" post
289
- * New: Added the ability to expire by adding or removing categories. The old way of doing things is now known as replacing categories
290
- * New: Revamped the expiration process - the plugin no longer runs on an minute, hourly, or other schedule. Each expiration event schedules a unique event to run, conserving system resources and making things more efficient
291
- * New: The type of expiration event can be selected for each post, directly from the post editing screen
292
- * New: Ability to set defaults for each post type (including custom posts)
293
- * New: Renamed expiration-date meta value to _expiration-date
294
- * New: Revamped timezone handling to be more correct with WordPress standards and fix conflicts with other plugins
295
- * New: 'Expires' column on post display table now uses the default date/time formats set for the blog
296
- * Fix: Removed kses filter calls when then schedule task runs that was causing code entered as unfiltered_html to be removed
297
- * Fix: Updated some calls of date to now use date_i18n
298
- * Fix: Most (if not all) php error/warnings should be addressed
299
- * Fix: Updated wpdb calls in the debug class to use wpdb_prepare correctly
300
- * Fix: Changed menu capability option from "edit_plugin" to "manage_options"
301
 
302
  = [1.6.2] =
303
 
304
- * Added the ability to configure the post expirator to be enabled by default for all new posts
305
- * Changed some instances of mktime to time
306
- * Fixed missing global call for MS installs
307
 
308
  = [1.6.1] =
309
 
310
- * Tweaked error messages, removed clicks for reset cron event
311
- * Switched cron schedule functions to use "current_time('timestamp')"
312
- * Cleaned up default values code
313
- * Added option to allow user to select any cron schedule (minute, hourly, twicedaily, daily) - including other defined schedules
314
- * Added option to set default expiration duration - options are none, custom, or publish time
315
- * Code cleanup - php notice
316
 
317
  = [1.6] =
318
 
319
- * Fixed invalid html
320
- * Fixed i18n issues with dates
321
- * Fixed problem when using "Network Activate" - reworked plugin activation process
322
- * Replaced "Upgrade" tab with new "Diagnostics" tab
323
- * Reworked expire logic to limit the number of sql queries needed
324
- * Added debugging
325
- * Various code cleanup
326
 
327
  = [1.5.4] =
328
 
329
- * Cleaned up deprecated function calls
330
 
331
  = [1.5.3] =
332
 
333
- * Fixed bug with sql expiration query (props to Robert & John)
334
 
335
  = [1.5.2] =
336
 
337
- * Fixed bug with shortcode that was displaying the expiration date in the incorrect timezone
338
- * Fixed typo on settings page with incorrect shortcode name
339
 
340
  = [1.5.1] =
341
 
342
- * Fixed bug that was not allow custom post types to work
343
 
344
  = [1.5] =
345
 
346
- * Moved Expirator Box to Sidebar and cleaned up meta code
347
- * Added ability to expire post to category
348
 
349
  = [1.4.3] =
350
 
351
- * Fixed issue with 3.0 multisite detection
352
 
353
  = [1.4.2] =
354
 
355
- * Added post expirator POT to /languages folder
356
- * Fixed issue with plugin admin navigation
357
- * Fixed timezone issue on plugin options screen
358
 
359
  = [1.4.1] =
360
 
361
- * Added support for custom post types (Thanks Thierry)
362
- * Added i18n support (Thanks Thierry)
363
- * Fixed issue where expiration date was not shown in the correct timezone in the footer
364
- * Fixed issue where on some systems the expiration did not happen when scheduled
365
 
366
  = [1.4] =
367
 
368
- NOTE: After upgrading, you may need to reset the cron schedules. Following onscreen notice if prompted. Previously scheduled posts will not be updated, they will be deleted referncing the old timezone setting. If you wish to update them, you will need to manually update the expiration time.
 
 
369
 
370
- * Fixed compatability issues with Wordpress - plugin was originally coded for WPMU - should now work on both
371
- * Added ability to schedule post expiration by minute
372
- * Fixed timezone - now uses the same timezone as configured by the blog
373
 
374
  = [1.3.1] =
375
 
376
- * Fixed sporadic issue of expired posts not being removed
377
 
378
  = [1.3] =
379
 
380
- * Expiration date is now retained across all post status changes
381
- * Modified date/time format options for shortcode postexpirator tag
382
- * Added the ability to add text automatically to the post footer if expiration date is set
383
 
384
  = [1.2.1] =
385
 
386
- * Fixed issue with display date format not being recognized after upgrade
387
 
388
  = [1.2] =
389
 
390
- * Changed wording from "Expiration Date" to "Post Expirator" and moved the configuration options to the "Settings" tab.
391
- * Added shortcode tag [postexpirator] to display the post expiration date within the post
392
- ** Added new setting for the default format
393
- * Fixed bug where expiration date was removed when a post was auto saved
394
 
395
  = [1.1] =
396
 
397
- * Expired posts retain expiration date
398
 
399
  = [1.0] =
400
 
401
- * Initial Release
402
-
403
- == Upgrade Notice ==
404
-
405
- = 2.2.0 =
406
- Quick Edit/Bulk Edit Added. Sortable Expiration Date Fields Added
407
-
408
- = 2.1.4 =
409
- Fixed PHP Strict errors with 5.4+
410
- Removed temporary timezone conversion functions
411
-
412
-
413
- = 2.1.3 =
414
- Default category selection now saves correctly on default settings screen
415
-
416
- = 2.1.2 =
417
- Important Update - Security Fixes - See Changelog
418
-
419
- = 2.0.1 =
420
- Removes old scheduled hook - this was not done completely in the 2.0.0 upgrade
421
-
422
- = 2.0.0 =
423
- This is a major update of the core functions of this plugin. All current plugins and settings should be upgraded to the new formats and work as expected. Any posts currently schedule to be expirated in the future will be automatically upgraded to the new format.
424
-
425
- = 1.6.1 =
426
- Tweaked error messages, added option to allow user to select cron schedule and set default exiration duration
427
-
428
- = 1.6 =
429
- Fixed invalid html
430
- Fixed i18n issues with dates
431
- Fixed problem when using "Network Activate" - reworked plugin activation process
432
- Replaced "Upgrade" tab with new "Diagnostics" tab
433
- Reworked expire logic to limit the number of sql queries needed
434
- Added debugging
435
-
436
- = 1.5.4 =
437
- Cleaned up deprecated function calls
438
-
439
- = 1.5.3 =
440
- Fixed bug with sql expiration query (props to Robert & John)
441
-
442
- = 1.5.2 =
443
- Fixed shortcode timezone issue
5
  Tags: expire, posts, pages, schedule
6
  Requires at least: 5.3
7
  Tested up to: 6.0
8
+ Stable tag: 2.7.4
9
 
10
  Add an expiration date to posts. When your post is automatically unpublished, you can delete the post, change the status, or update the post categories.
11
 
81
 
82
  == Changelog ==
83
 
84
+ = [2.7.4] - 07 Jun, 2022 =
85
+
86
+ * CHANGED: Add library to protect breaking site when multiple instances of the plugin are activated;
87
+ * CHANGED: Invert order of the debug log, showing now on ASC order;
88
+ * CHANGED: Make bulk edit date fields required, #256;
89
+ * FIXED: Fix unlocalized string on the taxonomy field (Thanks to Alex Lion), #255;
90
+ * FIXED: Fix default taxonomy selection for Post Types in the settings, #144;
91
+ * FIXED: Fix typo in the hook name 'postexpirator_schedule' (Thanks to Nico Mollet), #244;
92
+ * FIXED: Fix bulk editing for WordPress v6.0, #251;
93
+ * FIXED: Fix the Gutenberg panel for custom post types created on PODS in WordPress v6.0, #250;
94
+
95
  = [2.7.3] - 27 Jan 2022 =
96
 
97
+ * FIXED: Fix the selection of categories when setting a post to expire, #220;
98
 
99
  = [2.7.2] - 25 Jan 2022 =
100
 
101
+ * ADDED: Added the event GUID as tooltip to each post in the Current Cron Schedule list on the Diagnostics page, #214;
102
+ * CHANGED: Added more clear debug message if the cron event was not scheduled due to an error;
103
+ * CHANGED: Refactored the list of cron schedules in the Diagnostics tab adding more post information, #215;
104
+ * CHANGED: Removed the admin notice about the plugin renaming;
105
+ * FIXED: Fix the Expires column in the posts page correctly identifying the post ID on cron event with multiple IDs, #210;
106
+ * FIXED: Fix wrong function used to escape a html attributes on a setting page;
107
+ * FIXED: Fix missed sanitization for some data on admin pages;
108
+ * FIXED: Fix some false positives given by PHPCS;
109
+ * FIXED: Fix expiration data processing avoid to process for deactivated posts;
110
+ * FIXED: Fix a typo in the diagnostics settings tab;
111
+ * FIXED: Fix the checkbox state for posts that are not set to expire, #217;
112
 
113
  = [2.7.1] - 12 Jan 2022 =
114
 
115
+ * ADDED: Add visual indicator to the cron event status in the settings page, #155;
116
+ * ADDED: Add small help text to the Expires column icon to say if the event is scheduled or not;
117
+ * ADDED: Add additional permission check before loading the settings page;
118
+ * ADDED: Add CLI command to expire a post, #206;
119
+ * CHANGED: Remove the plugin description from the settings page, #194;
120
+ * CHANGED: Deprecated a not used function called "expirationdate_get_blog_url";
121
+ * CHANGED: Updated the min required WP to 5.3 due to the requirement of using the function 'wp_date';
122
+ * FIXED: Fix PHP error while purging the debug log, #135;
123
+ * FIXED: Fix composer's autoloader path;
124
+ * FIXED: Code cleanup. Removed comments and dead code;
125
+ * FIXED: Fixed the block for direct access to view files;
126
+ * FIXED: Added check for is_admin before checking if the user has permission to see the settings page;
127
+ * FIXED: Avoid running sortable column code if not in the admin;
128
+ * FIXED: Cross-site scripting (XSS) was possible if a third party allowed html or javascript into a database setting or language file;
129
+ * FIXED: Fix the URL for the View Debug Log admin page, #196;
130
+ * FIXED: Removed unopened span tag from a form;
131
+ * FIXED: Added a secondary admin and ajax referer check when saving expiration post data;
132
+ * FIXED: Fix the option "Preserve data after deactivating the plugin" that was not saving the setting, #198;
133
+ * FIXED: Fix the post expiration function to make sure a post is not expired if the checkbox is not checked on it, #199;
134
+ * FIXED: Fix the post expiration meta not being cleanup after a post expires, #207;
135
+ * FIXED: Fix the post expiration checkbox status when post type is set configured to check it by default;
136
 
137
  = [2.7.0] - 02 Dec 2021 =
138
 
139
+ * ADDED: Add new admin menu item: Future, #8;
140
+ * CHANGED: Rename the plugin from Post Expirator to PublishPress Future, #14;
141
+ * CHANGED: Add the PublishPress footer and branding, #68;
142
+ * CHANGED: Separate the settings into different tabs, #97, #98;
143
+ * CHANGED: Rename the "General Settings" tab to "Default", #99;
144
+ * FIXED: Fix the 1hr diff between expiration time when editing and shown in post list, #138;
145
+ * FIXED: Post Expirator is adding wrong expiry dates to old posts, #160;
146
+ * FIXED: Post Expirator is setting unwanted expire time for posts, #187;
147
 
148
  = [2.6.3] - 18 Nov 2021 =
149
 
150
+ * ADDED: Add setting field for choosing between preserve or delete data when the plugin is deactivated, #137;
151
+ * FIXED: Fix the timezone applied to time fields, #134;
152
+ * FIXED: Add the timezone string to the time fields, #134;
153
+ * FIXED: Fix the selected expiring categories on the quick edit panel, #160;
154
+ * FIXED: Fix E_COMPILER_ERROR when cleaning up the debug table, #183;
155
+ * FIXED: Fix translation and localization of date and time, #150;
156
 
157
  = [2.6.2] - 04 Nov 2021 =
158
 
159
+ * FIXED: Fix fatal error: Call to a member function add_cap() on null, #167;
160
+ * FIXED: Fix hierarchical taxonomy selection error for multiple taxonomies, #144;
161
+ * FIXED: Fix PHP warning: use of undefined constant - assumed 'expireType', #617;
162
+ * FIXED: Fix translation of strings in the block editor panel, #163;
163
+ * FIXED: Fix category not being added or removed when the post expires, #170;
164
+ * FIXED: Fix PHP notice: Undefined variable: merged, #174;
165
+ * FIXED: Fix category-based expiration for custom post types in classic editor, #179;
166
+ * FIXED: Fix expiration date being added to old posts when edited, #168;
167
 
168
  = [2.6.1] - 27 Oct 2021 =
169
 
170
+ * ADDED: Add post information to the scheduled list for easier debugging, #164;
171
+ * ADDED: Add a review request after a specific period of usage, #103;
172
+ * ADDED: Improve the list of cron tasks, filtering only the tasks related to the plugin, #153;
173
+ * FIXED: Fix category replace not saving, #159;
174
+ * FIXED: Fix auto enabled settings, #158;
175
+ * FIXED: Fix expiration data and cron on Gutenberg style box, #156, #136;
176
+ * FIXED: Fix the request that loads categories in the Gutenberg style panel, #133;
177
+ * FIXED: Fix the category replace not working with the new Gutenberg style panel, #127;
178
+ * FIXED: Fix the default options for the Gutenberg style panel, #145;
179
 
180
  = [2.6.0] - 04 Oct 2021 =
181
 
182
+ * ADDED: Add specific capabilities for expiring posts, #141;
183
 
184
  = [2.5.1] - 27 Sep 2021 =
185
 
186
+ * FIXED: Default Expiration Categories cannot be unset, #94;
187
+ * FIXED: Tidy up design for Classic Editor version, #83;
188
+ * FIXED: All posts now carry the default expiration, #115;
189
+ * FIXED: Error with 2.5.0 and WordPress 5.8.1, #110;
190
+ * FIXED: Do not show private post types that don't have an admin UI, #116;
191
 
192
  = [2.5.0] - 08 Aug 2021 =
193
 
194
+ * ADDED: Add "How to Expire" to Quick Edit, #62;
195
+ * ADDED: Support for Gutenberg block editor, #10;
196
+ * ADDED: Set a default time per post type, #12;
197
+ * CHANGED: Settings UI enhancement, #14;
198
+ * FIXED: Appearance Widgets screen shows PHP Notice, #92;
199
+ * FIXED: Stop the PublishPress Future box from appearing in non-public post types, #78;
200
+ * FIXED: Hide metabox from Media Library files, #56;
 
201
 
202
  = [2.4.4] - 22 Jul 2021 =
203
 
204
+ * FIXED: Fix conflict with the plugin WCFM, #60;
205
+ * FIXED: Fix the Category: Remove option, #61;
206
 
207
  = [2.4.3] - 07 Jul 2021 =
208
 
209
+ * ADDED: Expose wrappers for legacy functions, #40;
210
+ * ADDED: Support for quotes in Default expiry, #43;
211
+ * CHANGED: Bulk and Quick Edit boxes default to current date/year, #46;
212
+ * FIXED: Default expiry duration is broken for future years, #39;
213
+ * FIXED: Translation bug, #5;
214
+ * FIXED: Post expiring one year early, #24;
215
 
216
  = [2.4.2] =
217
 
218
+ * FIXED: Bulk edit does not change scheduled event bug, #29;
219
+ * FIXED: Date not being translated in shortcode, #16;
220
+ * FIXED: Bulk Edit doesn't work, #4;
221
 
222
  = [2.4.1] =
223
 
224
+ * FIXED: Updated deprecated .live jQuery reference.
225
 
226
  = [2.4.0] =
227
 
228
+ * FIXED: Fixed PHP Error with PHP 7.
229
 
230
  = [2.3.1] =
231
 
232
+ * FIXED: Fixed PHP Error that snuck in on some installations.
233
 
234
  = [2.3.0] =
235
 
236
+ * ADDED: Email notification upon post expiration. A global email can be set, blog admins can be selected and/or specific users based on post type can be notified.
237
+ * ADDED: Expiration Option Added - Stick/Unstick post is now available.
238
+ * ADDED: Expiration Option Added - Trash post is now available.
239
+ * ADDED: Added custom actions that can be hooked into when expiration events are scheduled / unscheduled.
240
+ * FIXED: Minor HTML Code Issues
241
 
242
  = [2.2.2] =
243
 
244
+ * FIXED: Quick Edit did not retain the expire type setting, and defaulted back to "Draft". This has been resolved.
245
 
246
  = [2.2.1] =
247
 
248
+ * FIXED: Fixed issue with bulk edit not correctly updating the expiration date.
249
 
250
  = [2.2.0] =
251
 
252
+ * ADDED: Quick Edit - setting expiration date and toggling post expiration status can now be done via quick edit.
253
+ * ADDED: Bulk Edit - changing expiration date on posts that already are configured can now be done via bulk edit.
254
+ * ADDED: Added ability to order by Expiration Date in dashboard.
255
+ * ADDED: Adjusted formatting on defaults page. Multiple post types are now displayed cleaner.
256
+ * FIXED: Minor Code Cleanup
257
 
258
  = [2.1.4] =
259
 
260
+ * FIXED: PHP Strict errors with 5.4+
261
+ * FIXED: Removed temporary timezone conversion - now using core functions again
262
 
263
  = [2.1.3] =
264
 
265
+ * FIXED: Default category selection now saves correctly on default settings screen
266
 
267
  = [2.1.2] =
268
 
269
+ * ADDED: Added check to show if WP_CRON is enabled on diagnostics page
270
+ * FIXED: Minor Code Cleanup
271
+ * SECURITY: Added form nonce for protect against possible CSRF
272
+ * SECURITY: Fixed XSS issue on settings pages
273
 
274
  = [2.1.1] =
275
 
276
+ * ADDED: Added the option to disable post expirator for certain post types if desired
277
+ * FIXED: Fixed php warning issue cause when post type defaults are not set
278
 
279
  = [2.1.0] =
280
 
281
+ * ADDED: Added support for hierarchical custom taxonomy
282
+ * ADDED: Enhanced custom post type support
283
+ * FIXED: Updated debug function to be friendly for scripted calls
284
+ * FIXED: Change to only show public custom post types on defaults screen
285
+ * FIXED: Removed category expiration options for 'pages', which is currently unsupported
286
+ * FIXED: Some date calls were getting "double" converted for the timezone pending how other plugins handled date - this issue should now be resolved
287
 
288
  = [2.0.1] =
289
 
290
+ * CHANGED: Old option cleanup
291
+ * REMOVED: Removes old scheduled hook - this was not done completely in the 2.0.0 upgrade
292
 
293
  = [2.0.0] =
294
 
295
+ * ADDED: Improved debug calls and logging
296
+ * ADDED: Added the ability to expire to a "private" post
297
+ * ADDED: Added the ability to expire by adding or removing categories. The old way of doing things is now known as replacing categories
298
+ * ADDED: Revamped the expiration process - the plugin no longer runs on an minute, hourly, or other schedule. Each expiration event schedules a unique event to run, conserving system resources and making things more efficient
299
+ * ADDED: The type of expiration event can be selected for each post, directly from the post editing screen
300
+ * ADDED: Ability to set defaults for each post type (including custom posts)
301
+ * ADDED: Renamed expiration-date meta value to _expiration-date
302
+ * ADDED: Revamped timezone handling to be more correct with WordPress standards and fix conflicts with other plugins
303
+ * ADDED: 'Expires' column on post display table now uses the default date/time formats set for the blog
304
+ * FIXED: Removed kses filter calls when then schedule task runs that was causing code entered as unfiltered_html to be removed
305
+ * FIXED: Updated some calls of date to now use date_i18n
306
+ * FIXED: Most (if not all) php error/warnings should be addressed
307
+ * FIXED: Updated wpdb calls in the debug class to use wpdb_prepare correctly
308
+ * FIXED: Changed menu capability option from "edit_plugin" to "manage_options"
309
+
310
+ RELEASE NOTE: This is a major update of the core functions of this plugin. All current plugins and settings should be upgraded to the new formats and work as expected. Any posts currently schedule to be expirated in the future will be automatically upgraded to the new format.
311
 
312
  = [1.6.2] =
313
 
314
+ * ADDED: Added the ability to configure the post expirator to be enabled by default for all new posts
315
+ * CHANGED: some instances of mktime to time
316
+ * FIXED: Fixed missing global call for MS installs
317
 
318
  = [1.6.1] =
319
 
320
+ * ADDED: Added option to allow user to select any cron schedule (minute, hourly, twicedaily, daily) - including other defined schedules
321
+ * ADDED: Added option to set default expiration duration - options are none, custom, or publish time
322
+ * FIXED: Tweaked error messages, removed clicks for reset cron event
323
+ * FIXED: Switched cron schedule functions to use "current_time('timestamp')"
324
+ * FIXED: Cleaned up default values code
325
+ * FIXED: Code cleanup - php notice
326
 
327
  = [1.6] =
328
 
329
+ * ADDED: Added debugging
330
+ * CHANGED: Replaced "Upgrade" tab with new "Diagnostics" tab
331
+ * CHANGED: Various code cleanup
332
+ * FIXED: Fixed invalid html
333
+ * FIXED: Fixed i18n issues with dates
334
+ * FIXED: Fixed problem when using "Network Activate" - reworked plugin activation process
335
+ * FIXED: Reworked expire logic to limit the number of sql queries needed
336
 
337
  = [1.5.4] =
338
 
339
+ * CHANGED: Cleaned up deprecated function calls
340
 
341
  = [1.5.3] =
342
 
343
+ * FIXED: Fixed bug with sql expiration query (props to Robert & John)
344
 
345
  = [1.5.2] =
346
 
347
+ * FIXED: Fixed bug with shortcode that was displaying the expiration date in the incorrect timezone
348
+ * FIXED: Fixed typo on settings page with incorrect shortcode name
349
 
350
  = [1.5.1] =
351
 
352
+ * FIXED: Fixed bug that was not allow custom post types to work
353
 
354
  = [1.5] =
355
 
356
+ * CHANGED: Moved Expirator Box to Sidebar and cleaned up meta code
357
+ * ADDED: Added ability to expire post to category
358
 
359
  = [1.4.3] =
360
 
361
+ * FIXED: Fixed issue with 3.0 multisite detection
362
 
363
  = [1.4.2] =
364
 
365
+ * ADDED: Added post expirator POT to /languages folder
366
+ * FIXED: Fixed issue with plugin admin navigation
367
+ * FIXED: Fixed timezone issue on plugin options screen
368
 
369
  = [1.4.1] =
370
 
371
+ * ADDED: Added support for custom post types (Thanks Thierry)
372
+ * ADDED: Added i18n support (Thanks Thierry)
373
+ * FIXED: Fixed issue where expiration date was not shown in the correct timezone in the footer
374
+ * FIXED: Fixed issue where on some systems the expiration did not happen when scheduled
375
 
376
  = [1.4] =
377
 
378
+ * FIXED: Fixed compatability issues with Wordpress - plugin was originally coded for WPMU - should now work on both
379
+ * ADDED: Added ability to schedule post expiration by minute
380
+ * FIXED: Fixed timezone - now uses the same timezone as configured by the blog
381
 
382
+ RELEASE NOTE: After upgrading, you may need to reset the cron schedules. Following onscreen notice if prompted. Previously scheduled posts will not be updated, they will be deleted referncing the old timezone setting. If you wish to update them, you will need to manually update the expiration time.
 
 
383
 
384
  = [1.3.1] =
385
 
386
+ * FIXED: Fixed sporadic issue of expired posts not being removed
387
 
388
  = [1.3] =
389
 
390
+ * FIXED: Expiration date is now retained across all post status changes
391
+ * FIXED: Modified date/time format options for shortcode postexpirator tag
392
+ * ADDED: Added the ability to add text automatically to the post footer if expiration date is set
393
 
394
  = [1.2.1] =
395
 
396
+ * FIXED: Fixed issue with display date format not being recognized after upgrade
397
 
398
  = [1.2] =
399
 
400
+ * CHANGED: wording from "Expiration Date" to "Post Expirator" and moved the configuration options to the "Settings" tab.
401
+ * ADDED: Added shortcode tag [postexpirator] to display the post expiration date within the post
402
+ * ADDED: Added new setting for the default format
403
+ * FIXED: Fixed bug where expiration date was removed when a post was auto saved
404
 
405
  = [1.1] =
406
 
407
+ * FIXED: Expired posts retain expiration date
408
 
409
  = [1.0] =
410
 
411
+ * ADDED: Initial Release
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit98706dafe788a7e432c1fb27949dbc92::getLoader();
vendor/composer/ClassLoader.php CHANGED
@@ -149,7 +149,7 @@ class ClassLoader
149
 
150
  /**
151
  * @return string[] Array of classname => path
152
- * @psalm-var array<string, string>
153
  */
154
  public function getClassMap()
155
  {
149
 
150
  /**
151
  * @return string[] Array of classname => path
152
+ * @psalm-return array<string, string>
153
  */
154
  public function getClassMap()
155
  {
vendor/composer/autoload_files.php CHANGED
@@ -7,5 +7,5 @@ $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
  '41c664bd04a95c2d6a2f2a3e00f06593' => $vendorDir . '/publishpress/wordpress-reviews/ReviewsController.php',
10
- '042dd0ae2433f2c5951d75563af2394e' => $baseDir . '/classes/DummyForAutoloadDetection.php',
11
  );
7
 
8
  return array(
9
  '41c664bd04a95c2d6a2f2a3e00f06593' => $vendorDir . '/publishpress/wordpress-reviews/ReviewsController.php',
10
+ '44b552ca20ee394f431a64ca58af7ab1' => $baseDir . '/classes/DummyForAutoloadDetection.php',
11
  );
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514
6
  {
7
  private static $loader;
8
 
@@ -24,15 +24,15 @@ class ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
- spl_autoload_unregister(array('ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
- call_user_func(\Composer\Autoload\ComposerStaticInit1d63918176b7b346c50a6bf376bce514::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
@@ -53,23 +53,28 @@ class ComposerAutoloaderInit1d63918176b7b346c50a6bf376bce514
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
- $includeFiles = Composer\Autoload\ComposerStaticInit1d63918176b7b346c50a6bf376bce514::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
- composerRequire1d63918176b7b346c50a6bf376bce514($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
- function composerRequire1d63918176b7b346c50a6bf376bce514($fileIdentifier, $file)
 
 
 
 
 
69
  {
70
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
71
- require $file;
72
-
73
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
 
 
74
  }
75
  }
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit98706dafe788a7e432c1fb27949dbc92
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInit98706dafe788a7e432c1fb27949dbc92', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit98706dafe788a7e432c1fb27949dbc92', 'loadClassLoader'));
30
 
31
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
  require __DIR__ . '/autoload_static.php';
34
 
35
+ call_user_func(\Composer\Autoload\ComposerStaticInit98706dafe788a7e432c1fb27949dbc92::getInitializer($loader));
36
  } else {
37
  $map = require __DIR__ . '/autoload_namespaces.php';
38
  foreach ($map as $namespace => $path) {
53
  $loader->register(true);
54
 
55
  if ($useStaticLoader) {
56
+ $includeFiles = Composer\Autoload\ComposerStaticInit98706dafe788a7e432c1fb27949dbc92::$files;
57
  } else {
58
  $includeFiles = require __DIR__ . '/autoload_files.php';
59
  }
60
  foreach ($includeFiles as $fileIdentifier => $file) {
61
+ composerRequire98706dafe788a7e432c1fb27949dbc92($fileIdentifier, $file);
62
  }
63
 
64
  return $loader;
65
  }
66
  }
67
 
68
+ /**
69
+ * @param string $fileIdentifier
70
+ * @param string $file
71
+ * @return void
72
+ */
73
+ function composerRequire98706dafe788a7e432c1fb27949dbc92($fileIdentifier, $file)
74
  {
75
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
 
 
76
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
77
+
78
+ require $file;
79
  }
80
  }
vendor/composer/autoload_static.php CHANGED
@@ -4,11 +4,11 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit1d63918176b7b346c50a6bf376bce514
8
  {
9
  public static $files = array (
10
  '41c664bd04a95c2d6a2f2a3e00f06593' => __DIR__ . '/..' . '/publishpress/wordpress-reviews/ReviewsController.php',
11
- '042dd0ae2433f2c5951d75563af2394e' => __DIR__ . '/../..' . '/classes/DummyForAutoloadDetection.php',
12
  );
13
 
14
  public static $classMap = array (
@@ -18,7 +18,7 @@ class ComposerStaticInit1d63918176b7b346c50a6bf376bce514
18
  public static function getInitializer(ClassLoader $loader)
19
  {
20
  return \Closure::bind(function () use ($loader) {
21
- $loader->classMap = ComposerStaticInit1d63918176b7b346c50a6bf376bce514::$classMap;
22
 
23
  }, null, ClassLoader::class);
24
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit98706dafe788a7e432c1fb27949dbc92
8
  {
9
  public static $files = array (
10
  '41c664bd04a95c2d6a2f2a3e00f06593' => __DIR__ . '/..' . '/publishpress/wordpress-reviews/ReviewsController.php',
11
+ '44b552ca20ee394f431a64ca58af7ab1' => __DIR__ . '/../..' . '/classes/DummyForAutoloadDetection.php',
12
  );
13
 
14
  public static $classMap = array (
18
  public static function getInitializer(ClassLoader $loader)
19
  {
20
  return \Closure::bind(function () use ($loader) {
21
+ $loader->classMap = ComposerStaticInit98706dafe788a7e432c1fb27949dbc92::$classMap;
22
 
23
  }, null, ClassLoader::class);
24
  }
vendor/composer/installed.json CHANGED
@@ -1,18 +1,60 @@
1
  {
2
  "packages": [
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  {
4
  "name": "publishpress/wordpress-reviews",
5
- "version": "v1.1.18",
6
- "version_normalized": "1.1.18.0",
7
  "source": {
8
  "type": "git",
9
  "url": "https://github.com/publishpress/wordpress-reviews.git",
10
- "reference": "0020705b8f6a7177fc393c6c42c82171bf9e2fbd"
11
  },
12
  "dist": {
13
  "type": "zip",
14
- "url": "https://api.github.com/repos/publishpress/wordpress-reviews/zipball/0020705b8f6a7177fc393c6c42c82171bf9e2fbd",
15
- "reference": "0020705b8f6a7177fc393c6c42c82171bf9e2fbd",
16
  "shasum": ""
17
  },
18
  "require": {
@@ -36,7 +78,7 @@
36
  "wp-cli/i18n-command": "^2.2",
37
  "wp-cli/wp-cli": "^2.5"
38
  },
39
- "time": "2021-12-15T00:03:53+00:00",
40
  "type": "library",
41
  "installation-source": "dist",
42
  "autoload": {
@@ -67,7 +109,7 @@
67
  ],
68
  "support": {
69
  "issues": "https://github.com/publishpress/wordpress-reviews/issues",
70
- "source": "https://github.com/publishpress/wordpress-reviews/tree/v1.1.18"
71
  },
72
  "install-path": "../publishpress/wordpress-reviews"
73
  }
1
  {
2
  "packages": [
3
+ {
4
+ "name": "publishpress/publishpress-instance-protection",
5
+ "version": "v1.0.2",
6
+ "version_normalized": "1.0.2.0",
7
+ "source": {
8
+ "type": "git",
9
+ "url": "https://github.com/publishpress/publishpress-instance-protection.git",
10
+ "reference": "ef1a631a41b723ce2e856f534ff4befbe914e964"
11
+ },
12
+ "dist": {
13
+ "type": "zip",
14
+ "url": "https://api.github.com/repos/publishpress/publishpress-instance-protection/zipball/ef1a631a41b723ce2e856f534ff4befbe914e964",
15
+ "reference": "ef1a631a41b723ce2e856f534ff4befbe914e964",
16
+ "shasum": ""
17
+ },
18
+ "require": {
19
+ "php": ">=5.6.20"
20
+ },
21
+ "time": "2022-06-03T17:41:36+00:00",
22
+ "type": "library",
23
+ "installation-source": "dist",
24
+ "notification-url": "https://packagist.org/downloads/",
25
+ "license": [
26
+ "GPL-3.0-or-later"
27
+ ],
28
+ "authors": [
29
+ {
30
+ "name": "PublishPress",
31
+ "email": "help@publishpress.com"
32
+ }
33
+ ],
34
+ "description": "Library for protecting WordPress plugins to run twice.",
35
+ "homepage": "http://publishpress.com/",
36
+ "keywords": [
37
+ "wordpress plugin"
38
+ ],
39
+ "support": {
40
+ "issues": "https://github.com/publishpress/publishpress-instance-protection/issues",
41
+ "source": "https://github.com/publishpress/publishpress-instance-protection/tree/v1.0.2"
42
+ },
43
+ "install-path": "../publishpress/publishpress-instance-protection"
44
+ },
45
  {
46
  "name": "publishpress/wordpress-reviews",
47
+ "version": "v1.1.19",
48
+ "version_normalized": "1.1.19.0",
49
  "source": {
50
  "type": "git",
51
  "url": "https://github.com/publishpress/wordpress-reviews.git",
52
+ "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c"
53
  },
54
  "dist": {
55
  "type": "zip",
56
+ "url": "https://api.github.com/repos/publishpress/wordpress-reviews/zipball/028e573eb7c5da2455a7a823cabbbe5e3f89ca9c",
57
+ "reference": "028e573eb7c5da2455a7a823cabbbe5e3f89ca9c",
58
  "shasum": ""
59
  },
60
  "require": {
78
  "wp-cli/i18n-command": "^2.2",
79
  "wp-cli/wp-cli": "^2.5"
80
  },
81
+ "time": "2022-06-03T13:38:53+00:00",
82
  "type": "library",
83
  "installation-source": "dist",
84
  "autoload": {
109
  ],
110
  "support": {
111
  "issues": "https://github.com/publishpress/wordpress-reviews/issues",
112
+ "source": "https://github.com/publishpress/wordpress-reviews/tree/v1.1.19"
113
  },
114
  "install-path": "../publishpress/wordpress-reviews"
115
  }
vendor/composer/installed.php CHANGED
@@ -1,31 +1,40 @@
1
  <?php return array(
2
  'root' => array(
3
- 'pretty_version' => 'dev-main',
4
- 'version' => 'dev-main',
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '0749d5c92b13577798d9c1bcbc30cef8a8c03c86',
9
- 'name' => 'publishpress/post-expirator',
10
  'dev' => false,
11
  ),
12
  'versions' => array(
13
- 'publishpress/post-expirator' => array(
14
- 'pretty_version' => 'dev-main',
15
- 'version' => 'dev-main',
16
  'type' => 'wordpress-plugin',
17
  'install_path' => __DIR__ . '/../../',
18
  'aliases' => array(),
19
- 'reference' => '0749d5c92b13577798d9c1bcbc30cef8a8c03c86',
 
 
 
 
 
 
 
 
 
20
  'dev_requirement' => false,
21
  ),
22
  'publishpress/wordpress-reviews' => array(
23
- 'pretty_version' => 'v1.1.18',
24
- 'version' => '1.1.18.0',
25
  'type' => 'library',
26
  'install_path' => __DIR__ . '/../publishpress/wordpress-reviews',
27
  'aliases' => array(),
28
- 'reference' => '0020705b8f6a7177fc393c6c42c82171bf9e2fbd',
29
  'dev_requirement' => false,
30
  ),
31
  ),
1
  <?php return array(
2
  'root' => array(
3
+ 'pretty_version' => 'dev-develop',
4
+ 'version' => 'dev-develop',
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '723a707562d75682325e118656502b6c744b3146',
9
+ 'name' => 'publishpress/publishpress-future',
10
  'dev' => false,
11
  ),
12
  'versions' => array(
13
+ 'publishpress/publishpress-future' => array(
14
+ 'pretty_version' => 'dev-develop',
15
+ 'version' => 'dev-develop',
16
  'type' => 'wordpress-plugin',
17
  'install_path' => __DIR__ . '/../../',
18
  'aliases' => array(),
19
+ 'reference' => '723a707562d75682325e118656502b6c744b3146',
20
+ 'dev_requirement' => false,
21
+ ),
22
+ 'publishpress/publishpress-instance-protection' => array(
23
+ 'pretty_version' => 'v1.0.2',
24
+ 'version' => '1.0.2.0',
25
+ 'type' => 'library',
26
+ 'install_path' => __DIR__ . '/../publishpress/publishpress-instance-protection',
27
+ 'aliases' => array(),
28
+ 'reference' => 'ef1a631a41b723ce2e856f534ff4befbe914e964',
29
  'dev_requirement' => false,
30
  ),
31
  'publishpress/wordpress-reviews' => array(
32
+ 'pretty_version' => 'v1.1.19',
33
+ 'version' => '1.1.19.0',
34
  'type' => 'library',
35
  'install_path' => __DIR__ . '/../publishpress/wordpress-reviews',
36
  'aliases' => array(),
37
+ 'reference' => '028e573eb7c5da2455a7a823cabbbe5e3f89ca9c',
38
  'dev_requirement' => false,
39
  ),
40
  ),
vendor/publishpress/publishpress-instance-protection/LICENSE ADDED
@@ -0,0 +1,674 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ <one line to give the program's name and a brief idea of what it does.>
635
+ Copyright (C) <year> <name of author>
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ <program> Copyright (C) <year> <name of author>
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <https://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <https://www.gnu.org/licenses/why-not-lgpl.html>.
vendor/publishpress/publishpress-instance-protection/core/Autoloader.php ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace PublishPressInstanceProtection;
3
+
4
+ /**
5
+ * Based on the code found on https://www.php-fig.org/psr/psr-4/examples/.
6
+ *
7
+ * An example of a general-purpose implementation that includes the optional
8
+ * functionality of allowing multiple base directories for a single namespace
9
+ * prefix.
10
+ *
11
+ * Given a foo-bar package of classes in the file system at the following
12
+ * paths ...
13
+ *
14
+ * /path/to/packages/foo-bar/
15
+ * src/
16
+ * Baz.php # Foo\Bar\Baz
17
+ * Qux/
18
+ * Quux.php # Foo\Bar\Qux\Quux
19
+ * tests/
20
+ * BazTest.php # Foo\Bar\BazTest
21
+ * Qux/
22
+ * QuuxTest.php # Foo\Bar\Qux\QuuxTest
23
+ *
24
+ * ... add the path to the class files for the \Foo\Bar\ namespace prefix
25
+ * as follows:
26
+ *
27
+ * <?php
28
+ * // instantiate the loader
29
+ * $loader = new \Example\Psr4AutoloaderClass;
30
+ *
31
+ * // register the autoloader
32
+ * $loader->register();
33
+ *
34
+ * // register the base directories for the namespace prefix
35
+ * $loader->addNamespace('Foo\Bar', '/path/to/packages/foo-bar/src');
36
+ * $loader->addNamespace('Foo\Bar', '/path/to/packages/foo-bar/tests');
37
+ *
38
+ * The following line would cause the autoloader to attempt to load the
39
+ * \Foo\Bar\Qux\Quux class from /path/to/packages/foo-bar/src/Qux/Quux.php:
40
+ *
41
+ * <?php
42
+ * new \Foo\Bar\Qux\Quux;
43
+ *
44
+ * The following line would cause the autoloader to attempt to load the
45
+ * \Foo\Bar\Qux\QuuxTest class from /path/to/packages/foo-bar/tests/Qux/QuuxTest.php:
46
+ *
47
+ * <?php
48
+ * new \Foo\Bar\Qux\QuuxTest;
49
+ */
50
+ class Autoloader
51
+ {
52
+ /**
53
+ * An associative array where the key is a namespace prefix and the value
54
+ * is an array of base directories for classes in that namespace.
55
+ *
56
+ * @var array
57
+ */
58
+ protected $prefixes = array();
59
+
60
+ /**
61
+ * Register loader with SPL autoloader stack.
62
+ *
63
+ * @return void
64
+ */
65
+ public function register()
66
+ {
67
+ spl_autoload_register(array($this, 'loadClass'));
68
+ }
69
+
70
+ /**
71
+ * Adds a base directory for a namespace prefix.
72
+ *
73
+ * @param string $prefix The namespace prefix.
74
+ * @param string $base_dir A base directory for class files in the
75
+ * namespace.
76
+ * @param bool $prepend If true, prepend the base directory to the stack
77
+ * instead of appending it; this causes it to be searched first rather
78
+ * than last.
79
+ * @return void
80
+ */
81
+ public function addNamespace($prefix, $base_dir, $prepend = false)
82
+ {
83
+ // normalize namespace prefix
84
+ $prefix = trim($prefix, '\\') . '\\';
85
+
86
+ // normalize the base directory with a trailing separator
87
+ $base_dir = rtrim($base_dir, DIRECTORY_SEPARATOR) . '/';
88
+
89
+ // initialize the namespace prefix array
90
+ if (isset($this->prefixes[$prefix]) === false) {
91
+ $this->prefixes[$prefix] = array();
92
+ }
93
+
94
+ // retain the base directory for the namespace prefix
95
+ if ($prepend) {
96
+ array_unshift($this->prefixes[$prefix], $base_dir);
97
+ } else {
98
+ array_push($this->prefixes[$prefix], $base_dir);
99
+ }
100
+ }
101
+
102
+ /**
103
+ * Loads the class file for a given class name.
104
+ *
105
+ * @param string $class The fully-qualified class name.
106
+ * @return mixed The mapped file name on success, or boolean false on
107
+ * failure.
108
+ */
109
+ public function loadClass($class)
110
+ {
111
+ // the current namespace prefix
112
+ $prefix = $class;
113
+
114
+ // work backwards through the namespace names of the fully-qualified
115
+ // class name to find a mapped file name
116
+ while (false !== $pos = strrpos($prefix, '\\')) {
117
+
118
+ // retain the trailing namespace separator in the prefix
119
+ $prefix = substr($class, 0, $pos + 1);
120
+
121
+ // the rest is the relative class name
122
+ $relative_class = substr($class, $pos + 1);
123
+
124
+ // try to load a mapped file for the prefix and relative class
125
+ $mapped_file = $this->loadMappedFile($prefix, $relative_class);
126
+ if ($mapped_file) {
127
+ return $mapped_file;
128
+ }
129
+
130
+ // remove the trailing namespace separator for the next iteration
131
+ // of strrpos()
132
+ $prefix = rtrim($prefix, '\\');
133
+ }
134
+
135
+ // never found a mapped file
136
+ return false;
137
+ }
138
+
139
+ /**
140
+ * Load the mapped file for a namespace prefix and relative class.
141
+ *
142
+ * @param string $prefix The namespace prefix.
143
+ * @param string $relative_class The relative class name.
144
+ * @return mixed Boolean false if no mapped file can be loaded, or the
145
+ * name of the mapped file that was loaded.
146
+ */
147
+ protected function loadMappedFile($prefix, $relative_class)
148
+ {
149
+ // are there any base directories for this namespace prefix?
150
+ if (isset($this->prefixes[$prefix]) === false) {
151
+ return false;
152
+ }
153
+
154
+ // look through base directories for this namespace prefix
155
+ foreach ($this->prefixes[$prefix] as $base_dir) {
156
+
157
+ // replace the namespace prefix with the base directory,
158
+ // replace namespace separators with directory separators
159
+ // in the relative class name, append with .php
160
+ $file = $base_dir
161
+ . str_replace('\\', '/', $relative_class)
162
+ . '.php';
163
+
164
+ // if the mapped file exists, require it
165
+ if ($this->requireFile($file)) {
166
+ // yes, we're done
167
+ return $file;
168
+ }
169
+ }
170
+
171
+ // never found it
172
+ return false;
173
+ }
174
+
175
+ /**
176
+ * If a file exists, require it from the file system.
177
+ *
178
+ * @param string $file The file to require.
179
+ * @return bool True if the file exists, false if not.
180
+ */
181
+ protected function requireFile($file)
182
+ {
183
+ if (file_exists($file)) {
184
+ require $file;
185
+ return true;
186
+ }
187
+ return false;
188
+ }
189
+ }
vendor/publishpress/publishpress-instance-protection/core/Config.php ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace PublishPressInstanceProtection;
4
+
5
+ /**
6
+ * Check if the plugin is on the standard path.
7
+ */
8
+ class Config
9
+ {
10
+ /**
11
+ * The plugin slug.
12
+ *
13
+ * @var string
14
+ */
15
+ public $pluginSlug;
16
+
17
+ /**
18
+ * The plugin name.
19
+ *
20
+ * @var string
21
+ */
22
+ public $pluginName;
23
+
24
+ /**
25
+ * The plugin folder
26
+ *
27
+ * @var [type]
28
+ */
29
+ public $pluginFolder = '';
30
+
31
+ /**
32
+ * True if the plugin is Pro.
33
+ *
34
+ * @var boolean
35
+ */
36
+ public $isProPlugin = false;
37
+
38
+ /**
39
+ * The name of the free plugin.
40
+ *
41
+ * @var string
42
+ */
43
+ public $freePluginName = '';
44
+ }
vendor/publishpress/publishpress-instance-protection/core/InstanceChecker.php ADDED
@@ -0,0 +1,386 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace PublishPressInstanceProtection;
4
+
5
+ /**
6
+ * Check if the plugin is on the standard path.
7
+ */
8
+ class InstanceChecker
9
+ {
10
+ const STATE_STYLE_ENQUEUED = 'styleEnqueued';
11
+
12
+ private $pluginSlug;
13
+
14
+ private $pluginName;
15
+
16
+ private $pluginFolder;
17
+
18
+ /**
19
+ * @var bool
20
+ */
21
+ private $isProPlugin;
22
+
23
+ /**
24
+ * @var string
25
+ */
26
+ private $freePluginName;
27
+
28
+ /**
29
+ * Undocumented function
30
+ *
31
+ * @param Config $config
32
+ */
33
+ public function __construct($config)
34
+ {
35
+ $this->pluginSlug = $config->pluginSlug;
36
+ $this->pluginName = $config->pluginName;
37
+ $this->pluginFolder = $config->pluginFolder;
38
+ $this->isProPlugin = $config->isProPlugin;
39
+ $this->freePluginName = $config->freePluginName;
40
+
41
+ if (! $this->isProPlugin) {
42
+ $this->freePluginName = $this->pluginName;
43
+ }
44
+
45
+ if (empty($this->pluginFolder)) {
46
+ $this->pluginFolder = $this->pluginSlug;
47
+ }
48
+
49
+ if (
50
+ is_admin()
51
+ && ! wp_doing_ajax()
52
+ && ! wp_doing_cron()
53
+ ) {
54
+ add_action('admin_init', [$this, 'init'], $this->isProPlugin ? 7 : 5);
55
+ }
56
+ }
57
+
58
+ public function getVersion()
59
+ {
60
+ return '1.0.2';
61
+ }
62
+
63
+ public function init()
64
+ {
65
+ global $pagenow;
66
+
67
+ if ($pagenow !== 'plugins.php') {
68
+ return;
69
+ }
70
+
71
+ if (! $this->getStateDuplicatedPluginCheck()) {
72
+ $this->checkDuplicatedPluginsAndLatestVersions();
73
+
74
+ $this->setFlagDuplicatedPluginCheck();
75
+ }
76
+
77
+ if ($this->getStateHasMultiplePluginsActivated()) {
78
+ $this->addMultipleInstancesNotice();
79
+ }
80
+
81
+ if ($this->isProPlugin && $this->getStateFreePluginLoadedByItself()) {
82
+ $this->addFreePluginNotice();
83
+ }
84
+
85
+ // This should run once per request.
86
+ if (! $this->getStateStyleEnqueued()) {
87
+ $this->addPluginsPageStyle();
88
+ $this->setFlagStyleEnqueued();
89
+ }
90
+
91
+ if ($this->getStateHasMultiplePaths()) {
92
+ // This should run for every instance
93
+ add_action('after_plugin_row', [$this, 'addLatestVersionCheck'], 10, 2);
94
+ add_action('after_plugin_row', [$this, 'addNonStandardPathCheck'], 10, 2);
95
+ }
96
+ }
97
+
98
+ private function checkDuplicatedPluginsAndLatestVersions()
99
+ {
100
+ if (! function_exists('get_plugins')) {
101
+ require_once ABSPATH . 'wp-admin/includes/plugin.php';
102
+ }
103
+
104
+ $plugins = get_plugins();
105
+
106
+ $pluginFiles = [];
107
+ $pluginInstances = [];
108
+ $latestVersions = [];
109
+
110
+ foreach ($plugins as $pluginFile => $pluginData) {
111
+ if ($this->pluginName === $pluginData['Name']) {
112
+ $pluginFiles[] = $pluginFile;
113
+
114
+ if (is_plugin_active($pluginFile)) {
115
+ $pluginInstances[] = $pluginFile;
116
+
117
+ if ($pluginData['Name'] === $this->freePluginName) {
118
+ $this->setStateFreePluginLoadedByItself();
119
+ }
120
+ }
121
+
122
+ if (! isset($latestVersions[$this->pluginSlug])) {
123
+ $latestVersions[$this->pluginSlug] = $pluginData['Version'];
124
+ continue;
125
+ }
126
+
127
+ if (version_compare($pluginData['Version'], $latestVersions[$this->pluginSlug], '>')) {
128
+ $latestVersions[$this->pluginSlug] = $pluginData['Version'];
129
+ }
130
+ }
131
+ }
132
+
133
+ if (count($pluginFiles) > 1) {
134
+ $this->setStateHasMultiplePaths();
135
+ }
136
+
137
+ if (count($pluginInstances) > 1) {
138
+ $this->setStateHasMultiplePluginsActivated();
139
+ }
140
+
141
+ $this->setStateLatestVersions($latestVersions);
142
+ }
143
+
144
+ public function addPluginsPageStyle()
145
+ {
146
+ add_action('admin_enqueue_scripts', function() {
147
+ wp_add_inline_style(
148
+ 'wp-admin',
149
+ '
150
+ tr.ppa-plugin-warning {
151
+ background: #fff;
152
+ }
153
+
154
+ tr.ppa-plugin-warning td {
155
+ box-shadow: inset 0 -1px 0 rgb(0 0 0 / 10%);
156
+ overflow: hidden;
157
+ padding: 0;
158
+ }
159
+
160
+ tr.ppa-plugin-warning td > div {
161
+ margin: 5px 20px 15px 44px;
162
+ }
163
+
164
+ tr.ppa-plugin-warning td > div.multiple-instances-warning {
165
+ background-color: #ffc6c6;
166
+ border: 1px solid #edb977;
167
+ border-left: 4px solid #e1a04e;
168
+ padding-left: 6px;
169
+ }
170
+
171
+ tr.ppa-plugin-warning td > div.multiple-instances-warning .dashicons {
172
+ margin-right: 6px;
173
+ vertical-align: bottom;
174
+ color: #c18d17;
175
+ }
176
+
177
+ tr.ppa-plugin-warning td > div.multiple-instances-warning p {
178
+ margin: 0.5em 0;
179
+ }
180
+
181
+ tr.active + tr.ppa-plugin-warning td {
182
+ background-color: #f0f6fc;
183
+ }
184
+ '
185
+ );
186
+ });
187
+ }
188
+
189
+ public function addLatestVersionCheck($pluginFile, $pluginData)
190
+ {
191
+ if ($pluginData['Name'] !== $this->pluginName) {
192
+ return;
193
+ }
194
+
195
+ if ($this->getStateVersionChecked($pluginFile)) {
196
+ return;
197
+ }
198
+
199
+ $latestVersions = $this->getStateLatestVersions();
200
+
201
+ if (! isset($latestVersions[$this->pluginSlug])) {
202
+ return;
203
+ }
204
+
205
+ if (version_compare($pluginData['Version'], $latestVersions[$this->pluginSlug], '<')) {
206
+ ?>
207
+ <tr class="ppa-plugin-warning">
208
+ <td colspan="4" class="colspanchange">
209
+ <div class="multiple-instances-warning">
210
+ <p>
211
+ <span class="dashicons dashicons-warning"></span>
212
+ <?php echo esc_html__('This plugin is outdated. You already have a more recent version installed. Please remove this version.', 'publishpress-intance-protection'); ?>
213
+ </p>
214
+ </div>
215
+ </td>
216
+ </tr>
217
+ <?php
218
+ }
219
+
220
+ $this->setStateVersionChecked($pluginFile);
221
+ }
222
+
223
+ public function addNonStandardPathCheck($pluginFile, $pluginData)
224
+ {
225
+ if ($pluginData['Name'] !== $this->pluginName) {
226
+ return;
227
+ }
228
+
229
+ if ($this->getStatePathHasBeenCheckedForPluginFile($pluginFile)) {
230
+ return;
231
+ }
232
+
233
+ $expectedPath = $this->pluginFolder . '/' . $this->pluginSlug . '.php';
234
+
235
+ if ($pluginFile !== $expectedPath) {
236
+ ?>
237
+ <tr class="ppa-plugin-warning">
238
+ <td colspan="4" class="colspanchange">
239
+ <div class="multiple-instances-warning">
240
+ <p>
241
+ <span class="dashicons dashicons-warning"></span>
242
+ <?php echo sprintf(
243
+ esc_html__('This plugin is not installed in the standard folder. The current path is %s but it is expected to be %s.', 'publishpress-intance-protection'),
244
+ '<code>' . esc_html($pluginFile) . '</code>',
245
+ '<code>' . esc_html($expectedPath) . '</code>'
246
+ );
247
+ ?>
248
+ </p>
249
+ </div>
250
+ </td>
251
+ </tr>
252
+ <?php
253
+ }
254
+
255
+ $this->setStatePathHasBeenCheckedForPluginFile($pluginFile);
256
+ }
257
+
258
+ public function addMultipleInstancesNotice()
259
+ {
260
+ if ($this->getStateMultipleInstancesNoticeAdded()) {
261
+ return;
262
+ }
263
+
264
+ $pluginName = $this->pluginName;
265
+
266
+ add_action('admin_notices', function() use ($pluginName) {
267
+ ?>
268
+ <div class="notice notice-success is-dismissible">
269
+ <p><?php echo sprintf(esc_html__('You have activated multiple instances of %s. Please keep only one activated and remove the others.', 'publishpress-intance-protection'), esc_html($pluginName)); ?></p>
270
+ </div>
271
+ <?php
272
+ });
273
+
274
+ $this->setStateMultipleInstancesNoticeAdded();
275
+ }
276
+
277
+ public function addFreePluginNotice()
278
+ {
279
+ if (LibState::getPluginState($this->pluginSlug, 'freePluginNoticeAdded')) {
280
+ return;
281
+ }
282
+
283
+ $pluginName = $this->pluginName;
284
+ $freePluginName = $this->freePluginName;
285
+
286
+ add_action('admin_notices', function() use ($pluginName, $freePluginName) {
287
+ ?>
288
+ <div class="notice notice-success is-dismissible">
289
+ <p><?php echo sprintf(esc_html__('Please deactivate %s when %s is activated.', 'publishpress-intance-protection'), esc_html($freePluginName), esc_html($pluginName)); ?></p>
290
+ </div>
291
+ <?php
292
+ });
293
+
294
+ LibState::setPluginState($this->pluginSlug, 'freePluginNoticeAdded');
295
+ }
296
+
297
+ private function getStateHasMultiplePaths()
298
+ {
299
+ return (bool) LibState::getPluginState($this->pluginSlug, 'hasMultiplePaths');
300
+ }
301
+
302
+ private function setStateHasMultiplePaths()
303
+ {
304
+ LibState::setPluginState($this->pluginSlug, 'hasMultiplePaths');
305
+ }
306
+
307
+ private function getStateHasMultiplePluginsActivated()
308
+ {
309
+ return (bool) LibState::getPluginState($this->pluginSlug, 'hasMultipleInstances');
310
+ }
311
+
312
+ private function setStateHasMultiplePluginsActivated()
313
+ {
314
+ LibState::setPluginState($this->pluginSlug, 'hasMultipleInstances');
315
+ }
316
+
317
+ private function getStateFreePluginLoadedByItself()
318
+ {
319
+ return (bool) LibState::getState('freePluginIsLoaded' . $this->freePluginName);
320
+ }
321
+
322
+ private function setStateFreePluginLoadedByItself()
323
+ {
324
+ LibState::setState('freePluginIsLoaded' . $this->freePluginName);
325
+ }
326
+
327
+ private function setStatePathHasBeenCheckedForPluginFile($pluginFile)
328
+ {
329
+ LibState::setPluginState($this->pluginSlug, 'pathCheck' . $pluginFile);
330
+ }
331
+
332
+ private function getStatePathHasBeenCheckedForPluginFile($pluginFile)
333
+ {
334
+ return (bool) LibState::getPluginState($this->pluginSlug, 'pathCheck' . $pluginFile);
335
+ }
336
+
337
+ private function setStateVersionChecked($pluginFile)
338
+ {
339
+ LibState::setPluginState($this->pluginSlug, 'versionCheck' . $pluginFile);
340
+ }
341
+
342
+ private function getStateVersionChecked($pluginFile)
343
+ {
344
+ return (bool) LibState::getPluginState($this->pluginSlug, 'versionCheck' . $pluginFile);
345
+ }
346
+
347
+ private function getStateDuplicatedPluginCheck()
348
+ {
349
+ return (bool) LibState::getPluginState($this->pluginSlug, 'duplicatedPluginsCheck');
350
+ }
351
+
352
+ private function setFlagDuplicatedPluginCheck()
353
+ {
354
+ LibState::setPluginState($this->pluginSlug, 'duplicatedPluginsCheck');
355
+ }
356
+
357
+ private function getStateStyleEnqueued()
358
+ {
359
+ return (bool) LibState::getState(self::STATE_STYLE_ENQUEUED);
360
+ }
361
+
362
+ private function setFlagStyleEnqueued()
363
+ {
364
+ LibState::setState(self::STATE_STYLE_ENQUEUED);
365
+ }
366
+
367
+ private function setStateLatestVersions($latestVersions)
368
+ {
369
+ LibState::setPluginState($this->pluginSlug, 'latestVersions', $latestVersions);
370
+ }
371
+
372
+ private function getStateLatestVersions()
373
+ {
374
+ return (array) LibState::getPluginState($this->pluginSlug, 'latestVersions');
375
+ }
376
+
377
+ private function setStateMultipleInstancesNoticeAdded()
378
+ {
379
+ LibState::setPluginState($this->pluginSlug, 'multipleInstancesNoticeAdded');
380
+ }
381
+
382
+ private function getStateMultipleInstancesNoticeAdded()
383
+ {
384
+ return (bool) LibState::getPluginState($this->pluginSlug, 'multipleInstancesNoticeAdded');
385
+ }
386
+ }
vendor/publishpress/publishpress-instance-protection/core/LibState.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace PublishPressInstanceProtection;
4
+
5
+ abstract class LibState
6
+ {
7
+ private static $states = [];
8
+
9
+ public static function setState($stateName, $value = true)
10
+ {
11
+ self::$states[$stateName] = $value;
12
+ }
13
+
14
+ public static function getState($stateName)
15
+ {
16
+ return isset(self::$states[$stateName]) ? self::$states[$stateName] : false;
17
+ }
18
+
19
+ public static function setPluginState($pluginSlug, $stateName, $value = true)
20
+ {
21
+ self::setState($pluginSlug . '/' . $stateName, $value);
22
+ }
23
+
24
+ public static function getPluginState($pluginSlug, $stateName)
25
+ {
26
+ return self::getState($pluginSlug . '/' . $stateName);
27
+ }
28
+ }
vendor/publishpress/publishpress-instance-protection/include.php ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if (! class_exists('PublishPressInstanceProtection\\InstanceChecker')) {
4
+ if (! class_exists('PublishPressInstanceProtection\\Autoloader')) {
5
+ require_once __DIR__ . '/core/Autoloader.php';
6
+ }
7
+
8
+ $autoloader = new PublishPressInstanceProtection\Autoloader();
9
+ $autoloader->register();
10
+ $autoloader->addNamespace('PublishPressInstanceProtection', __DIR__ . '/core');
11
+ }
vendor/publishpress/wordpress-reviews/.gitignore DELETED
@@ -1,4 +0,0 @@
1
- .phplint-cache
2
-
3
- .idea/
4
- vendor/
 
 
 
 
vendor/publishpress/wordpress-reviews/README.md DELETED
@@ -1,197 +0,0 @@
1
- # PublishPress WordPress Reviews Library
2
-
3
- The PublishPress WordPress Reviews is a library for displaying a banner to users asking for a five-star review.
4
-
5
- ## Installation
6
-
7
- We do recommend using composer for adding this library as a requirement:
8
-
9
- ```shell
10
- $ composer require publishpress/wordpress-reviews
11
- ```
12
-
13
- ## How to use it
14
-
15
- If your plugin does not load the composer's autoloader yet, you need to add the following code:
16
-
17
- ```php
18
- <?php
19
-
20
- require_once 'vendor/autoload.php';
21
- ```
22
-
23
- **Only free plugins should initialize this library**.
24
-
25
- It can be instantiated and initialized in the method that loads the main WordPress hooks.
26
-
27
- When instantiating this library, you have to pass three params:
28
-
29
- * the plugin slug (the same one used in the URL of the WordPress repository)
30
- * the plugin's name
31
- * the URL for the logo (optional)
32
-
33
- ### Configuring the criteria to display the banner in the Free plugin
34
-
35
- It by default displays the banner when the following conditional is true:
36
-
37
- ```php
38
- is_admin() && current_user_can('edit_posts')
39
- ```
40
-
41
- But you can specify custom criteria to display the banner hooking into the filter `<plugin_slug>_wp_reviews_allow_display_notice`.
42
-
43
- ```php
44
- <?php
45
-
46
- use PublishPress\WordPressReviews\ReviewsController;
47
-
48
- class MyPlugin
49
- {
50
- /**
51
- * @var ReviewsController
52
- */
53
- private $reviewController;
54
-
55
- public function __construct()
56
- {
57
- $this->reviewController = new ReviewsController(
58
- 'my-plugin',
59
- 'My Plugin',
60
- MY_PLUGIN_URL . '/assets/img/logo.png'
61
- );
62
- }
63
-
64
- public function init()
65
- {
66
- // .......
67
- add_filter('my-plugin_wp_reviews_allow_display_notice', [$this, 'shouldDisplayBanner']);
68
-
69
- $this->reviewController->init();
70
- }
71
-
72
- public function shouldDisplayBanner($shouldDisplay)
73
- {
74
- global $pagenow;
75
-
76
- if (! is_admin() || ! current_user_can('edit_posts')) {
77
- return false;
78
- }
79
-
80
- if ($pagenow === 'admin.php' && isset($_GET['page'])) {
81
- if ($_GET['page'] === 'pp-page1') {
82
- return true;
83
- }
84
-
85
- if ($_GET['page'] === 'pp-page2') {
86
- return true;
87
- }
88
- }
89
-
90
- if ($pagenow === 'edit.php' && isset($_GET['post_type'])) {
91
- if ($_GET['post_type'] === 'pp_custom_post_type') {
92
- return true;
93
- }
94
- }
95
-
96
- return false;
97
- }
98
-
99
- // .......
100
- }
101
- ```
102
-
103
- ### Configuring the criteria to display the banner in the Pro plugin
104
-
105
- In case the Pro plugin has additional pages where you want to display the banner, feel free to use the same filter as
106
- in the free plugin but with a higher priority. You can choose to override the conditions used in the Free plugin
107
- or to append more conditions, for different pages.
108
-
109
- ```php
110
- add_filter('my-plugin_wp_reviews_allow_display_notice', [$this, 'shouldDisplayBanner'], 20);
111
- ```
112
-
113
- ```php
114
- /**
115
- * @param $shouldDisplay
116
- * @return bool|null
117
- */
118
- public function shouldDisplayBanner($shouldDisplay)
119
- {
120
- global $pagenow;
121
-
122
- if ($shouldDisplay) {
123
- return true;
124
- }
125
-
126
- if ($pagenow === 'edit.php' && isset($_GET['post_type'])) {
127
- if ($_GET['post_type'] === 'custom-posttype') {
128
- return true;
129
- }
130
- }
131
-
132
- return $shouldDisplay;
133
- }
134
- ```
135
-
136
- ### Backward compatibility with older versions
137
-
138
- By default, the library will use the plugin's slug as a prefix for the actions, metadata, and options:
139
-
140
- ```php
141
- [
142
- 'action_ajax_handler' => $this->pluginSlug . '_action',
143
- 'option_installed_on' => $this->pluginSlug . '_wp_reviews_installed_on',
144
- 'nonce_action' => $this->pluginSlug . '_wp_reviews_action',
145
- 'user_meta_dismissed_triggers' => '_' . $this->pluginSlug . '_wp_reviews_dismissed_triggers',
146
- 'user_meta_last_dismissed' => '_' . $this->pluginSlug . '_wp_reviews_last_dismissed',
147
- 'user_meta_already_did' => '_' . $this->pluginSlug . '_wp_reviews_already_did',
148
- 'filter_triggers' => $this->pluginSlug . '_wp_reviews_triggers',
149
- ]
150
- ```
151
-
152
- If you already use the original library in your plugin and want to keep compatibility with current sites data, you can customize the
153
- hooks and keys for the data stored in the DB using the filter `<plugin_slug>_wp_reviews_meta_map`:
154
-
155
- ```php
156
- <?php
157
-
158
- add_filter('my-plugin_wp_reviews_meta_map', 'my_plugin_wp_reviews_meta_map');
159
-
160
- function my_plugin_wp_reviews_meta_map($metaMap)
161
- {
162
- // You can override all the array, or specific keys.
163
- $metaMap = [
164
- 'action_ajax_handler' => 'legacy_slug_ajax_action',
165
- 'option_installed_on' => 'legacy_slug_wp_reviews_installed_on',
166
- 'nonce_action' => 'legacy_slug_wp_reviews_action',
167
- 'user_meta_dismissed_triggers' => '_legacy_slug_wp_reviews_dismissed_triggers',
168
- 'user_meta_last_dismissed' => '_legacy_slug_wp_reviews_last_dismissed',
169
- 'user_meta_already_did' => '_legacy_slug_wp_reviews_already_did',
170
- 'filter_triggers' => 'legacy_slug_wp_reviews_triggers',
171
- ];
172
-
173
- return $metaMap;
174
- }
175
- ```
176
-
177
- ## Common questions
178
-
179
- ### Should I use this library on Pro plugins?
180
-
181
- Pro plugins that embed the free plugin code **should not instantiate or initialize this library** otherwise, users will
182
- probably see duplicated admin notices or will be asked for a review twice.
183
-
184
- Keeping the library activated only by the free plugin allows both versions, free and pro,
185
- to share the same options and metadata stored in the database, avoiding duplicated banners or review requests.
186
-
187
- Please, **only initialize this library in the Free plugin** and do not disable or block it in the Pro version. We want to keep it enabled
188
- for both free and pro users.
189
-
190
-
191
- ## Testing
192
-
193
- You can test the banner in the WordPress admin by changing the option `<plugin-slug>_wp_reviews_installed_on` in the options table. Set it for older data to make sure the time difference is bigger than the selected trigger
194
-
195
- ## Copyright
196
-
197
- Based on the [library](https://github.com/danieliser/WP-Product-In-Dash-Review-Requests) created by [Daniel Iser](https://danieliser.com).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/publishpress/wordpress-reviews/composer.json DELETED
@@ -1,46 +0,0 @@
1
- {
2
- "name": "publishpress/wordpress-reviews",
3
- "type": "library",
4
- "license": "GPL-3.0-or-later",
5
- "description": "Library for showing a five-star review banner.",
6
- "keywords": ["reviews", "review", "wordpress plugin"],
7
- "homepage": "http://publishpress.com/",
8
- "authors": [
9
- {
10
- "name": "PublishPress",
11
- "email": "help@publishpress.com"
12
- },
13
- {
14
- "name": "Daniel Iser",
15
- "homepage": "https://github.com/danieliser/WP-Product-In-Dash-Review-Requests"
16
- }
17
- ],
18
- "minimum-stability": "dev",
19
- "prefer-stable": true,
20
- "autoload": {
21
- "files": [
22
- "ReviewsController.php"
23
- ]
24
- },
25
- "require": {
26
- "php": ">=5.6.20"
27
- },
28
- "require-dev": {
29
- "lucatume/wp-browser": "^3",
30
- "codeception/module-asserts": "^1.0",
31
- "codeception/module-phpbrowser": "^1.0",
32
- "codeception/module-webdriver": "^1.0",
33
- "codeception/module-db": "^1.0",
34
- "codeception/module-filesystem": "^1.0",
35
- "codeception/module-cli": "^1.0",
36
- "codeception/util-universalframework": "^1.0",
37
- "codeception/module-rest": "^1.3",
38
- "publishpress/publishpress-plugin-builder": "^1.2",
39
- "phpmd/phpmd": "^2.8",
40
- "squizlabs/php_codesniffer": "^3.5",
41
- "sebastian/phpcpd": "^5.0",
42
- "overtrue/phplint": "^2.1",
43
- "wp-cli/wp-cli": "^2.5",
44
- "wp-cli/i18n-command": "^2.2"
45
- }
46
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/publishpress/wordpress-reviews/composer.lock DELETED
@@ -1,8265 +0,0 @@
1
- {
2
- "_readme": [
3
- "This file locks the dependencies of your project to a known state",
4
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
- "This file is @generated automatically"
6
- ],
7
- "content-hash": "1f9719013ecdfb6c278cc0c5c976b141",
8
- "packages": [],
9
- "packages-dev": [
10
- {
11
- "name": "antecedent/patchwork",
12
- "version": "2.1.17",
13
- "source": {
14
- "type": "git",
15
- "url": "https://github.com/antecedent/patchwork.git",
16
- "reference": "df5aba175a44c2996ced4edf8ec9f9081b5348c0"
17
- },
18
- "dist": {
19
- "type": "zip",
20
- "url": "https://api.github.com/repos/antecedent/patchwork/zipball/df5aba175a44c2996ced4edf8ec9f9081b5348c0",
21
- "reference": "df5aba175a44c2996ced4edf8ec9f9081b5348c0",
22
- "shasum": ""
23
- },
24
- "require": {
25
- "php": ">=5.4.0"
26
- },
27
- "require-dev": {
28
- "phpunit/phpunit": ">=4"
29
- },
30
- "type": "library",
31
- "notification-url": "https://packagist.org/downloads/",
32
- "license": [
33
- "MIT"
34
- ],
35
- "authors": [
36
- {
37
- "name": "Ignas Rudaitis",
38
- "email": "ignas.rudaitis@gmail.com"
39
- }
40
- ],
41
- "description": "Method redefinition (monkey-patching) functionality for PHP.",
42
- "homepage": "http://patchwork2.org/",
43
- "keywords": [
44
- "aop",
45
- "aspect",
46
- "interception",
47
- "monkeypatching",
48
- "redefinition",
49
- "runkit",
50
- "testing"
51
- ],
52
- "support": {
53
- "issues": "https://github.com/antecedent/patchwork/issues",
54
- "source": "https://github.com/antecedent/patchwork/tree/2.1.17"
55
- },
56
- "time": "2021-10-21T14:22:43+00:00"
57
- },
58
- {
59
- "name": "behat/gherkin",
60
- "version": "v4.9.0",
61
- "source": {
62
- "type": "git",
63
- "url": "https://github.com/Behat/Gherkin.git",
64
- "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4"
65
- },
66
- "dist": {
67
- "type": "zip",
68
- "url": "https://api.github.com/repos/Behat/Gherkin/zipball/0bc8d1e30e96183e4f36db9dc79caead300beff4",
69
- "reference": "0bc8d1e30e96183e4f36db9dc79caead300beff4",
70
- "shasum": ""
71
- },
72
- "require": {
73
- "php": "~7.2|~8.0"
74
- },
75
- "require-dev": {
76
- "cucumber/cucumber": "dev-gherkin-22.0.0",
77
- "phpunit/phpunit": "~8|~9",
78
- "symfony/yaml": "~3|~4|~5"
79
- },
80
- "suggest": {
81
- "symfony/yaml": "If you want to parse features, represented in YAML files"
82
- },
83
- "type": "library",
84
- "extra": {
85
- "branch-alias": {
86
- "dev-master": "4.x-dev"
87
- }
88
- },
89
- "autoload": {
90
- "psr-0": {
91
- "Behat\\Gherkin": "src/"
92
- }
93
- },
94
- "notification-url": "https://packagist.org/downloads/",
95
- "license": [
96
- "MIT"
97
- ],
98
- "authors": [
99
- {
100
- "name": "Konstantin Kudryashov",
101
- "email": "ever.zet@gmail.com",
102
- "homepage": "http://everzet.com"
103
- }
104
- ],
105
- "description": "Gherkin DSL parser for PHP",
106
- "homepage": "http://behat.org/",
107
- "keywords": [
108
- "BDD",
109
- "Behat",
110
- "Cucumber",
111
- "DSL",
112
- "gherkin",
113
- "parser"
114
- ],
115
- "support": {
116
- "issues": "https://github.com/Behat/Gherkin/issues",
117
- "source": "https://github.com/Behat/Gherkin/tree/v4.9.0"
118
- },
119
- "time": "2021-10-12T13:05:09+00:00"
120
- },
121
- {
122
- "name": "bordoni/phpass",
123
- "version": "0.3.5",
124
- "source": {
125
- "type": "git",
126
- "url": "https://github.com/bordoni/phpass.git",
127
- "reference": "fd57c109213e95150b7de1dc8908c55605cd8e55"
128
- },
129
- "dist": {
130
- "type": "zip",
131
- "url": "https://api.github.com/repos/bordoni/phpass/zipball/fd57c109213e95150b7de1dc8908c55605cd8e55",
132
- "reference": "fd57c109213e95150b7de1dc8908c55605cd8e55",
133
- "shasum": ""
134
- },
135
- "require": {
136
- "php": ">=5.3.3"
137
- },
138
- "replace": {
139
- "hautelook/phpass": "0.3.*"
140
- },
141
- "type": "library",
142
- "autoload": {
143
- "psr-0": {
144
- "Hautelook": "src/"
145
- }
146
- },
147
- "notification-url": "https://packagist.org/downloads/",
148
- "license": [
149
- "Public Domain"
150
- ],
151
- "authors": [
152
- {
153
- "name": "Solar Designer",
154
- "email": "solar@openwall.com",
155
- "homepage": "http://openwall.com/phpass/"
156
- },
157
- {
158
- "name": "Gustavo Bordoni",
159
- "email": "gustavo@bordoni.me",
160
- "homepage": "https://bordoni.me"
161
- }
162
- ],
163
- "description": "Portable PHP password hashing framework",
164
- "homepage": "http://github.com/hautelook/phpass/",
165
- "keywords": [
166
- "blowfish",
167
- "crypt",
168
- "password",
169
- "security"
170
- ],
171
- "support": {
172
- "issues": "https://github.com/bordoni/phpass/issues",
173
- "source": "https://github.com/bordoni/phpass/tree/0.3.5"
174
- },
175
- "time": "2012-08-31T00:00:00+00:00"
176
- },
177
- {
178
- "name": "codeception/codeception",
179
- "version": "4.1.22",
180
- "source": {
181
- "type": "git",
182
- "url": "https://github.com/Codeception/Codeception.git",
183
- "reference": "9777ec3690ceedc4bce2ed13af7af4ca4ee3088f"
184
- },
185
- "dist": {
186
- "type": "zip",
187
- "url": "https://api.github.com/repos/Codeception/Codeception/zipball/9777ec3690ceedc4bce2ed13af7af4ca4ee3088f",
188
- "reference": "9777ec3690ceedc4bce2ed13af7af4ca4ee3088f",
189
- "shasum": ""
190
- },
191
- "require": {
192
- "behat/gherkin": "^4.4.0",
193
- "codeception/lib-asserts": "^1.0",
194
- "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
195
- "codeception/stub": "^2.0 | ^3.0",
196
- "ext-curl": "*",
197
- "ext-json": "*",
198
- "ext-mbstring": "*",
199
- "guzzlehttp/psr7": "^1.4 | ^2.0",
200
- "php": ">=5.6.0 <9.0",
201
- "symfony/console": ">=2.7 <6.0",
202
- "symfony/css-selector": ">=2.7 <6.0",
203
- "symfony/event-dispatcher": ">=2.7 <6.0",
204
- "symfony/finder": ">=2.7 <6.0",
205
- "symfony/yaml": ">=2.7 <6.0"
206
- },
207
- "require-dev": {
208
- "codeception/module-asserts": "1.*@dev",
209
- "codeception/module-cli": "1.*@dev",
210
- "codeception/module-db": "1.*@dev",
211
- "codeception/module-filesystem": "1.*@dev",
212
- "codeception/module-phpbrowser": "1.*@dev",
213
- "codeception/specify": "~0.3",
214
- "codeception/util-universalframework": "*@dev",
215
- "monolog/monolog": "~1.8",
216
- "squizlabs/php_codesniffer": "~2.0",
217
- "symfony/process": ">=2.7 <6.0",
218
- "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
219
- },
220
- "suggest": {
221
- "codeception/specify": "BDD-style code blocks",
222
- "codeception/verify": "BDD-style assertions",
223
- "hoa/console": "For interactive console functionality",
224
- "stecman/symfony-console-completion": "For BASH autocompletion",
225
- "symfony/phpunit-bridge": "For phpunit-bridge support"
226
- },
227
- "bin": [
228
- "codecept"
229
- ],
230
- "type": "library",
231
- "extra": {
232
- "branch-alias": []
233
- },
234
- "autoload": {
235
- "psr-4": {
236
- "Codeception\\": "src/Codeception",
237
- "Codeception\\Extension\\": "ext"
238
- }
239
- },
240
- "notification-url": "https://packagist.org/downloads/",
241
- "license": [
242
- "MIT"
243
- ],
244
- "authors": [
245
- {
246
- "name": "Michael Bodnarchuk",
247
- "email": "davert@mail.ua",
248
- "homepage": "http://codegyre.com"
249
- }
250
- ],
251
- "description": "BDD-style testing framework",
252
- "homepage": "http://codeception.com/",
253
- "keywords": [
254
- "BDD",
255
- "TDD",
256
- "acceptance testing",
257
- "functional testing",
258
- "unit testing"
259
- ],
260
- "support": {
261
- "issues": "https://github.com/Codeception/Codeception/issues",
262
- "source": "https://github.com/Codeception/Codeception/tree/4.1.22"
263
- },
264
- "funding": [
265
- {
266
- "url": "https://opencollective.com/codeception",
267
- "type": "open_collective"
268
- }
269
- ],
270
- "time": "2021-08-06T17:15:34+00:00"
271
- },
272
- {
273
- "name": "codeception/lib-asserts",
274
- "version": "1.13.2",
275
- "source": {
276
- "type": "git",
277
- "url": "https://github.com/Codeception/lib-asserts.git",
278
- "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
279
- },
280
- "dist": {
281
- "type": "zip",
282
- "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
283
- "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
284
- "shasum": ""
285
- },
286
- "require": {
287
- "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
288
- "ext-dom": "*",
289
- "php": ">=5.6.0 <9.0"
290
- },
291
- "type": "library",
292
- "autoload": {
293
- "classmap": [
294
- "src/"
295
- ]
296
- },
297
- "notification-url": "https://packagist.org/downloads/",
298
- "license": [
299
- "MIT"
300
- ],
301
- "authors": [
302
- {
303
- "name": "Michael Bodnarchuk",
304
- "email": "davert@mail.ua",
305
- "homepage": "http://codegyre.com"
306
- },
307
- {
308
- "name": "Gintautas Miselis"
309
- },
310
- {
311
- "name": "Gustavo Nieves",
312
- "homepage": "https://medium.com/@ganieves"
313
- }
314
- ],
315
- "description": "Assertion methods used by Codeception core and Asserts module",
316
- "homepage": "https://codeception.com/",
317
- "keywords": [
318
- "codeception"
319
- ],
320
- "support": {
321
- "issues": "https://github.com/Codeception/lib-asserts/issues",
322
- "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
323
- },
324
- "time": "2020-10-21T16:26:20+00:00"
325
- },
326
- {
327
- "name": "codeception/lib-innerbrowser",
328
- "version": "1.5.1",
329
- "source": {
330
- "type": "git",
331
- "url": "https://github.com/Codeception/lib-innerbrowser.git",
332
- "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
333
- },
334
- "dist": {
335
- "type": "zip",
336
- "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
337
- "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
338
- "shasum": ""
339
- },
340
- "require": {
341
- "codeception/codeception": "4.*@dev",
342
- "ext-dom": "*",
343
- "ext-json": "*",
344
- "ext-mbstring": "*",
345
- "php": ">=5.6.0 <9.0",
346
- "symfony/browser-kit": ">=2.7 <6.0",
347
- "symfony/dom-crawler": ">=2.7 <6.0"
348
- },
349
- "conflict": {
350
- "codeception/codeception": "<4.0"
351
- },
352
- "require-dev": {
353
- "codeception/util-universalframework": "dev-master"
354
- },
355
- "type": "library",
356
- "autoload": {
357
- "classmap": [
358
- "src/"
359
- ]
360
- },
361
- "notification-url": "https://packagist.org/downloads/",
362
- "license": [
363
- "MIT"
364
- ],
365
- "authors": [
366
- {
367
- "name": "Michael Bodnarchuk",
368
- "email": "davert@mail.ua",
369
- "homepage": "http://codegyre.com"
370
- },
371
- {
372
- "name": "Gintautas Miselis"
373
- }
374
- ],
375
- "description": "Parent library for all Codeception framework modules and PhpBrowser",
376
- "homepage": "https://codeception.com/",
377
- "keywords": [
378
- "codeception"
379
- ],
380
- "support": {
381
- "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
382
- "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1"
383
- },
384
- "time": "2021-08-30T15:21:42+00:00"
385
- },
386
- {
387
- "name": "codeception/module-asserts",
388
- "version": "1.3.1",
389
- "source": {
390
- "type": "git",
391
- "url": "https://github.com/Codeception/module-asserts.git",
392
- "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
393
- },
394
- "dist": {
395
- "type": "zip",
396
- "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
397
- "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
398
- "shasum": ""
399
- },
400
- "require": {
401
- "codeception/codeception": "*@dev",
402
- "codeception/lib-asserts": "^1.13.1",
403
- "php": ">=5.6.0 <9.0"
404
- },
405
- "conflict": {
406
- "codeception/codeception": "<4.0"
407
- },
408
- "type": "library",
409
- "autoload": {
410
- "classmap": [
411
- "src/"
412
- ]
413
- },
414
- "notification-url": "https://packagist.org/downloads/",
415
- "license": [
416
- "MIT"
417
- ],
418
- "authors": [
419
- {
420
- "name": "Michael Bodnarchuk"
421
- },
422
- {
423
- "name": "Gintautas Miselis"
424
- },
425
- {
426
- "name": "Gustavo Nieves",
427
- "homepage": "https://medium.com/@ganieves"
428
- }
429
- ],
430
- "description": "Codeception module containing various assertions",
431
- "homepage": "https://codeception.com/",
432
- "keywords": [
433
- "assertions",
434
- "asserts",
435
- "codeception"
436
- ],
437
- "support": {
438
- "issues": "https://github.com/Codeception/module-asserts/issues",
439
- "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
440
- },
441
- "time": "2020-10-21T16:48:15+00:00"
442
- },
443
- {
444
- "name": "codeception/module-cli",
445
- "version": "1.1.1",
446
- "source": {
447
- "type": "git",
448
- "url": "https://github.com/Codeception/module-cli.git",
449
- "reference": "1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f"
450
- },
451
- "dist": {
452
- "type": "zip",
453
- "url": "https://api.github.com/repos/Codeception/module-cli/zipball/1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f",
454
- "reference": "1f841ad4a1d43e5d9e60a43c4cc9e5af8008024f",
455
- "shasum": ""
456
- },
457
- "require": {
458
- "codeception/codeception": "*@dev",
459
- "php": ">=5.6.0 <9.0"
460
- },
461
- "conflict": {
462
- "codeception/codeception": "<4.0"
463
- },
464
- "type": "library",
465
- "autoload": {
466
- "classmap": [
467
- "src/"
468
- ]
469
- },
470
- "notification-url": "https://packagist.org/downloads/",
471
- "license": [
472
- "MIT"
473
- ],
474
- "authors": [
475
- {
476
- "name": "Michael Bodnarchuk"
477
- }
478
- ],
479
- "description": "Codeception module for testing basic shell commands and shell output",
480
- "homepage": "http://codeception.com/",
481
- "keywords": [
482
- "codeception"
483
- ],
484
- "support": {
485
- "issues": "https://github.com/Codeception/module-cli/issues",
486
- "source": "https://github.com/Codeception/module-cli/tree/1.1.1"
487
- },
488
- "time": "2020-12-26T16:56:19+00:00"
489
- },
490
- {
491
- "name": "codeception/module-db",
492
- "version": "1.1.0",
493
- "source": {
494
- "type": "git",
495
- "url": "https://github.com/Codeception/module-db.git",
496
- "reference": "8c8076cd05d4db95798acd7dba2a56578210982c"
497
- },
498
- "dist": {
499
- "type": "zip",
500
- "url": "https://api.github.com/repos/Codeception/module-db/zipball/8c8076cd05d4db95798acd7dba2a56578210982c",
501
- "reference": "8c8076cd05d4db95798acd7dba2a56578210982c",
502
- "shasum": ""
503
- },
504
- "require": {
505
- "codeception/codeception": "*@dev",
506
- "php": ">=5.6.0 <9.0"
507
- },
508
- "conflict": {
509
- "codeception/codeception": "<4.0"
510
- },
511
- "type": "library",
512
- "autoload": {
513
- "classmap": [
514
- "src/"
515
- ]
516
- },
517
- "notification-url": "https://packagist.org/downloads/",
518
- "license": [
519
- "MIT"
520
- ],
521
- "authors": [
522
- {
523
- "name": "Michael Bodnarchuk"
524
- },
525
- {
526
- "name": "Gintautas Miselis"
527
- }
528
- ],
529
- "description": "DB module for Codeception",
530
- "homepage": "http://codeception.com/",
531
- "keywords": [
532
- "codeception",
533
- "database-testing",
534
- "db-testing"
535
- ],
536
- "support": {
537
- "issues": "https://github.com/Codeception/module-db/issues",
538
- "source": "https://github.com/Codeception/module-db/tree/1.1.0"
539
- },
540
- "time": "2020-12-20T13:37:07+00:00"
541
- },
542
- {
543
- "name": "codeception/module-filesystem",
544
- "version": "1.0.3",
545
- "source": {
546
- "type": "git",
547
- "url": "https://github.com/Codeception/module-filesystem.git",
548
- "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1"
549
- },
550
- "dist": {
551
- "type": "zip",
552
- "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/781be167fb1557bfc9b61e0a4eac60a32c534ec1",
553
- "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1",
554
- "shasum": ""
555
- },
556
- "require": {
557
- "codeception/codeception": "^4.0",
558
- "php": ">=5.6.0 <9.0",
559
- "symfony/finder": ">=2.7 <6.0"
560
- },
561
- "conflict": {
562
- "codeception/codeception": "<4.0"
563
- },
564
- "type": "library",
565
- "autoload": {
566
- "classmap": [
567
- "src/"
568
- ]
569
- },
570
- "notification-url": "https://packagist.org/downloads/",
571
- "license": [
572
- "MIT"
573
- ],
574
- "authors": [
575
- {
576
- "name": "Michael Bodnarchuk"
577
- },
578
- {
579
- "name": "Gintautas Miselis"
580
- }
581
- ],
582
- "description": "Codeception module for testing local filesystem",
583
- "homepage": "http://codeception.com/",
584
- "keywords": [
585
- "codeception",
586
- "filesystem"
587
- ],
588
- "support": {
589
- "issues": "https://github.com/Codeception/module-filesystem/issues",
590
- "source": "https://github.com/Codeception/module-filesystem/tree/1.0.3"
591
- },
592
- "time": "2020-10-24T14:46:40+00:00"
593
- },
594
- {
595
- "name": "codeception/module-phpbrowser",
596
- "version": "1.0.2",
597
- "source": {
598
- "type": "git",
599
- "url": "https://github.com/Codeception/module-phpbrowser.git",
600
- "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1"
601
- },
602
- "dist": {
603
- "type": "zip",
604
- "url": "https://api.github.com/repos/Codeception/module-phpbrowser/zipball/770a6be4160a5c0c08d100dd51bff35f6056bbf1",
605
- "reference": "770a6be4160a5c0c08d100dd51bff35f6056bbf1",
606
- "shasum": ""
607
- },
608
- "require": {
609
- "codeception/codeception": "^4.0",
610
- "codeception/lib-innerbrowser": "^1.3",
611
- "guzzlehttp/guzzle": "^6.3|^7.0",
612
- "php": ">=5.6.0 <9.0"
613
- },
614
- "conflict": {
615
- "codeception/codeception": "<4.0"
616
- },
617
- "require-dev": {
618
- "codeception/module-rest": "^1.0"
619
- },
620
- "suggest": {
621
- "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
622
- },
623
- "type": "library",
624
- "autoload": {
625
- "classmap": [
626
- "src/"
627
- ]
628
- },
629
- "notification-url": "https://packagist.org/downloads/",
630
- "license": [
631
- "MIT"
632
- ],
633
- "authors": [
634
- {
635
- "name": "Michael Bodnarchuk"
636
- },
637
- {
638
- "name": "Gintautas Miselis"
639
- }
640
- ],
641
- "description": "Codeception module for testing web application over HTTP",
642
- "homepage": "http://codeception.com/",
643
- "keywords": [
644
- "codeception",
645
- "functional-testing",
646
- "http"
647
- ],
648
- "support": {
649
- "issues": "https://github.com/Codeception/module-phpbrowser/issues",
650
- "source": "https://github.com/Codeception/module-phpbrowser/tree/1.0.2"
651
- },
652
- "time": "2020-10-24T15:29:28+00:00"
653
- },
654
- {
655
- "name": "codeception/module-rest",
656
- "version": "1.4.2",
657
- "source": {
658
- "type": "git",
659
- "url": "https://github.com/Codeception/module-rest.git",
660
- "reference": "9cd7a87fd9343494e7782f7bdb51687c25046917"
661
- },
662
- "dist": {
663
- "type": "zip",
664
- "url": "https://api.github.com/repos/Codeception/module-rest/zipball/9cd7a87fd9343494e7782f7bdb51687c25046917",
665
- "reference": "9cd7a87fd9343494e7782f7bdb51687c25046917",
666
- "shasum": ""
667
- },
668
- "require": {
669
- "codeception/codeception": "^4.0",
670
- "justinrainbow/json-schema": "~5.2.9",
671
- "php": ">=5.6.6 <9.0",
672
- "softcreatr/jsonpath": "^0.5 || ^0.7"
673
- },
674
- "require-dev": {
675
- "codeception/lib-innerbrowser": "^1.0",
676
- "codeception/util-universalframework": "^1.0"
677
- },
678
- "suggest": {
679
- "aws/aws-sdk-php": "For using AWS Auth"
680
- },
681
- "type": "library",
682
- "autoload": {
683
- "classmap": [
684
- "src/"
685
- ]
686
- },
687
- "notification-url": "https://packagist.org/downloads/",
688
- "license": [
689
- "MIT"
690
- ],
691
- "authors": [
692
- {
693
- "name": "Gintautas Miselis"
694
- }
695
- ],
696
- "description": "REST module for Codeception",
697
- "homepage": "http://codeception.com/",
698
- "keywords": [
699
- "codeception",
700
- "rest"
701
- ],
702
- "support": {
703
- "issues": "https://github.com/Codeception/module-rest/issues",
704
- "source": "https://github.com/Codeception/module-rest/tree/1.4.2"
705
- },
706
- "time": "2021-11-18T18:58:15+00:00"
707
- },
708
- {
709
- "name": "codeception/module-webdriver",
710
- "version": "1.4.0",
711
- "source": {
712
- "type": "git",
713
- "url": "https://github.com/Codeception/module-webdriver.git",
714
- "reference": "baa18b7bf70aa024012f967b5ce5021e1faa9151"
715
- },
716
- "dist": {
717
- "type": "zip",
718
- "url": "https://api.github.com/repos/Codeception/module-webdriver/zipball/baa18b7bf70aa024012f967b5ce5021e1faa9151",
719
- "reference": "baa18b7bf70aa024012f967b5ce5021e1faa9151",
720
- "shasum": ""
721
- },
722
- "require": {
723
- "codeception/codeception": "^4.0",
724
- "php": ">=5.6.0 <9.0",
725
- "php-webdriver/webdriver": "^1.8.0"
726
- },
727
- "suggest": {
728
- "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"
729
- },
730
- "type": "library",
731
- "autoload": {
732
- "classmap": [
733
- "src/"
734
- ]
735
- },
736
- "notification-url": "https://packagist.org/downloads/",
737
- "license": [
738
- "MIT"
739
- ],
740
- "authors": [
741
- {
742
- "name": "Michael Bodnarchuk"
743
- },
744
- {
745
- "name": "Gintautas Miselis"
746
- },
747
- {
748
- "name": "Zaahid Bateson"
749
- }
750
- ],
751
- "description": "WebDriver module for Codeception",
752
- "homepage": "http://codeception.com/",
753
- "keywords": [
754
- "acceptance-testing",
755
- "browser-testing",
756
- "codeception"
757
- ],
758
- "support": {
759
- "issues": "https://github.com/Codeception/module-webdriver/issues",
760
- "source": "https://github.com/Codeception/module-webdriver/tree/1.4.0"
761
- },
762
- "time": "2021-09-02T12:01:02+00:00"
763
- },
764
- {
765
- "name": "codeception/phpunit-wrapper",
766
- "version": "9.0.6",
767
- "source": {
768
- "type": "git",
769
- "url": "https://github.com/Codeception/phpunit-wrapper.git",
770
- "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc"
771
- },
772
- "dist": {
773
- "type": "zip",
774
- "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/b0c06abb3181eedca690170f7ed0fd26a70bfacc",
775
- "reference": "b0c06abb3181eedca690170f7ed0fd26a70bfacc",
776
- "shasum": ""
777
- },
778
- "require": {
779
- "php": ">=7.2",
780
- "phpunit/phpunit": "^9.0"
781
- },
782
- "require-dev": {
783
- "codeception/specify": "*",
784
- "consolidation/robo": "^3.0.0-alpha3",
785
- "vlucas/phpdotenv": "^3.0"
786
- },
787
- "type": "library",
788
- "autoload": {
789
- "psr-4": {
790
- "Codeception\\PHPUnit\\": "src/"
791
- }
792
- },
793
- "notification-url": "https://packagist.org/downloads/",
794
- "license": [
795
- "MIT"
796
- ],
797
- "authors": [
798
- {
799
- "name": "Davert",
800
- "email": "davert.php@resend.cc"
801
- },
802
- {
803
- "name": "Naktibalda"
804
- }
805
- ],
806
- "description": "PHPUnit classes used by Codeception",
807
- "support": {
808
- "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
809
- "source": "https://github.com/Codeception/phpunit-wrapper/tree/9.0.6"
810
- },
811
- "time": "2020-12-28T13:59:47+00:00"
812
- },
813
- {
814
- "name": "codeception/stub",
815
- "version": "3.7.0",
816
- "source": {
817
- "type": "git",
818
- "url": "https://github.com/Codeception/Stub.git",
819
- "reference": "468dd5fe659f131fc997f5196aad87512f9b1304"
820
- },
821
- "dist": {
822
- "type": "zip",
823
- "url": "https://api.github.com/repos/Codeception/Stub/zipball/468dd5fe659f131fc997f5196aad87512f9b1304",
824
- "reference": "468dd5fe659f131fc997f5196aad87512f9b1304",
825
- "shasum": ""
826
- },
827
- "require": {
828
- "phpunit/phpunit": "^8.4 | ^9.0"
829
- },
830
- "type": "library",
831
- "autoload": {
832
- "psr-4": {
833
- "Codeception\\": "src/"
834
- }
835
- },
836
- "notification-url": "https://packagist.org/downloads/",
837
- "license": [
838
- "MIT"
839
- ],
840
- "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
841
- "support": {
842
- "issues": "https://github.com/Codeception/Stub/issues",
843
- "source": "https://github.com/Codeception/Stub/tree/3.7.0"
844
- },
845
- "time": "2020-07-03T15:54:43+00:00"
846
- },
847
- {
848
- "name": "codeception/util-universalframework",
849
- "version": "1.0.0",
850
- "source": {
851
- "type": "git",
852
- "url": "https://github.com/Codeception/util-universalframework.git",
853
- "reference": "cc381f364c6d24f9b9c7b70a4c724949725f491a"
854
- },
855
- "dist": {
856
- "type": "zip",
857
- "url": "https://api.github.com/repos/Codeception/util-universalframework/zipball/cc381f364c6d24f9b9c7b70a4c724949725f491a",
858
- "reference": "cc381f364c6d24f9b9c7b70a4c724949725f491a",
859
- "shasum": ""
860
- },
861
- "type": "library",
862
- "autoload": {
863
- "classmap": [
864
- "src/"
865
- ]
866
- },
867
- "notification-url": "https://packagist.org/downloads/",
868
- "license": [
869
- "MIT"
870
- ],
871
- "authors": [
872
- {
873
- "name": "Gintautas Miselis"
874
- }
875
- ],
876
- "description": "Mock framework module used in internal Codeception tests",
877
- "homepage": "http://codeception.com/",
878
- "support": {
879
- "issues": "https://github.com/Codeception/util-universalframework/issues",
880
- "source": "https://github.com/Codeception/util-universalframework/tree/1.0.0"
881
- },
882
- "time": "2019-09-22T06:06:49+00:00"
883
- },
884
- {
885
- "name": "composer/semver",
886
- "version": "3.2.6",
887
- "source": {
888
- "type": "git",
889
- "url": "https://github.com/composer/semver.git",
890
- "reference": "83e511e247de329283478496f7a1e114c9517506"
891
- },
892
- "dist": {
893
- "type": "zip",
894
- "url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506",
895
- "reference": "83e511e247de329283478496f7a1e114c9517506",
896
- "shasum": ""
897
- },
898
- "require": {
899
- "php": "^5.3.2 || ^7.0 || ^8.0"
900
- },
901
- "require-dev": {
902
- "phpstan/phpstan": "^0.12.54",
903
- "symfony/phpunit-bridge": "^4.2 || ^5"
904
- },
905
- "type": "library",
906
- "extra": {
907
- "branch-alias": {
908
- "dev-main": "3.x-dev"
909
- }
910
- },
911
- "autoload": {
912
- "psr-4": {
913
- "Composer\\Semver\\": "src"
914
- }
915
- },
916
- "notification-url": "https://packagist.org/downloads/",
917
- "license": [
918
- "MIT"
919
- ],
920
- "authors": [
921
- {
922
- "name": "Nils Adermann",
923
- "email": "naderman@naderman.de",
924
- "homepage": "http://www.naderman.de"
925
- },
926
- {
927
- "name": "Jordi Boggiano",
928
- "email": "j.boggiano@seld.be",
929
- "homepage": "http://seld.be"
930
- },
931
- {
932
- "name": "Rob Bast",
933
- "email": "rob.bast@gmail.com",
934
- "homepage": "http://robbast.nl"
935
- }
936
- ],
937
- "description": "Semver library that offers utilities, version constraint parsing and validation.",
938
- "keywords": [
939
- "semantic",
940
- "semver",
941
- "validation",
942
- "versioning"
943
- ],
944
- "support": {
945
- "irc": "irc://irc.freenode.org/composer",
946
- "issues": "https://github.com/composer/semver/issues",
947
- "source": "https://github.com/composer/semver/tree/3.2.6"
948
- },
949
- "funding": [
950
- {
951
- "url": "https://packagist.com",
952
- "type": "custom"
953
- },
954
- {
955
- "url": "https://github.com/composer",
956
- "type": "github"
957
- },
958
- {
959
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
960
- "type": "tidelift"
961
- }
962
- ],
963
- "time": "2021-10-25T11:34:17+00:00"
964
- },
965
- {
966
- "name": "composer/xdebug-handler",
967
- "version": "2.0.2",
968
- "source": {
969
- "type": "git",
970
- "url": "https://github.com/composer/xdebug-handler.git",
971
- "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339"
972
- },
973
- "dist": {
974
- "type": "zip",
975
- "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/84674dd3a7575ba617f5a76d7e9e29a7d3891339",
976
- "reference": "84674dd3a7575ba617f5a76d7e9e29a7d3891339",
977
- "shasum": ""
978
- },
979
- "require": {
980
- "php": "^5.3.2 || ^7.0 || ^8.0",
981
- "psr/log": "^1 || ^2 || ^3"
982
- },
983
- "require-dev": {
984
- "phpstan/phpstan": "^0.12.55",
985
- "symfony/phpunit-bridge": "^4.2 || ^5"
986
- },
987
- "type": "library",
988
- "autoload": {
989
- "psr-4": {
990
- "Composer\\XdebugHandler\\": "src"
991
- }
992
- },
993
- "notification-url": "https://packagist.org/downloads/",
994
- "license": [
995
- "MIT"
996
- ],
997
- "authors": [
998
- {
999
- "name": "John Stevenson",
1000
- "email": "john-stevenson@blueyonder.co.uk"
1001
- }
1002
- ],
1003
- "description": "Restarts a process without Xdebug.",
1004
- "keywords": [
1005
- "Xdebug",
1006
- "performance"
1007
- ],
1008
- "support": {
1009
- "irc": "irc://irc.freenode.org/composer",
1010
- "issues": "https://github.com/composer/xdebug-handler/issues",
1011
- "source": "https://github.com/composer/xdebug-handler/tree/2.0.2"
1012
- },
1013
- "funding": [
1014
- {
1015
- "url": "https://packagist.com",
1016
- "type": "custom"
1017
- },
1018
- {
1019
- "url": "https://github.com/composer",
1020
- "type": "github"
1021
- },
1022
- {
1023
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
1024
- "type": "tidelift"
1025
- }
1026
- ],
1027
- "time": "2021-07-31T17:03:58+00:00"
1028
- },
1029
- {
1030
- "name": "consolidation/annotated-command",
1031
- "version": "4.4.0",
1032
- "source": {
1033
- "type": "git",
1034
- "url": "https://github.com/consolidation/annotated-command.git",
1035
- "reference": "308f6ac178566a1ce9aa90ed908dac90a2c1e707"
1036
- },
1037
- "dist": {
1038
- "type": "zip",
1039
- "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/308f6ac178566a1ce9aa90ed908dac90a2c1e707",
1040
- "reference": "308f6ac178566a1ce9aa90ed908dac90a2c1e707",
1041
- "shasum": ""
1042
- },
1043
- "require": {
1044
- "consolidation/output-formatters": "^4.1.1",
1045
- "php": ">=7.1.3",
1046
- "psr/log": "^1|^2",
1047
- "symfony/console": "^4.4.8|~5.1.0",
1048
- "symfony/event-dispatcher": "^4.4.8|^5",
1049
- "symfony/finder": "^4.4.8|^5"
1050
- },
1051
- "require-dev": {
1052
- "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
1053
- "squizlabs/php_codesniffer": "^3",
1054
- "yoast/phpunit-polyfills": "^0.2.0"
1055
- },
1056
- "type": "library",
1057
- "extra": {
1058
- "branch-alias": {
1059
- "dev-main": "4.x-dev"
1060
- }
1061
- },
1062
- "autoload": {
1063
- "psr-4": {
1064
- "Consolidation\\AnnotatedCommand\\": "src"
1065
- }
1066
- },
1067
- "notification-url": "https://packagist.org/downloads/",
1068
- "license": [
1069
- "MIT"
1070
- ],
1071
- "authors": [
1072
- {
1073
- "name": "Greg Anderson",
1074
- "email": "greg.1.anderson@greenknowe.org"
1075
- }
1076
- ],
1077
- "description": "Initialize Symfony Console commands from annotated command class methods.",
1078
- "support": {
1079
- "issues": "https://github.com/consolidation/annotated-command/issues",
1080
- "source": "https://github.com/consolidation/annotated-command/tree/4.4.0"
1081
- },
1082
- "time": "2021-09-30T01:08:15+00:00"
1083
- },
1084
- {
1085
- "name": "consolidation/config",
1086
- "version": "2.0.1",
1087
- "source": {
1088
- "type": "git",
1089
- "url": "https://github.com/consolidation/config.git",
1090
- "reference": "9a2c2a7b2aea1b3525984a4378743a8b74c14e1c"
1091
- },
1092
- "dist": {
1093
- "type": "zip",
1094
- "url": "https://api.github.com/repos/consolidation/config/zipball/9a2c2a7b2aea1b3525984a4378743a8b74c14e1c",
1095
- "reference": "9a2c2a7b2aea1b3525984a4378743a8b74c14e1c",
1096
- "shasum": ""
1097
- },
1098
- "require": {
1099
- "dflydev/dot-access-data": "^1.1.0",
1100
- "grasmash/expander": "^1",
1101
- "php": ">=7.1.3",
1102
- "psr/log": "^1.1",
1103
- "symfony/event-dispatcher": "^4||^5"
1104
- },
1105
- "require-dev": {
1106
- "phpunit/phpunit": ">=7.5.20",
1107
- "squizlabs/php_codesniffer": "^3",
1108
- "symfony/console": "^4||^5",
1109
- "symfony/yaml": "^4||^5",
1110
- "yoast/phpunit-polyfills": "^0.2.0"
1111
- },
1112
- "suggest": {
1113
- "symfony/event-dispatcher": "Required to inject configuration into Command options",
1114
- "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
1115
- },
1116
- "type": "library",
1117
- "extra": {
1118
- "branch-alias": {
1119
- "dev-main": "2.x-dev"
1120
- }
1121
- },
1122
- "autoload": {
1123
- "psr-4": {
1124
- "Consolidation\\Config\\": "src"
1125
- }
1126
- },
1127
- "notification-url": "https://packagist.org/downloads/",
1128
- "license": [
1129
- "MIT"
1130
- ],
1131
- "authors": [
1132
- {
1133
- "name": "Greg Anderson",
1134
- "email": "greg.1.anderson@greenknowe.org"
1135
- }
1136
- ],
1137
- "description": "Provide configuration services for a commandline tool.",
1138
- "support": {
1139
- "issues": "https://github.com/consolidation/config/issues",
1140
- "source": "https://github.com/consolidation/config/tree/2.0.1"
1141
- },
1142
- "time": "2020-12-06T00:03:30+00:00"
1143
- },
1144
- {
1145
- "name": "consolidation/log",
1146
- "version": "2.0.2",
1147
- "source": {
1148
- "type": "git",
1149
- "url": "https://github.com/consolidation/log.git",
1150
- "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1"
1151
- },
1152
- "dist": {
1153
- "type": "zip",
1154
- "url": "https://api.github.com/repos/consolidation/log/zipball/82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
1155
- "reference": "82a2aaaa621a7b976e50a745a8d249d5085ee2b1",
1156
- "shasum": ""
1157
- },
1158
- "require": {
1159
- "php": ">=7.1.3",
1160
- "psr/log": "^1.0",
1161
- "symfony/console": "^4|^5"
1162
- },
1163
- "require-dev": {
1164
- "phpunit/phpunit": ">=7.5.20",
1165
- "squizlabs/php_codesniffer": "^3",
1166
- "yoast/phpunit-polyfills": "^0.2.0"
1167
- },
1168
- "type": "library",
1169
- "extra": {
1170
- "branch-alias": {
1171
- "dev-main": "2.x-dev"
1172
- }
1173
- },
1174
- "autoload": {
1175
- "psr-4": {
1176
- "Consolidation\\Log\\": "src"
1177
- }
1178
- },
1179
- "notification-url": "https://packagist.org/downloads/",
1180
- "license": [
1181
- "MIT"
1182
- ],
1183
- "authors": [
1184
- {
1185
- "name": "Greg Anderson",
1186
- "email": "greg.1.anderson@greenknowe.org"
1187
- }
1188
- ],
1189
- "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
1190
- "support": {
1191
- "issues": "https://github.com/consolidation/log/issues",
1192
- "source": "https://github.com/consolidation/log/tree/2.0.2"
1193
- },
1194
- "time": "2020-12-10T16:26:23+00:00"
1195
- },
1196
- {
1197
- "name": "consolidation/output-formatters",
1198
- "version": "4.1.2",
1199
- "source": {
1200
- "type": "git",
1201
- "url": "https://github.com/consolidation/output-formatters.git",
1202
- "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9"
1203
- },
1204
- "dist": {
1205
- "type": "zip",
1206
- "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5821e6ae076bf690058a4de6c94dce97398a69c9",
1207
- "reference": "5821e6ae076bf690058a4de6c94dce97398a69c9",
1208
- "shasum": ""
1209
- },
1210
- "require": {
1211
- "dflydev/dot-access-data": "^1.1.0",
1212
- "php": ">=7.1.3",
1213
- "symfony/console": "^4|^5",
1214
- "symfony/finder": "^4|^5"
1215
- },
1216
- "require-dev": {
1217
- "php-coveralls/php-coveralls": "^2.4.2",
1218
- "phpunit/phpunit": ">=7",
1219
- "squizlabs/php_codesniffer": "^3",
1220
- "symfony/var-dumper": "^4",
1221
- "symfony/yaml": "^4",
1222
- "yoast/phpunit-polyfills": "^0.2.0"
1223
- },
1224
- "suggest": {
1225
- "symfony/var-dumper": "For using the var_dump formatter"
1226
- },
1227
- "type": "library",
1228
- "extra": {
1229
- "branch-alias": {
1230
- "dev-main": "4.x-dev"
1231
- }
1232
- },
1233
- "autoload": {
1234
- "psr-4": {
1235
- "Consolidation\\OutputFormatters\\": "src"
1236
- }
1237
- },
1238
- "notification-url": "https://packagist.org/downloads/",
1239
- "license": [
1240
- "MIT"
1241
- ],
1242
- "authors": [
1243
- {
1244
- "name": "Greg Anderson",
1245
- "email": "greg.1.anderson@greenknowe.org"
1246
- }
1247
- ],
1248
- "description": "Format text by applying transformations provided by plug-in formatters.",
1249
- "support": {
1250
- "issues": "https://github.com/consolidation/output-formatters/issues",
1251
- "source": "https://github.com/consolidation/output-formatters/tree/4.1.2"
1252
- },
1253
- "time": "2020-12-12T19:04:59+00:00"
1254
- },
1255
- {
1256
- "name": "consolidation/robo",
1257
- "version": "3.0.6",
1258
- "source": {
1259
- "type": "git",
1260
- "url": "https://github.com/consolidation/Robo.git",
1261
- "reference": "36dce2965a67abe5cf91f2bc36d2582a64a11258"
1262
- },
1263
- "dist": {
1264
- "type": "zip",
1265
- "url": "https://api.github.com/repos/consolidation/Robo/zipball/36dce2965a67abe5cf91f2bc36d2582a64a11258",
1266
- "reference": "36dce2965a67abe5cf91f2bc36d2582a64a11258",
1267
- "shasum": ""
1268
- },
1269
- "require": {
1270
- "consolidation/annotated-command": "^4.3",
1271
- "consolidation/config": "^1.2.1|^2.0.1",
1272
- "consolidation/log": "^1.1.1|^2.0.2",
1273
- "consolidation/output-formatters": "^4.1.2",
1274
- "consolidation/self-update": "^2.0",
1275
- "league/container": "^3.3.1",
1276
- "php": ">=7.1.3",
1277
- "symfony/console": "^4.4.19 || ^5",
1278
- "symfony/event-dispatcher": "^4.4.19 || ^5",
1279
- "symfony/filesystem": "^4.4.9 || ^5",
1280
- "symfony/finder": "^4.4.9 || ^5",
1281
- "symfony/process": "^4.4.9 || ^5",
1282
- "symfony/yaml": "^4.4 || ^5"
1283
- },
1284
- "conflict": {
1285
- "codegyre/robo": "*"
1286
- },
1287
- "require-dev": {
1288
- "natxet/cssmin": "3.0.4",
1289
- "patchwork/jsqueeze": "^2",
1290
- "pear/archive_tar": "^1.4.4",
1291
- "phpunit/phpunit": "^7.5.20 | ^8",
1292
- "squizlabs/php_codesniffer": "^3.6",
1293
- "yoast/phpunit-polyfills": "^0.2.0"
1294
- },
1295
- "suggest": {
1296
- "natxet/cssmin": "For minifying CSS files in taskMinify",
1297
- "patchwork/jsqueeze": "For minifying JS files in taskMinify",
1298
- "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
1299
- "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
1300
- },
1301
- "bin": [
1302
- "robo"
1303
- ],
1304
- "type": "library",
1305
- "extra": {
1306
- "scenarios": {
1307
- "symfony4": {
1308
- "require": {
1309
- "symfony/console": "^4.4.11",
1310
- "symfony/event-dispatcher": "^4.4.11",
1311
- "symfony/filesystem": "^4.4.11",
1312
- "symfony/finder": "^4.4.11",
1313
- "symfony/process": "^4.4.11",
1314
- "phpunit/phpunit": "^6",
1315
- "nikic/php-parser": "^2"
1316
- },
1317
- "remove": [
1318
- "codeception/phpunit-wrapper"
1319
- ],
1320
- "config": {
1321
- "platform": {
1322
- "php": "7.1.3"
1323
- }
1324
- }
1325
- }
1326
- },
1327
- "branch-alias": {
1328
- "dev-master": "2.x-dev",
1329
- "dev-main": "2.x-dev"
1330
- }
1331
- },
1332
- "autoload": {
1333
- "psr-4": {
1334
- "Robo\\": "src"
1335
- }
1336
- },
1337
- "notification-url": "https://packagist.org/downloads/",
1338
- "license": [
1339
- "MIT"
1340
- ],
1341
- "authors": [
1342
- {
1343
- "name": "Davert",
1344
- "email": "davert.php@resend.cc"
1345
- }
1346
- ],
1347
- "description": "Modern task runner",
1348
- "support": {
1349
- "issues": "https://github.com/consolidation/Robo/issues",
1350
- "source": "https://github.com/consolidation/Robo/tree/3.0.6"
1351
- },
1352
- "time": "2021-10-05T23:56:45+00:00"
1353
- },
1354
- {
1355
- "name": "consolidation/self-update",
1356
- "version": "2.0.0",
1357
- "source": {
1358
- "type": "git",
1359
- "url": "https://github.com/consolidation/self-update.git",
1360
- "reference": "7d6877f8006c51069e1469a9c57b1435640f74b7"
1361
- },
1362
- "dist": {
1363
- "type": "zip",
1364
- "url": "https://api.github.com/repos/consolidation/self-update/zipball/7d6877f8006c51069e1469a9c57b1435640f74b7",
1365
- "reference": "7d6877f8006c51069e1469a9c57b1435640f74b7",
1366
- "shasum": ""
1367
- },
1368
- "require": {
1369
- "composer/semver": "^3.2",
1370
- "php": ">=5.5.0",
1371
- "symfony/console": "^2.8|^3|^4|^5",
1372
- "symfony/filesystem": "^2.5|^3|^4|^5"
1373
- },
1374
- "bin": [
1375
- "scripts/release"
1376
- ],
1377
- "type": "library",
1378
- "extra": {
1379
- "branch-alias": {
1380
- "dev-main": "2.x-dev"
1381
- }
1382
- },
1383
- "autoload": {
1384
- "psr-4": {
1385
- "SelfUpdate\\": "src"
1386
- }
1387
- },
1388
- "notification-url": "https://packagist.org/downloads/",
1389
- "license": [
1390
- "MIT"
1391
- ],
1392
- "authors": [
1393
- {
1394
- "name": "Alexander Menk",
1395
- "email": "menk@mestrona.net"
1396
- },
1397
- {
1398
- "name": "Greg Anderson",
1399
- "email": "greg.1.anderson@greenknowe.org"
1400
- }
1401
- ],
1402
- "description": "Provides a self:update command for Symfony Console applications.",
1403
- "support": {
1404
- "issues": "https://github.com/consolidation/self-update/issues",
1405
- "source": "https://github.com/consolidation/self-update/tree/2.0.0"
1406
- },
1407
- "time": "2021-10-05T23:29:47+00:00"
1408
- },
1409
- {
1410
- "name": "dflydev/dot-access-data",
1411
- "version": "v1.1.0",
1412
- "source": {
1413
- "type": "git",
1414
- "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
1415
- "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a"
1416
- },
1417
- "dist": {
1418
- "type": "zip",
1419
- "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/3fbd874921ab2c041e899d044585a2ab9795df8a",
1420
- "reference": "3fbd874921ab2c041e899d044585a2ab9795df8a",
1421
- "shasum": ""
1422
- },
1423
- "require": {
1424
- "php": ">=5.3.2"
1425
- },
1426
- "type": "library",
1427
- "extra": {
1428
- "branch-alias": {
1429
- "dev-master": "1.0-dev"
1430
- }
1431
- },
1432
- "autoload": {
1433
- "psr-0": {
1434
- "Dflydev\\DotAccessData": "src"
1435
- }
1436
- },
1437
- "notification-url": "https://packagist.org/downloads/",
1438
- "license": [
1439
- "MIT"
1440
- ],
1441
- "authors": [
1442
- {
1443
- "name": "Dragonfly Development Inc.",
1444
- "email": "info@dflydev.com",
1445
- "homepage": "http://dflydev.com"
1446
- },
1447
- {
1448
- "name": "Beau Simensen",
1449
- "email": "beau@dflydev.com",
1450
- "homepage": "http://beausimensen.com"
1451
- },
1452
- {
1453
- "name": "Carlos Frutos",
1454
- "email": "carlos@kiwing.it",
1455
- "homepage": "https://github.com/cfrutos"
1456
- }
1457
- ],
1458
- "description": "Given a deep data structure, access data by dot notation.",
1459
- "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
1460
- "keywords": [
1461
- "access",
1462
- "data",
1463
- "dot",
1464
- "notation"
1465
- ],
1466
- "support": {
1467
- "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
1468
- "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/master"
1469
- },
1470
- "time": "2017-01-20T21:14:22+00:00"
1471
- },
1472
- {
1473
- "name": "dg/mysql-dump",
1474
- "version": "v1.5.1",
1475
- "source": {
1476
- "type": "git",
1477
- "url": "https://github.com/dg/MySQL-dump.git",
1478
- "reference": "e0e287b715b43293773a8b0edf8514f606e01780"
1479
- },
1480
- "dist": {
1481
- "type": "zip",
1482
- "url": "https://api.github.com/repos/dg/MySQL-dump/zipball/e0e287b715b43293773a8b0edf8514f606e01780",
1483
- "reference": "e0e287b715b43293773a8b0edf8514f606e01780",
1484
- "shasum": ""
1485
- },
1486
- "require": {
1487
- "php": ">=5.6"
1488
- },
1489
- "type": "library",
1490
- "autoload": {
1491
- "classmap": [
1492
- "src/"
1493
- ]
1494
- },
1495
- "notification-url": "https://packagist.org/downloads/",
1496
- "license": [
1497
- "BSD-3-Clause"
1498
- ],
1499
- "authors": [
1500
- {
1501
- "name": "David Grudl",
1502
- "homepage": "http://davidgrudl.com"
1503
- }
1504
- ],
1505
- "description": "MySQL database dump.",
1506
- "homepage": "https://github.com/dg/MySQL-dump",
1507
- "keywords": [
1508
- "mysql"
1509
- ],
1510
- "support": {
1511
- "source": "https://github.com/dg/MySQL-dump/tree/master"
1512
- },
1513
- "time": "2019-09-10T21:36:25+00:00"
1514
- },
1515
- {
1516
- "name": "doctrine/inflector",
1517
- "version": "2.0.4",
1518
- "source": {
1519
- "type": "git",
1520
- "url": "https://github.com/doctrine/inflector.git",
1521
- "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89"
1522
- },
1523
- "dist": {
1524
- "type": "zip",
1525
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
1526
- "reference": "8b7ff3e4b7de6b2c84da85637b59fd2880ecaa89",
1527
- "shasum": ""
1528
- },
1529
- "require": {
1530
- "php": "^7.2 || ^8.0"
1531
- },
1532
- "require-dev": {
1533
- "doctrine/coding-standard": "^8.2",
1534
- "phpstan/phpstan": "^0.12",
1535
- "phpstan/phpstan-phpunit": "^0.12",
1536
- "phpstan/phpstan-strict-rules": "^0.12",
1537
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
1538
- "vimeo/psalm": "^4.10"
1539
- },
1540
- "type": "library",
1541
- "autoload": {
1542
- "psr-4": {
1543
- "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
1544
- }
1545
- },
1546
- "notification-url": "https://packagist.org/downloads/",
1547
- "license": [
1548
- "MIT"
1549
- ],
1550
- "authors": [
1551
- {
1552
- "name": "Guilherme Blanco",
1553
- "email": "guilhermeblanco@gmail.com"
1554
- },
1555
- {
1556
- "name": "Roman Borschel",
1557
- "email": "roman@code-factory.org"
1558
- },
1559
- {
1560
- "name": "Benjamin Eberlei",
1561
- "email": "kontakt@beberlei.de"
1562
- },
1563
- {
1564
- "name": "Jonathan Wage",
1565
- "email": "jonwage@gmail.com"
1566
- },
1567
- {
1568
- "name": "Johannes Schmitt",
1569
- "email": "schmittjoh@gmail.com"
1570
- }
1571
- ],
1572
- "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
1573
- "homepage": "https://www.doctrine-project.org/projects/inflector.html",
1574
- "keywords": [
1575
- "inflection",
1576
- "inflector",
1577
- "lowercase",
1578
- "manipulation",
1579
- "php",
1580
- "plural",
1581
- "singular",
1582
- "strings",
1583
- "uppercase",
1584
- "words"
1585
- ],
1586
- "support": {
1587
- "issues": "https://github.com/doctrine/inflector/issues",
1588
- "source": "https://github.com/doctrine/inflector/tree/2.0.4"
1589
- },
1590
- "funding": [
1591
- {
1592
- "url": "https://www.doctrine-project.org/sponsorship.html",
1593
- "type": "custom"
1594
- },
1595
- {
1596
- "url": "https://www.patreon.com/phpdoctrine",
1597
- "type": "patreon"
1598
- },
1599
- {
1600
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
1601
- "type": "tidelift"
1602
- }
1603
- ],
1604
- "time": "2021-10-22T20:16:43+00:00"
1605
- },
1606
- {
1607
- "name": "doctrine/instantiator",
1608
- "version": "1.4.0",
1609
- "source": {
1610
- "type": "git",
1611
- "url": "https://github.com/doctrine/instantiator.git",
1612
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
1613
- },
1614
- "dist": {
1615
- "type": "zip",
1616
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
1617
- "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
1618
- "shasum": ""
1619
- },
1620
- "require": {
1621
- "php": "^7.1 || ^8.0"
1622
- },
1623
- "require-dev": {
1624
- "doctrine/coding-standard": "^8.0",
1625
- "ext-pdo": "*",
1626
- "ext-phar": "*",
1627
- "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
1628
- "phpstan/phpstan": "^0.12",
1629
- "phpstan/phpstan-phpunit": "^0.12",
1630
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
1631
- },
1632
- "type": "library",
1633
- "autoload": {
1634
- "psr-4": {
1635
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
1636
- }
1637
- },
1638
- "notification-url": "https://packagist.org/downloads/",
1639
- "license": [
1640
- "MIT"
1641
- ],
1642
- "authors": [
1643
- {
1644
- "name": "Marco Pivetta",
1645
- "email": "ocramius@gmail.com",
1646
- "homepage": "https://ocramius.github.io/"
1647
- }
1648
- ],
1649
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
1650
- "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
1651
- "keywords": [
1652
- "constructor",
1653
- "instantiate"
1654
- ],
1655
- "support": {
1656
- "issues": "https://github.com/doctrine/instantiator/issues",
1657
- "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
1658
- },
1659
- "funding": [
1660
- {
1661
- "url": "https://www.doctrine-project.org/sponsorship.html",
1662
- "type": "custom"
1663
- },
1664
- {
1665
- "url": "https://www.patreon.com/phpdoctrine",
1666
- "type": "patreon"
1667
- },
1668
- {
1669
- "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
1670
- "type": "tidelift"
1671
- }
1672
- ],
1673
- "time": "2020-11-10T18:47:58+00:00"
1674
- },
1675
- {
1676
- "name": "gettext/gettext",
1677
- "version": "v4.8.6",
1678
- "source": {
1679
- "type": "git",
1680
- "url": "https://github.com/php-gettext/Gettext.git",
1681
- "reference": "bbeb8f4d3077663739aecb4551b22e720c0e9efe"
1682
- },
1683
- "dist": {
1684
- "type": "zip",
1685
- "url": "https://api.github.com/repos/php-gettext/Gettext/zipball/bbeb8f4d3077663739aecb4551b22e720c0e9efe",
1686
- "reference": "bbeb8f4d3077663739aecb4551b22e720c0e9efe",
1687
- "shasum": ""
1688
- },
1689
- "require": {
1690
- "gettext/languages": "^2.3",
1691
- "php": ">=5.4.0"
1692
- },
1693
- "require-dev": {
1694
- "illuminate/view": "^5.0.x-dev",
1695
- "phpunit/phpunit": "^4.8|^5.7|^6.5",
1696
- "squizlabs/php_codesniffer": "^3.0",
1697
- "symfony/yaml": "~2",
1698
- "twig/extensions": "*",
1699
- "twig/twig": "^1.31|^2.0"
1700
- },
1701
- "suggest": {
1702
- "illuminate/view": "Is necessary if you want to use the Blade extractor",
1703
- "symfony/yaml": "Is necessary if you want to use the Yaml extractor/generator",
1704
- "twig/extensions": "Is necessary if you want to use the Twig extractor",
1705
- "twig/twig": "Is necessary if you want to use the Twig extractor"
1706
- },
1707
- "type": "library",
1708
- "autoload": {
1709
- "psr-4": {
1710
- "Gettext\\": "src"
1711
- }
1712
- },
1713
- "notification-url": "https://packagist.org/downloads/",
1714
- "license": [
1715
- "MIT"
1716
- ],
1717
- "authors": [
1718
- {
1719
- "name": "Oscar Otero",
1720
- "email": "oom@oscarotero.com",
1721
- "homepage": "http://oscarotero.com",
1722
- "role": "Developer"
1723
- }
1724
- ],
1725
- "description": "PHP gettext manager",
1726
- "homepage": "https://github.com/oscarotero/Gettext",
1727
- "keywords": [
1728
- "JS",
1729
- "gettext",
1730
- "i18n",
1731
- "mo",
1732
- "po",
1733
- "translation"
1734
- ],
1735
- "support": {
1736
- "email": "oom@oscarotero.com",
1737
- "issues": "https://github.com/oscarotero/Gettext/issues",
1738
- "source": "https://github.com/php-gettext/Gettext/tree/v4.8.6"
1739
- },
1740
- "funding": [
1741
- {
1742
- "url": "https://paypal.me/oscarotero",
1743
- "type": "custom"
1744
- },
1745
- {
1746
- "url": "https://github.com/oscarotero",
1747
- "type": "github"
1748
- },
1749
- {
1750
- "url": "https://www.patreon.com/misteroom",
1751
- "type": "patreon"
1752
- }
1753
- ],
1754
- "time": "2021-10-19T10:44:53+00:00"
1755
- },
1756
- {
1757
- "name": "gettext/languages",
1758
- "version": "2.9.0",
1759
- "source": {
1760
- "type": "git",
1761
- "url": "https://github.com/php-gettext/Languages.git",
1762
- "reference": "ed56dd2c7f4024cc953ed180d25f02f2640e3ffa"
1763
- },
1764
- "dist": {
1765
- "type": "zip",
1766
- "url": "https://api.github.com/repos/php-gettext/Languages/zipball/ed56dd2c7f4024cc953ed180d25f02f2640e3ffa",
1767
- "reference": "ed56dd2c7f4024cc953ed180d25f02f2640e3ffa",
1768
- "shasum": ""
1769
- },
1770
- "require": {
1771
- "php": ">=5.3"
1772
- },
1773
- "require-dev": {
1774
- "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5 || ^8.4"
1775
- },
1776
- "bin": [
1777
- "bin/export-plural-rules"
1778
- ],
1779
- "type": "library",
1780
- "autoload": {
1781
- "psr-4": {
1782
- "Gettext\\Languages\\": "src/"
1783
- }
1784
- },
1785
- "notification-url": "https://packagist.org/downloads/",
1786
- "license": [
1787
- "MIT"
1788
- ],
1789
- "authors": [
1790
- {
1791
- "name": "Michele Locati",
1792
- "email": "mlocati@gmail.com",
1793
- "role": "Developer"
1794
- }
1795
- ],
1796
- "description": "gettext languages with plural rules",
1797
- "homepage": "https://github.com/php-gettext/Languages",
1798
- "keywords": [
1799
- "cldr",
1800
- "i18n",
1801
- "internationalization",
1802
- "l10n",
1803
- "language",
1804
- "languages",
1805
- "localization",
1806
- "php",
1807
- "plural",
1808
- "plural rules",
1809
- "plurals",
1810
- "translate",
1811
- "translations",
1812
- "unicode"
1813
- ],
1814
- "support": {
1815
- "issues": "https://github.com/php-gettext/Languages/issues",
1816
- "source": "https://github.com/php-gettext/Languages/tree/2.9.0"
1817
- },
1818
- "funding": [
1819
- {
1820
- "url": "https://paypal.me/mlocati",
1821
- "type": "custom"
1822
- },
1823
- {
1824
- "url": "https://github.com/mlocati",
1825
- "type": "github"
1826
- }
1827
- ],
1828
- "time": "2021-11-11T17:30:39+00:00"
1829
- },
1830
- {
1831
- "name": "grasmash/expander",
1832
- "version": "1.0.0",
1833
- "source": {
1834
- "type": "git",
1835
- "url": "https://github.com/grasmash/expander.git",
1836
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f"
1837
- },
1838
- "dist": {
1839
- "type": "zip",
1840
- "url": "https://api.github.com/repos/grasmash/expander/zipball/95d6037344a4be1dd5f8e0b0b2571a28c397578f",
1841
- "reference": "95d6037344a4be1dd5f8e0b0b2571a28c397578f",
1842
- "shasum": ""
1843
- },
1844
- "require": {
1845
- "dflydev/dot-access-data": "^1.1.0",
1846
- "php": ">=5.4"
1847
- },
1848
- "require-dev": {
1849
- "greg-1-anderson/composer-test-scenarios": "^1",
1850
- "phpunit/phpunit": "^4|^5.5.4",
1851
- "satooshi/php-coveralls": "^1.0.2|dev-master",
1852
- "squizlabs/php_codesniffer": "^2.7"
1853
- },
1854
- "type": "library",
1855
- "extra": {
1856
- "branch-alias": {
1857
- "dev-master": "1.x-dev"
1858
- }
1859
- },
1860
- "autoload": {
1861
- "psr-4": {
1862
- "Grasmash\\Expander\\": "src/"
1863
- }
1864
- },
1865
- "notification-url": "https://packagist.org/downloads/",
1866
- "license": [
1867
- "MIT"
1868
- ],
1869
- "authors": [
1870
- {
1871
- "name": "Matthew Grasmick"
1872
- }
1873
- ],
1874
- "description": "Expands internal property references in PHP arrays file.",
1875
- "support": {
1876
- "issues": "https://github.com/grasmash/expander/issues",
1877
- "source": "https://github.com/grasmash/expander/tree/master"
1878
- },
1879
- "time": "2017-12-21T22:14:55+00:00"
1880
- },
1881
- {
1882
- "name": "guzzlehttp/guzzle",
1883
- "version": "7.4.0",
1884
- "source": {
1885
- "type": "git",
1886
- "url": "https://github.com/guzzle/guzzle.git",
1887
- "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94"
1888
- },
1889
- "dist": {
1890
- "type": "zip",
1891
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/868b3571a039f0ebc11ac8f344f4080babe2cb94",
1892
- "reference": "868b3571a039f0ebc11ac8f344f4080babe2cb94",
1893
- "shasum": ""
1894
- },
1895
- "require": {
1896
- "ext-json": "*",
1897
- "guzzlehttp/promises": "^1.5",
1898
- "guzzlehttp/psr7": "^1.8.3 || ^2.1",
1899
- "php": "^7.2.5 || ^8.0",
1900
- "psr/http-client": "^1.0",
1901
- "symfony/deprecation-contracts": "^2.2"
1902
- },
1903
- "provide": {
1904
- "psr/http-client-implementation": "1.0"
1905
- },
1906
- "require-dev": {
1907
- "bamarni/composer-bin-plugin": "^1.4.1",
1908
- "ext-curl": "*",
1909
- "php-http/client-integration-tests": "^3.0",
1910
- "phpunit/phpunit": "^8.5.5 || ^9.3.5",
1911
- "psr/log": "^1.1 || ^2.0 || ^3.0"
1912
- },
1913
- "suggest": {
1914
- "ext-curl": "Required for CURL handler support",
1915
- "ext-intl": "Required for Internationalized Domain Name (IDN) support",
1916
- "psr/log": "Required for using the Log middleware"
1917
- },
1918
- "type": "library",
1919
- "extra": {
1920
- "branch-alias": {
1921
- "dev-master": "7.4-dev"
1922
- }
1923
- },
1924
- "autoload": {
1925
- "psr-4": {
1926
- "GuzzleHttp\\": "src/"
1927
- },
1928
- "files": [
1929
- "src/functions_include.php"
1930
- ]
1931
- },
1932
- "notification-url": "https://packagist.org/downloads/",
1933
- "license": [
1934
- "MIT"
1935
- ],
1936
- "authors": [
1937
- {
1938
- "name": "Graham Campbell",
1939
- "email": "hello@gjcampbell.co.uk",
1940
- "homepage": "https://github.com/GrahamCampbell"
1941
- },
1942
- {
1943
- "name": "Michael Dowling",
1944
- "email": "mtdowling@gmail.com",
1945
- "homepage": "https://github.com/mtdowling"
1946
- },
1947
- {
1948
- "name": "Jeremy Lindblom",
1949
- "email": "jeremeamia@gmail.com",
1950
- "homepage": "https://github.com/jeremeamia"
1951
- },
1952
- {
1953
- "name": "George Mponos",
1954
- "email": "gmponos@gmail.com",
1955
- "homepage": "https://github.com/gmponos"
1956
- },
1957
- {
1958
- "name": "Tobias Nyholm",
1959
- "email": "tobias.nyholm@gmail.com",
1960
- "homepage": "https://github.com/Nyholm"
1961
- },
1962
- {
1963
- "name": "Márk Sági-Kazár",
1964
- "email": "mark.sagikazar@gmail.com",
1965
- "homepage": "https://github.com/sagikazarmark"
1966
- },
1967
- {
1968
- "name": "Tobias Schultze",
1969
- "email": "webmaster@tubo-world.de",
1970
- "homepage": "https://github.com/Tobion"
1971
- }
1972
- ],
1973
- "description": "Guzzle is a PHP HTTP client library",
1974
- "keywords": [
1975
- "client",
1976
- "curl",
1977
- "framework",
1978
- "http",
1979
- "http client",
1980
- "psr-18",
1981
- "psr-7",
1982
- "rest",
1983
- "web service"
1984
- ],
1985
- "support": {
1986
- "issues": "https://github.com/guzzle/guzzle/issues",
1987
- "source": "https://github.com/guzzle/guzzle/tree/7.4.0"
1988
- },
1989
- "funding": [
1990
- {
1991
- "url": "https://github.com/GrahamCampbell",
1992
- "type": "github"
1993
- },
1994
- {
1995
- "url": "https://github.com/Nyholm",
1996
- "type": "github"
1997
- },
1998
- {
1999
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
2000
- "type": "tidelift"
2001
- }
2002
- ],
2003
- "time": "2021-10-18T09:52:00+00:00"
2004
- },
2005
- {
2006
- "name": "guzzlehttp/promises",
2007
- "version": "1.5.1",
2008
- "source": {
2009
- "type": "git",
2010
- "url": "https://github.com/guzzle/promises.git",
2011
- "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da"
2012
- },
2013
- "dist": {
2014
- "type": "zip",
2015
- "url": "https://api.github.com/repos/guzzle/promises/zipball/fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
2016
- "reference": "fe752aedc9fd8fcca3fe7ad05d419d32998a06da",
2017
- "shasum": ""
2018
- },
2019
- "require": {
2020
- "php": ">=5.5"
2021
- },
2022
- "require-dev": {
2023
- "symfony/phpunit-bridge": "^4.4 || ^5.1"
2024
- },
2025
- "type": "library",
2026
- "extra": {
2027
- "branch-alias": {
2028
- "dev-master": "1.5-dev"
2029
- }
2030
- },
2031
- "autoload": {
2032
- "psr-4": {
2033
- "GuzzleHttp\\Promise\\": "src/"
2034
- },
2035
- "files": [
2036
- "src/functions_include.php"
2037
- ]
2038
- },
2039
- "notification-url": "https://packagist.org/downloads/",
2040
- "license": [
2041
- "MIT"
2042
- ],
2043
- "authors": [
2044
- {
2045
- "name": "Graham Campbell",
2046
- "email": "hello@gjcampbell.co.uk",
2047
- "homepage": "https://github.com/GrahamCampbell"
2048
- },
2049
- {
2050
- "name": "Michael Dowling",
2051
- "email": "mtdowling@gmail.com",
2052
- "homepage": "https://github.com/mtdowling"
2053
- },
2054
- {
2055
- "name": "Tobias Nyholm",
2056
- "email": "tobias.nyholm@gmail.com",
2057
- "homepage": "https://github.com/Nyholm"
2058
- },
2059
- {
2060
- "name": "Tobias Schultze",
2061
- "email": "webmaster@tubo-world.de",
2062
- "homepage": "https://github.com/Tobion"
2063
- }
2064
- ],
2065
- "description": "Guzzle promises library",
2066
- "keywords": [
2067
- "promise"
2068
- ],
2069
- "support": {
2070
- "issues": "https://github.com/guzzle/promises/issues",
2071
- "source": "https://github.com/guzzle/promises/tree/1.5.1"
2072
- },
2073
- "funding": [
2074
- {
2075
- "url": "https://github.com/GrahamCampbell",
2076
- "type": "github"
2077
- },
2078
- {
2079
- "url": "https://github.com/Nyholm",
2080
- "type": "github"
2081
- },
2082
- {
2083
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
2084
- "type": "tidelift"
2085
- }
2086
- ],
2087
- "time": "2021-10-22T20:56:57+00:00"
2088
- },
2089
- {
2090
- "name": "guzzlehttp/psr7",
2091
- "version": "2.1.0",
2092
- "source": {
2093
- "type": "git",
2094
- "url": "https://github.com/guzzle/psr7.git",
2095
- "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72"
2096
- },
2097
- "dist": {
2098
- "type": "zip",
2099
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
2100
- "reference": "089edd38f5b8abba6cb01567c2a8aaa47cec4c72",
2101
- "shasum": ""
2102
- },
2103
- "require": {
2104
- "php": "^7.2.5 || ^8.0",
2105
- "psr/http-factory": "^1.0",
2106
- "psr/http-message": "^1.0",
2107
- "ralouphie/getallheaders": "^3.0"
2108
- },
2109
- "provide": {
2110
- "psr/http-factory-implementation": "1.0",
2111
- "psr/http-message-implementation": "1.0"
2112
- },
2113
- "require-dev": {
2114
- "bamarni/composer-bin-plugin": "^1.4.1",
2115
- "http-interop/http-factory-tests": "^0.9",
2116
- "phpunit/phpunit": "^8.5.8 || ^9.3.10"
2117
- },
2118
- "suggest": {
2119
- "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
2120
- },
2121
- "type": "library",
2122
- "extra": {
2123
- "branch-alias": {
2124
- "dev-master": "2.1-dev"
2125
- }
2126
- },
2127
- "autoload": {
2128
- "psr-4": {
2129
- "GuzzleHttp\\Psr7\\": "src/"
2130
- }
2131
- },
2132
- "notification-url": "https://packagist.org/downloads/",
2133
- "license": [
2134
- "MIT"
2135
- ],
2136
- "authors": [
2137
- {
2138
- "name": "Graham Campbell",
2139
- "email": "hello@gjcampbell.co.uk",
2140
- "homepage": "https://github.com/GrahamCampbell"
2141
- },
2142
- {
2143
- "name": "Michael Dowling",
2144
- "email": "mtdowling@gmail.com",
2145
- "homepage": "https://github.com/mtdowling"
2146
- },
2147
- {
2148
- "name": "George Mponos",
2149
- "email": "gmponos@gmail.com",
2150
- "homepage": "https://github.com/gmponos"
2151
- },
2152
- {
2153
- "name": "Tobias Nyholm",
2154
- "email": "tobias.nyholm@gmail.com",
2155
- "homepage": "https://github.com/Nyholm"
2156
- },
2157
- {
2158
- "name": "Márk Sági-Kazár",
2159
- "email": "mark.sagikazar@gmail.com",
2160
- "homepage": "https://github.com/sagikazarmark"
2161
- },
2162
- {
2163
- "name": "Tobias Schultze",
2164
- "email": "webmaster@tubo-world.de",
2165
- "homepage": "https://github.com/Tobion"
2166
- },
2167
- {
2168
- "name": "Márk Sági-Kazár",
2169
- "email": "mark.sagikazar@gmail.com",
2170
- "homepage": "https://sagikazarmark.hu"
2171
- }
2172
- ],
2173
- "description": "PSR-7 message implementation that also provides common utility methods",
2174
- "keywords": [
2175
- "http",
2176
- "message",
2177
- "psr-7",
2178
- "request",
2179
- "response",
2180
- "stream",
2181
- "uri",
2182
- "url"
2183
- ],
2184
- "support": {
2185
- "issues": "https://github.com/guzzle/psr7/issues",
2186
- "source": "https://github.com/guzzle/psr7/tree/2.1.0"
2187
- },
2188
- "funding": [
2189
- {
2190
- "url": "https://github.com/GrahamCampbell",
2191
- "type": "github"
2192
- },
2193
- {
2194
- "url": "https://github.com/Nyholm",
2195
- "type": "github"
2196
- },
2197
- {
2198
- "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
2199
- "type": "tidelift"
2200
- }
2201
- ],
2202
- "time": "2021-10-06T17:43:30+00:00"
2203
- },
2204
- {
2205
- "name": "illuminate/collections",
2206
- "version": "v8.74.0",
2207
- "source": {
2208
- "type": "git",
2209
- "url": "https://github.com/illuminate/collections.git",
2210
- "reference": "f292b77824b42cd28decc7327e7c2e24c3806371"
2211
- },
2212
- "dist": {
2213
- "type": "zip",
2214
- "url": "https://api.github.com/repos/illuminate/collections/zipball/f292b77824b42cd28decc7327e7c2e24c3806371",
2215
- "reference": "f292b77824b42cd28decc7327e7c2e24c3806371",
2216
- "shasum": ""
2217
- },
2218
- "require": {
2219
- "illuminate/contracts": "^8.0",
2220
- "illuminate/macroable": "^8.0",
2221
- "php": "^7.3|^8.0"
2222
- },
2223
- "suggest": {
2224
- "symfony/var-dumper": "Required to use the dump method (^5.4)."
2225
- },
2226
- "type": "library",
2227
- "extra": {
2228
- "branch-alias": {
2229
- "dev-master": "8.x-dev"
2230
- }
2231
- },
2232
- "autoload": {
2233
- "psr-4": {
2234
- "Illuminate\\Support\\": ""
2235
- },
2236
- "files": [
2237
- "helpers.php"
2238
- ]
2239
- },
2240
- "notification-url": "https://packagist.org/downloads/",
2241
- "license": [
2242
- "MIT"
2243
- ],
2244
- "authors": [
2245
- {
2246
- "name": "Taylor Otwell",
2247
- "email": "taylor@laravel.com"
2248
- }
2249
- ],
2250
- "description": "The Illuminate Collections package.",
2251
- "homepage": "https://laravel.com",
2252
- "support": {
2253
- "issues": "https://github.com/laravel/framework/issues",
2254
- "source": "https://github.com/laravel/framework"
2255
- },
2256
- "time": "2021-11-30T14:29:03+00:00"
2257
- },
2258
- {
2259
- "name": "illuminate/contracts",
2260
- "version": "v8.74.0",
2261
- "source": {
2262
- "type": "git",
2263
- "url": "https://github.com/illuminate/contracts.git",
2264
- "reference": "b0886ec05a63b204634d64d0b39d5b78a7c06f81"
2265
- },
2266
- "dist": {
2267
- "type": "zip",
2268
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/b0886ec05a63b204634d64d0b39d5b78a7c06f81",
2269
- "reference": "b0886ec05a63b204634d64d0b39d5b78a7c06f81",
2270
- "shasum": ""
2271
- },
2272
- "require": {
2273
- "php": "^7.3|^8.0",
2274
- "psr/container": "^1.0",
2275
- "psr/simple-cache": "^1.0"
2276
- },
2277
- "type": "library",
2278
- "extra": {
2279
- "branch-alias": {
2280
- "dev-master": "8.x-dev"
2281
- }
2282
- },
2283
- "autoload": {
2284
- "psr-4": {
2285
- "Illuminate\\Contracts\\": ""
2286
- }
2287
- },
2288
- "notification-url": "https://packagist.org/downloads/",
2289
- "license": [
2290
- "MIT"
2291
- ],
2292
- "authors": [
2293
- {
2294
- "name": "Taylor Otwell",
2295
- "email": "taylor@laravel.com"
2296
- }
2297
- ],
2298
- "description": "The Illuminate Contracts package.",
2299
- "homepage": "https://laravel.com",
2300
- "support": {
2301
- "issues": "https://github.com/laravel/framework/issues",
2302
- "source": "https://github.com/laravel/framework"
2303
- },
2304
- "time": "2021-11-17T15:04:30+00:00"
2305
- },
2306
- {
2307
- "name": "illuminate/macroable",
2308
- "version": "v8.74.0",
2309
- "source": {
2310
- "type": "git",
2311
- "url": "https://github.com/illuminate/macroable.git",
2312
- "reference": "aed81891a6e046fdee72edd497f822190f61c162"
2313
- },
2314
- "dist": {
2315
- "type": "zip",
2316
- "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
2317
- "reference": "aed81891a6e046fdee72edd497f822190f61c162",
2318
- "shasum": ""
2319
- },
2320
- "require": {
2321
- "php": "^7.3|^8.0"
2322
- },
2323
- "type": "library",
2324
- "extra": {
2325
- "branch-alias": {
2326
- "dev-master": "8.x-dev"
2327
- }
2328
- },
2329
- "autoload": {
2330
- "psr-4": {
2331
- "Illuminate\\Support\\": ""
2332
- }
2333
- },
2334
- "notification-url": "https://packagist.org/downloads/",
2335
- "license": [
2336
- "MIT"
2337
- ],
2338
- "authors": [
2339
- {
2340
- "name": "Taylor Otwell",
2341
- "email": "taylor@laravel.com"
2342
- }
2343
- ],
2344
- "description": "The Illuminate Macroable package.",
2345
- "homepage": "https://laravel.com",
2346
- "support": {
2347
- "issues": "https://github.com/laravel/framework/issues",
2348
- "source": "https://github.com/laravel/framework"
2349
- },
2350
- "time": "2021-11-16T13:57:03+00:00"
2351
- },
2352
- {
2353
- "name": "illuminate/support",
2354
- "version": "v8.74.0",
2355
- "source": {
2356
- "type": "git",
2357
- "url": "https://github.com/illuminate/support.git",
2358
- "reference": "79bb5570274d6abbfaac736992c6b5f5cbcc17c1"
2359
- },
2360
- "dist": {
2361
- "type": "zip",
2362
- "url": "https://api.github.com/repos/illuminate/support/zipball/79bb5570274d6abbfaac736992c6b5f5cbcc17c1",
2363
- "reference": "79bb5570274d6abbfaac736992c6b5f5cbcc17c1",
2364
- "shasum": ""
2365
- },
2366
- "require": {
2367
- "doctrine/inflector": "^1.4|^2.0",
2368
- "ext-json": "*",
2369
- "ext-mbstring": "*",
2370
- "illuminate/collections": "^8.0",
2371
- "illuminate/contracts": "^8.0",
2372
- "illuminate/macroable": "^8.0",
2373
- "nesbot/carbon": "^2.53.1",
2374
- "php": "^7.3|^8.0",
2375
- "voku/portable-ascii": "^1.4.8"
2376
- },
2377
- "conflict": {
2378
- "tightenco/collect": "<5.5.33"
2379
- },
2380
- "suggest": {
2381
- "illuminate/filesystem": "Required to use the composer class (^8.0).",
2382
- "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^1.3|^2.0.2).",
2383
- "ramsey/uuid": "Required to use Str::uuid() (^4.2.2).",
2384
- "symfony/process": "Required to use the composer class (^5.4).",
2385
- "symfony/var-dumper": "Required to use the dd function (^5.4).",
2386
- "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.2)."
2387
- },
2388
- "type": "library",
2389
- "extra": {
2390
- "branch-alias": {
2391
- "dev-master": "8.x-dev"
2392
- }
2393
- },
2394
- "autoload": {
2395
- "psr-4": {
2396
- "Illuminate\\Support\\": ""
2397
- },
2398
- "files": [
2399
- "helpers.php"
2400
- ]
2401
- },
2402
- "notification-url": "https://packagist.org/downloads/",
2403
- "license": [
2404
- "MIT"
2405
- ],
2406
- "authors": [
2407
- {
2408
- "name": "Taylor Otwell",
2409
- "email": "taylor@laravel.com"
2410
- }
2411
- ],
2412
- "description": "The Illuminate Support package.",
2413
- "homepage": "https://laravel.com",
2414
- "support": {
2415
- "issues": "https://github.com/laravel/framework/issues",
2416
- "source": "https://github.com/laravel/framework"
2417
- },
2418
- "time": "2021-11-30T14:13:40+00:00"
2419
- },
2420
- {
2421
- "name": "justinrainbow/json-schema",
2422
- "version": "5.2.11",
2423
- "source": {
2424
- "type": "git",
2425
- "url": "https://github.com/justinrainbow/json-schema.git",
2426
- "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa"
2427
- },
2428
- "dist": {
2429
- "type": "zip",
2430
- "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ab6744b7296ded80f8cc4f9509abbff393399aa",
2431
- "reference": "2ab6744b7296ded80f8cc4f9509abbff393399aa",
2432
- "shasum": ""
2433
- },
2434
- "require": {
2435
- "php": ">=5.3.3"
2436
- },
2437
- "require-dev": {
2438
- "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
2439
- "json-schema/json-schema-test-suite": "1.2.0",
2440
- "phpunit/phpunit": "^4.8.35"
2441
- },
2442
- "bin": [
2443
- "bin/validate-json"
2444
- ],
2445
- "type": "library",
2446
- "extra": {
2447
- "branch-alias": {
2448
- "dev-master": "5.0.x-dev"
2449
- }
2450
- },
2451
- "autoload": {
2452
- "psr-4": {
2453
- "JsonSchema\\": "src/JsonSchema/"
2454
- }
2455
- },
2456
- "notification-url": "https://packagist.org/downloads/",
2457
- "license": [
2458
- "MIT"
2459
- ],
2460
- "authors": [
2461
- {
2462
- "name": "Bruno Prieto Reis",
2463
- "email": "bruno.p.reis@gmail.com"
2464
- },
2465
- {
2466
- "name": "Justin Rainbow",
2467
- "email": "justin.rainbow@gmail.com"
2468
- },
2469
- {
2470
- "name": "Igor Wiedler",
2471
- "email": "igor@wiedler.ch"
2472
- },
2473
- {
2474
- "name": "Robert Schönthal",
2475
- "email": "seroscho@googlemail.com"
2476
- }
2477
- ],
2478
- "description": "A library to validate a json schema.",
2479
- "homepage": "https://github.com/justinrainbow/json-schema",
2480
- "keywords": [
2481
- "json",
2482
- "schema"
2483
- ],
2484
- "support": {
2485
- "issues": "https://github.com/justinrainbow/json-schema/issues",
2486
- "source": "https://github.com/justinrainbow/json-schema/tree/5.2.11"
2487
- },
2488
- "time": "2021-07-22T09:24:00+00:00"
2489
- },
2490
- {
2491
- "name": "league/container",
2492
- "version": "3.4.1",
2493
- "source": {
2494
- "type": "git",
2495
- "url": "https://github.com/thephpleague/container.git",
2496
- "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd"
2497
- },
2498
- "dist": {
2499
- "type": "zip",
2500
- "url": "https://api.github.com/repos/thephpleague/container/zipball/84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
2501
- "reference": "84ecbc2dbecc31bd23faf759a0e329ee49abddbd",
2502
- "shasum": ""
2503
- },
2504
- "require": {
2505
- "php": "^7.0 || ^8.0",
2506
- "psr/container": "^1.0.0"
2507
- },
2508
- "provide": {
2509
- "psr/container-implementation": "^1.0"
2510
- },
2511
- "replace": {
2512
- "orno/di": "~2.0"
2513
- },
2514
- "require-dev": {
2515
- "phpunit/phpunit": "^6.0 || ^7.0",
2516
- "roave/security-advisories": "dev-latest",
2517
- "scrutinizer/ocular": "^1.8",
2518
- "squizlabs/php_codesniffer": "^3.5"
2519
- },
2520
- "type": "library",
2521
- "extra": {
2522
- "branch-alias": {
2523
- "dev-master": "3.x-dev",
2524
- "dev-3.x": "3.x-dev",
2525
- "dev-2.x": "2.x-dev",
2526
- "dev-1.x": "1.x-dev"
2527
- }
2528
- },
2529
- "autoload": {
2530
- "psr-4": {
2531
- "League\\Container\\": "src"
2532
- }
2533
- },
2534
- "notification-url": "https://packagist.org/downloads/",
2535
- "license": [
2536
- "MIT"
2537
- ],
2538
- "authors": [
2539
- {
2540
- "name": "Phil Bennett",
2541
- "email": "philipobenito@gmail.com",
2542
- "homepage": "http://www.philipobenito.com",
2543
- "role": "Developer"
2544
- }
2545
- ],
2546
- "description": "A fast and intuitive dependency injection container.",
2547
- "homepage": "https://github.com/thephpleague/container",
2548
- "keywords": [
2549
- "container",
2550
- "dependency",
2551
- "di",
2552
- "injection",
2553
- "league",
2554
- "provider",
2555
- "service"
2556
- ],
2557
- "support": {
2558
- "issues": "https://github.com/thephpleague/container/issues",
2559
- "source": "https://github.com/thephpleague/container/tree/3.4.1"
2560
- },
2561
- "funding": [
2562
- {
2563
- "url": "https://github.com/philipobenito",
2564
- "type": "github"
2565
- }
2566
- ],
2567
- "time": "2021-07-09T08:23:52+00:00"
2568
- },
2569
- {
2570
- "name": "lucatume/wp-browser",
2571
- "version": "3.0.14",
2572
- "source": {
2573
- "type": "git",
2574
- "url": "https://github.com/lucatume/wp-browser.git",
2575
- "reference": "1dae9e523bddd77c6d242c2033fd5616cdf6d375"
2576
- },
2577
- "dist": {
2578
- "type": "zip",
2579
- "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/1dae9e523bddd77c6d242c2033fd5616cdf6d375",
2580
- "reference": "1dae9e523bddd77c6d242c2033fd5616cdf6d375",
2581
- "shasum": ""
2582
- },
2583
- "require": {
2584
- "antecedent/patchwork": "^2.0",
2585
- "bordoni/phpass": "^0.3",
2586
- "codeception/codeception": "^2.5 || ^3.0 || ^4.0",
2587
- "dg/mysql-dump": "^1.3",
2588
- "ext-fileinfo": "*",
2589
- "ext-json": "*",
2590
- "ext-pdo": "*",
2591
- "mikehaertl/php-shellcommand": "^1.6",
2592
- "mikemclin/laravel-wp-password": "~2.0.0",
2593
- "php": ">=5.6.0",
2594
- "vria/nodiacritic": "^0.1.2",
2595
- "wp-cli/wp-cli": ">=2.0 <3.0.0",
2596
- "zordius/lightncandy": "^1.2"
2597
- },
2598
- "require-dev": {
2599
- "erusev/parsedown": "^1.7",
2600
- "gumlet/php-image-resize": "^1.6",
2601
- "lucatume/codeception-snapshot-assertions": "^0.2",
2602
- "mikey179/vfsstream": "^1.6",
2603
- "victorjonsson/markdowndocs": "dev-master",
2604
- "vlucas/phpdotenv": "^3.0",
2605
- "wp-cli/wp-cli-bundle": "*"
2606
- },
2607
- "suggest": {
2608
- "codeception/module-asserts": "Codeception 4.0 compatibility.",
2609
- "codeception/module-cli": "Codeception 4.0 compatibility; required by the WPCLI module.",
2610
- "codeception/module-db": "Codeception 4.0 compatibility; required by the WPDb module.",
2611
- "codeception/module-filesystem": "Codeception 4.0 compatibility; required by the WPFilesystem module.",
2612
- "codeception/module-phpbrowser": "Codeception 4.0 compatibility; required by the WPBrowser module.",
2613
- "codeception/module-webdriver": "Codeception 4.0 compatibility; required by the WPWebDriver module.",
2614
- "codeception/util-universalframework": "Codeception 4.0 compatibility; required by the WordPress framework module.",
2615
- "gumlet/php-image-resize": "To handle runtime image modification in the WPDb::haveAttachmentInDatabase method.",
2616
- "vlucas/phpdotenv:^4.0": "To manage more complex environment file based configuration of the suites."
2617
- },
2618
- "type": "library",
2619
- "extra": {
2620
- "_hash": "484f861f69198089cab0e642f27e5653"
2621
- },
2622
- "autoload": {
2623
- "psr-4": {
2624
- "Codeception\\": "src/Codeception",
2625
- "tad\\": "src/tad"
2626
- },
2627
- "files": [
2628
- "src/tad/WPBrowser/utils.php",
2629
- "src/tad/WPBrowser/wp-polyfills.php"
2630
- ]
2631
- },
2632
- "notification-url": "https://packagist.org/downloads/",
2633
- "license": [
2634
- "MIT"
2635
- ],
2636
- "authors": [
2637
- {
2638
- "name": "theAverageDev (Luca Tumedei)",
2639
- "email": "luca@theaveragedev.com",
2640
- "homepage": "http://theaveragedev.com",
2641
- "role": "Developer"
2642
- }
2643
- ],
2644
- "description": "WordPress extension of the PhpBrowser class.",
2645
- "homepage": "http://github.com/lucatume/wp-browser",
2646
- "keywords": [
2647
- "codeception",
2648
- "wordpress"
2649
- ],
2650
- "support": {
2651
- "issues": "https://github.com/lucatume/wp-browser/issues",
2652
- "source": "https://github.com/lucatume/wp-browser/tree/3.0.14"
2653
- },
2654
- "funding": [
2655
- {
2656
- "url": "https://github.com/lucatume",
2657
- "type": "github"
2658
- }
2659
- ],
2660
- "time": "2021-11-26T11:14:22+00:00"
2661
- },
2662
- {
2663
- "name": "mck89/peast",
2664
- "version": "v1.13.9",
2665
- "source": {
2666
- "type": "git",
2667
- "url": "https://github.com/mck89/peast.git",
2668
- "reference": "5329e997fb50e0b82ca8f6e4164f92941f689b47"
2669
- },
2670
- "dist": {
2671
- "type": "zip",
2672
- "url": "https://api.github.com/repos/mck89/peast/zipball/5329e997fb50e0b82ca8f6e4164f92941f689b47",
2673
- "reference": "5329e997fb50e0b82ca8f6e4164f92941f689b47",
2674
- "shasum": ""
2675
- },
2676
- "require": {
2677
- "php": ">=5.4.0"
2678
- },
2679
- "require-dev": {
2680
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
2681
- },
2682
- "type": "library",
2683
- "extra": {
2684
- "branch-alias": {
2685
- "dev-master": "1.13.9-dev"
2686
- }
2687
- },
2688
- "autoload": {
2689
- "psr-4": {
2690
- "Peast\\": "lib/Peast/",
2691
- "Peast\\test\\": "test/Peast/"
2692
- }
2693
- },
2694
- "notification-url": "https://packagist.org/downloads/",
2695
- "license": [
2696
- "BSD-3-Clause"
2697
- ],
2698
- "authors": [
2699
- {
2700
- "name": "Marco Marchiò",
2701
- "email": "marco.mm89@gmail.com"
2702
- }
2703
- ],
2704
- "description": "Peast is PHP library that generates AST for JavaScript code",
2705
- "support": {
2706
- "issues": "https://github.com/mck89/peast/issues",
2707
- "source": "https://github.com/mck89/peast/tree/v1.13.9"
2708
- },
2709
- "time": "2021-11-12T13:44:49+00:00"
2710
- },
2711
- {
2712
- "name": "mikehaertl/php-shellcommand",
2713
- "version": "1.6.4",
2714
- "source": {
2715
- "type": "git",
2716
- "url": "https://github.com/mikehaertl/php-shellcommand.git",
2717
- "reference": "3488d7803df1e8f1a343d3d0ca452d527ad8d5e5"
2718
- },
2719
- "dist": {
2720
- "type": "zip",
2721
- "url": "https://api.github.com/repos/mikehaertl/php-shellcommand/zipball/3488d7803df1e8f1a343d3d0ca452d527ad8d5e5",
2722
- "reference": "3488d7803df1e8f1a343d3d0ca452d527ad8d5e5",
2723
- "shasum": ""
2724
- },
2725
- "require": {
2726
- "php": ">= 5.3.0"
2727
- },
2728
- "require-dev": {
2729
- "phpunit/phpunit": ">4.0 <=9.4"
2730
- },
2731
- "type": "library",
2732
- "autoload": {
2733
- "psr-4": {
2734
- "mikehaertl\\shellcommand\\": "src/"
2735
- }
2736
- },
2737
- "notification-url": "https://packagist.org/downloads/",
2738
- "license": [
2739
- "MIT"
2740
- ],
2741
- "authors": [
2742
- {
2743
- "name": "Michael Härtl",
2744
- "email": "haertl.mike@gmail.com"
2745
- }
2746
- ],
2747
- "description": "An object oriented interface to shell commands",
2748
- "keywords": [
2749
- "shell"
2750
- ],
2751
- "support": {
2752
- "issues": "https://github.com/mikehaertl/php-shellcommand/issues",
2753
- "source": "https://github.com/mikehaertl/php-shellcommand/tree/1.6.4"
2754
- },
2755
- "time": "2021-03-17T06:54:33+00:00"
2756
- },
2757
- {
2758
- "name": "mikemclin/laravel-wp-password",
2759
- "version": "2.0.3",
2760
- "source": {
2761
- "type": "git",
2762
- "url": "https://github.com/mikemclin/laravel-wp-password.git",
2763
- "reference": "5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4"
2764
- },
2765
- "dist": {
2766
- "type": "zip",
2767
- "url": "https://api.github.com/repos/mikemclin/laravel-wp-password/zipball/5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4",
2768
- "reference": "5225c95f75aa0a5ad4040ec2074d1c8d7f10b5f4",
2769
- "shasum": ""
2770
- },
2771
- "require": {
2772
- "bordoni/phpass": "0.3.*",
2773
- "illuminate/support": ">=4.0.0",
2774
- "php": ">=5.3.0"
2775
- },
2776
- "replace": {
2777
- "mikemclin/laravel-wp-password": "self.version"
2778
- },
2779
- "require-dev": {
2780
- "mockery/mockery": "~0.9",
2781
- "phpunit/phpunit": "~4.0",
2782
- "satooshi/php-coveralls": "^2.2"
2783
- },
2784
- "type": "laravel-package",
2785
- "extra": {
2786
- "laravel": {
2787
- "providers": [
2788
- "MikeMcLin\\WpPassword\\WpPasswordProvider"
2789
- ],
2790
- "aliases": {
2791
- "WpPassword": "MikeMcLin\\WpPassword\\Facades\\WpPassword"
2792
- }
2793
- }
2794
- },
2795
- "autoload": {
2796
- "psr-4": {
2797
- "MikeMcLin\\WpPassword\\": "src/"
2798
- }
2799
- },
2800
- "notification-url": "https://packagist.org/downloads/",
2801
- "license": [
2802
- "MIT"
2803
- ],
2804
- "authors": [
2805
- {
2806
- "name": "Mike McLin",
2807
- "email": "mike@mikemclin.com",
2808
- "homepage": "http://mikemclin.net"
2809
- }
2810
- ],
2811
- "description": "Laravel package that checks and creates WordPress password hashes",
2812
- "homepage": "https://github.com/mikemclin/laravel-wp-password",
2813
- "keywords": [
2814
- "hashing",
2815
- "laravel",
2816
- "password",
2817
- "wordpress"
2818
- ],
2819
- "support": {
2820
- "issues": "https://github.com/mikemclin/laravel-wp-password/issues",
2821
- "source": "https://github.com/mikemclin/laravel-wp-password/tree/2.0.3"
2822
- },
2823
- "time": "2021-09-30T13:48:57+00:00"
2824
- },
2825
- {
2826
- "name": "mustache/mustache",
2827
- "version": "v2.13.0",
2828
- "source": {
2829
- "type": "git",
2830
- "url": "https://github.com/bobthecow/mustache.php.git",
2831
- "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4"
2832
- },
2833
- "dist": {
2834
- "type": "zip",
2835
- "url": "https://api.github.com/repos/bobthecow/mustache.php/zipball/e95c5a008c23d3151d59ea72484d4f72049ab7f4",
2836
- "reference": "e95c5a008c23d3151d59ea72484d4f72049ab7f4",
2837
- "shasum": ""
2838
- },
2839
- "require": {
2840
- "php": ">=5.2.4"
2841
- },
2842
- "require-dev": {
2843
- "friendsofphp/php-cs-fixer": "~1.11",
2844
- "phpunit/phpunit": "~3.7|~4.0|~5.0"
2845
- },
2846
- "type": "library",
2847
- "autoload": {
2848
- "psr-0": {
2849
- "Mustache": "src/"
2850
- }
2851
- },
2852
- "notification-url": "https://packagist.org/downloads/",
2853
- "license": [
2854
- "MIT"
2855
- ],
2856
- "authors": [
2857
- {
2858
- "name": "Justin Hileman",
2859
- "email": "justin@justinhileman.info",
2860
- "homepage": "http://justinhileman.com"
2861
- }
2862
- ],
2863
- "description": "A Mustache implementation in PHP.",
2864
- "homepage": "https://github.com/bobthecow/mustache.php",
2865
- "keywords": [
2866
- "mustache",
2867
- "templating"
2868
- ],
2869
- "support": {
2870
- "issues": "https://github.com/bobthecow/mustache.php/issues",
2871
- "source": "https://github.com/bobthecow/mustache.php/tree/master"
2872
- },
2873
- "time": "2019-11-23T21:40:31+00:00"
2874
- },
2875
- {
2876
- "name": "myclabs/deep-copy",
2877
- "version": "1.10.2",
2878
- "source": {
2879
- "type": "git",
2880
- "url": "https://github.com/myclabs/DeepCopy.git",
2881
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
2882
- },
2883
- "dist": {
2884
- "type": "zip",
2885
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
2886
- "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
2887
- "shasum": ""
2888
- },
2889
- "require": {
2890
- "php": "^7.1 || ^8.0"
2891
- },
2892
- "replace": {
2893
- "myclabs/deep-copy": "self.version"
2894
- },
2895
- "require-dev": {
2896
- "doctrine/collections": "^1.0",
2897
- "doctrine/common": "^2.6",
2898
- "phpunit/phpunit": "^7.1"
2899
- },
2900
- "type": "library",
2901
- "autoload": {
2902
- "psr-4": {
2903
- "DeepCopy\\": "src/DeepCopy/"
2904
- },
2905
- "files": [
2906
- "src/DeepCopy/deep_copy.php"
2907
- ]
2908
- },
2909
- "notification-url": "https://packagist.org/downloads/",
2910
- "license": [
2911
- "MIT"
2912
- ],
2913
- "description": "Create deep copies (clones) of your objects",
2914
- "keywords": [
2915
- "clone",
2916
- "copy",
2917
- "duplicate",
2918
- "object",
2919
- "object graph"
2920
- ],
2921
- "support": {
2922
- "issues": "https://github.com/myclabs/DeepCopy/issues",
2923
- "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
2924
- },
2925
- "funding": [
2926
- {
2927
- "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
2928
- "type": "tidelift"
2929
- }
2930
- ],
2931
- "time": "2020-11-13T09:40:50+00:00"
2932
- },
2933
- {
2934
- "name": "n98/junit-xml",
2935
- "version": "1.1.0",
2936
- "source": {
2937
- "type": "git",
2938
- "url": "https://github.com/cmuench/junit-xml.git",
2939
- "reference": "0017dd92ac8cb619f02e32f4cffd768cfe327c73"
2940
- },
2941
- "dist": {
2942
- "type": "zip",
2943
- "url": "https://api.github.com/repos/cmuench/junit-xml/zipball/0017dd92ac8cb619f02e32f4cffd768cfe327c73",
2944
- "reference": "0017dd92ac8cb619f02e32f4cffd768cfe327c73",
2945
- "shasum": ""
2946
- },
2947
- "require-dev": {
2948
- "phpunit/phpunit": "^9.5.0"
2949
- },
2950
- "type": "library",
2951
- "autoload": {
2952
- "psr-4": {
2953
- "N98\\JUnitXml\\": "src/N98/JUnitXml"
2954
- }
2955
- },
2956
- "notification-url": "https://packagist.org/downloads/",
2957
- "license": [
2958
- "MIT"
2959
- ],
2960
- "authors": [
2961
- {
2962
- "name": "Christian Münch",
2963
- "email": "c.muench@netz98.de"
2964
- }
2965
- ],
2966
- "description": "JUnit XML Document generation library",
2967
- "support": {
2968
- "issues": "https://github.com/cmuench/junit-xml/issues",
2969
- "source": "https://github.com/cmuench/junit-xml/tree/1.1.0"
2970
- },
2971
- "time": "2020-12-25T09:08:58+00:00"
2972
- },
2973
- {
2974
- "name": "nelexa/zip",
2975
- "version": "3.3.3",
2976
- "source": {
2977
- "type": "git",
2978
- "url": "https://github.com/Ne-Lexa/php-zip.git",
2979
- "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6"
2980
- },
2981
- "dist": {
2982
- "type": "zip",
2983
- "url": "https://api.github.com/repos/Ne-Lexa/php-zip/zipball/501b52f6fc393a599b44ff348a42740e1eaac7c6",
2984
- "reference": "501b52f6fc393a599b44ff348a42740e1eaac7c6",
2985
- "shasum": ""
2986
- },
2987
- "require": {
2988
- "ext-zlib": "*",
2989
- "paragonie/random_compat": "*",
2990
- "php": "^5.5.9 || ^7.0",
2991
- "psr/http-message": "^1.0",
2992
- "symfony/finder": "^3.0|^4.0|^5.0"
2993
- },
2994
- "require-dev": {
2995
- "ext-bz2": "*",
2996
- "ext-fileinfo": "*",
2997
- "ext-openssl": "*",
2998
- "ext-xml": "*",
2999
- "guzzlehttp/psr7": "^1.6",
3000
- "phpunit/phpunit": "^4.8|^5.7",
3001
- "symfony/var-dumper": "^3.0|^4.0|^5.0"
3002
- },
3003
- "suggest": {
3004
- "ext-bz2": "Needed to support BZIP2 compression",
3005
- "ext-fileinfo": "Needed to get mime-type file",
3006
- "ext-mcrypt": "Needed to support encrypt zip entries or use ext-openssl",
3007
- "ext-openssl": "Needed to support encrypt zip entries or use ext-mcrypt"
3008
- },
3009
- "type": "library",
3010
- "autoload": {
3011
- "psr-4": {
3012
- "PhpZip\\": "src/"
3013
- }
3014
- },
3015
- "notification-url": "https://packagist.org/downloads/",
3016
- "license": [
3017
- "MIT"
3018
- ],
3019
- "authors": [
3020
- {
3021
- "name": "Ne-Lexa",
3022
- "email": "alexey@nelexa.ru",
3023
- "role": "Developer"
3024
- }
3025
- ],
3026
- "description": "PhpZip is a php-library for extended work with ZIP-archives. Open, create, update, delete, extract and get info tool. Supports appending to existing ZIP files, WinZip AES encryption, Traditional PKWARE Encryption, ZipAlign tool, BZIP2 compression, external file attributes and ZIP64 extensions. Alternative ZipArchive. It does not require php-zip extension.",
3027
- "homepage": "https://github.com/Ne-Lexa/php-zip",
3028
- "keywords": [
3029
- "archive",
3030
- "extract",
3031
- "unzip",
3032
- "winzip",
3033
- "zip",
3034
- "zipalign",
3035
- "ziparchive"
3036
- ],
3037
- "support": {
3038
- "issues": "https://github.com/Ne-Lexa/php-zip/issues",
3039
- "source": "https://github.com/Ne-Lexa/php-zip/tree/3.3.3"
3040
- },
3041
- "time": "2020-07-11T21:01:42+00:00"
3042
- },
3043
- {
3044
- "name": "nesbot/carbon",
3045
- "version": "2.54.0",
3046
- "source": {
3047
- "type": "git",
3048
- "url": "https://github.com/briannesbitt/Carbon.git",
3049
- "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5"
3050
- },
3051
- "dist": {
3052
- "type": "zip",
3053
- "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/eed83939f1aed3eee517d03a33f5ec587ac529b5",
3054
- "reference": "eed83939f1aed3eee517d03a33f5ec587ac529b5",
3055
- "shasum": ""
3056
- },
3057
- "require": {
3058
- "ext-json": "*",
3059
- "php": "^7.1.8 || ^8.0",
3060
- "symfony/polyfill-mbstring": "^1.0",
3061
- "symfony/polyfill-php80": "^1.16",
3062
- "symfony/translation": "^3.4 || ^4.0 || ^5.0"
3063
- },
3064
- "require-dev": {
3065
- "doctrine/dbal": "^2.0 || ^3.0",
3066
- "doctrine/orm": "^2.7",
3067
- "friendsofphp/php-cs-fixer": "^3.0",
3068
- "kylekatarnls/multi-tester": "^2.0",
3069
- "phpmd/phpmd": "^2.9",
3070
- "phpstan/extension-installer": "^1.0",
3071
- "phpstan/phpstan": "^0.12.54",
3072
- "phpunit/phpunit": "^7.5.20 || ^8.5.14",
3073
- "squizlabs/php_codesniffer": "^3.4"
3074
- },
3075
- "bin": [
3076
- "bin/carbon"
3077
- ],
3078
- "type": "library",
3079
- "extra": {
3080
- "branch-alias": {
3081
- "dev-3.x": "3.x-dev",
3082
- "dev-master": "2.x-dev"
3083
- },
3084
- "laravel": {
3085
- "providers": [
3086
- "Carbon\\Laravel\\ServiceProvider"
3087
- ]
3088
- },
3089
- "phpstan": {
3090
- "includes": [
3091
- "extension.neon"
3092
- ]
3093
- }
3094
- },
3095
- "autoload": {
3096
- "psr-4": {
3097
- "Carbon\\": "src/Carbon/"
3098
- }
3099
- },
3100
- "notification-url": "https://packagist.org/downloads/",
3101
- "license": [
3102
- "MIT"
3103
- ],
3104
- "authors": [
3105
- {
3106
- "name": "Brian Nesbitt",
3107
- "email": "brian@nesbot.com",
3108
- "homepage": "https://markido.com"
3109
- },
3110
- {
3111
- "name": "kylekatarnls",
3112
- "homepage": "https://github.com/kylekatarnls"
3113
- }
3114
- ],
3115
- "description": "An API extension for DateTime that supports 281 different languages.",
3116
- "homepage": "https://carbon.nesbot.com",
3117
- "keywords": [
3118
- "date",
3119
- "datetime",
3120
- "time"
3121
- ],
3122
- "support": {
3123
- "issues": "https://github.com/briannesbitt/Carbon/issues",
3124
- "source": "https://github.com/briannesbitt/Carbon"
3125
- },
3126
- "funding": [
3127
- {
3128
- "url": "https://opencollective.com/Carbon",
3129
- "type": "open_collective"
3130
- },
3131
- {
3132
- "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
3133
- "type": "tidelift"
3134
- }
3135
- ],
3136
- "time": "2021-11-01T21:22:20+00:00"
3137
- },
3138
- {
3139
- "name": "overtrue/phplint",
3140
- "version": "2.4.1",
3141
- "source": {
3142
- "type": "git",
3143
- "url": "https://github.com/overtrue/phplint.git",
3144
- "reference": "59affacd0b09a1460e39acf2c64c963ddbf734cf"
3145
- },
3146
- "dist": {
3147
- "type": "zip",
3148
- "url": "https://api.github.com/repos/overtrue/phplint/zipball/59affacd0b09a1460e39acf2c64c963ddbf734cf",
3149
- "reference": "59affacd0b09a1460e39acf2c64c963ddbf734cf",
3150
- "shasum": ""
3151
- },
3152
- "require": {
3153
- "ext-json": "*",
3154
- "n98/junit-xml": "1.1.0",
3155
- "php": ">=5.5.9",
3156
- "symfony/console": "^3.2|^4.0|^5.0",
3157
- "symfony/finder": "^3.0|^4.0|^5.0",
3158
- "symfony/process": "^3.3|^4.0|^5.0",
3159
- "symfony/yaml": "^3.0|^4.0|^5.0"
3160
- },
3161
- "require-dev": {
3162
- "brainmaestro/composer-git-hooks": "^2.7",
3163
- "friendsofphp/php-cs-fixer": "^2.16",
3164
- "jakub-onderka/php-console-highlighter": "^0.3.2 || ^0.4"
3165
- },
3166
- "bin": [
3167
- "bin/phplint"
3168
- ],
3169
- "type": "library",
3170
- "extra": {
3171
- "hooks": {
3172
- "pre-commit": [
3173
- "composer fix-style"
3174
- ],
3175
- "pre-push": [
3176
- "composer check-style"
3177
- ]
3178
- }
3179
- },
3180
- "autoload": {
3181
- "psr-4": {
3182
- "Overtrue\\PHPLint\\": "src/"
3183
- }
3184
- },
3185
- "notification-url": "https://packagist.org/downloads/",
3186
- "license": [
3187
- "MIT"
3188
- ],
3189
- "authors": [
3190
- {
3191
- "name": "overtrue",
3192
- "email": "anzhengchao@gmail.com"
3193
- }
3194
- ],
3195
- "description": "`phplint` is a tool that can speed up linting of php files by running several lint processes at once.",
3196
- "keywords": [
3197
- "check",
3198
- "lint",
3199
- "phplint",
3200
- "syntax"
3201
- ],
3202
- "support": {
3203
- "issues": "https://github.com/overtrue/phplint/issues",
3204
- "source": "https://github.com/overtrue/phplint/tree/2.4.1"
3205
- },
3206
- "time": "2021-06-02T16:18:33+00:00"
3207
- },
3208
- {
3209
- "name": "paragonie/random_compat",
3210
- "version": "v9.99.100",
3211
- "source": {
3212
- "type": "git",
3213
- "url": "https://github.com/paragonie/random_compat.git",
3214
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
3215
- },
3216
- "dist": {
3217
- "type": "zip",
3218
- "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
3219
- "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
3220
- "shasum": ""
3221
- },
3222
- "require": {
3223
- "php": ">= 7"
3224
- },
3225
- "require-dev": {
3226
- "phpunit/phpunit": "4.*|5.*",
3227
- "vimeo/psalm": "^1"
3228
- },
3229
- "suggest": {
3230
- "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
3231
- },
3232
- "type": "library",
3233
- "notification-url": "https://packagist.org/downloads/",
3234
- "license": [
3235
- "MIT"
3236
- ],
3237
- "authors": [
3238
- {
3239
- "name": "Paragon Initiative Enterprises",
3240
- "email": "security@paragonie.com",
3241
- "homepage": "https://paragonie.com"
3242
- }
3243
- ],
3244
- "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
3245
- "keywords": [
3246
- "csprng",
3247
- "polyfill",
3248
- "pseudorandom",
3249
- "random"
3250
- ],
3251
- "support": {
3252
- "email": "info@paragonie.com",
3253
- "issues": "https://github.com/paragonie/random_compat/issues",
3254
- "source": "https://github.com/paragonie/random_compat"
3255
- },
3256
- "time": "2020-10-15T08:29:30+00:00"
3257
- },
3258
- {
3259
- "name": "pdepend/pdepend",
3260
- "version": "2.10.2",
3261
- "source": {
3262
- "type": "git",
3263
- "url": "https://github.com/pdepend/pdepend.git",
3264
- "reference": "c8c1d2af43fb8c2b5387d50e9c42a9c56de13686"
3265
- },
3266
- "dist": {
3267
- "type": "zip",
3268
- "url": "https://api.github.com/repos/pdepend/pdepend/zipball/c8c1d2af43fb8c2b5387d50e9c42a9c56de13686",
3269
- "reference": "c8c1d2af43fb8c2b5387d50e9c42a9c56de13686",
3270
- "shasum": ""
3271
- },
3272
- "require": {
3273
- "php": ">=5.3.7",
3274
- "symfony/config": "^2.3.0|^3|^4|^5",
3275
- "symfony/dependency-injection": "^2.3.0|^3|^4|^5",
3276
- "symfony/filesystem": "^2.3.0|^3|^4|^5"
3277
- },
3278
- "require-dev": {
3279
- "easy-doc/easy-doc": "0.0.0|^1.2.3",
3280
- "gregwar/rst": "^1.0",
3281
- "phpunit/phpunit": "^4.8.36|^5.7.27",
3282
- "squizlabs/php_codesniffer": "^2.0.0"
3283
- },
3284
- "bin": [
3285
- "src/bin/pdepend"
3286
- ],
3287
- "type": "library",
3288
- "extra": {
3289
- "branch-alias": {
3290
- "dev-master": "2.x-dev"
3291
- }
3292
- },
3293
- "autoload": {
3294
- "psr-4": {
3295
- "PDepend\\": "src/main/php/PDepend"
3296
- }
3297
- },
3298
- "notification-url": "https://packagist.org/downloads/",
3299
- "license": [
3300
- "BSD-3-Clause"
3301
- ],
3302
- "description": "Official version of pdepend to be handled with Composer",
3303
- "support": {
3304
- "issues": "https://github.com/pdepend/pdepend/issues",
3305
- "source": "https://github.com/pdepend/pdepend/tree/2.10.2"
3306
- },
3307
- "funding": [
3308
- {
3309
- "url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend",
3310
- "type": "tidelift"
3311
- }
3312
- ],
3313
- "time": "2021-11-16T20:05:32+00:00"
3314
- },
3315
- {
3316
- "name": "phar-io/manifest",
3317
- "version": "1.0.3",
3318
- "source": {
3319
- "type": "git",
3320
- "url": "https://github.com/phar-io/manifest.git",
3321
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4"
3322
- },
3323
- "dist": {
3324
- "type": "zip",
3325
- "url": "https://api.github.com/repos/phar-io/manifest/zipball/7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
3326
- "reference": "7761fcacf03b4d4f16e7ccb606d4879ca431fcf4",
3327
- "shasum": ""
3328
- },
3329
- "require": {
3330
- "ext-dom": "*",
3331
- "ext-phar": "*",
3332
- "phar-io/version": "^2.0",
3333
- "php": "^5.6 || ^7.0"
3334
- },
3335
- "type": "library",
3336
- "extra": {
3337
- "branch-alias": {
3338
- "dev-master": "1.0.x-dev"
3339
- }
3340
- },
3341
- "autoload": {
3342
- "classmap": [
3343
- "src/"
3344
- ]
3345
- },
3346
- "notification-url": "https://packagist.org/downloads/",
3347
- "license": [
3348
- "BSD-3-Clause"
3349
- ],
3350
- "authors": [
3351
- {
3352
- "name": "Arne Blankerts",
3353
- "email": "arne@blankerts.de",
3354
- "role": "Developer"
3355
- },
3356
- {
3357
- "name": "Sebastian Heuer",
3358
- "email": "sebastian@phpeople.de",
3359
- "role": "Developer"
3360
- },
3361
- {
3362
- "name": "Sebastian Bergmann",
3363
- "email": "sebastian@phpunit.de",
3364
- "role": "Developer"
3365
- }
3366
- ],
3367
- "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
3368
- "support": {
3369
- "issues": "https://github.com/phar-io/manifest/issues",
3370
- "source": "https://github.com/phar-io/manifest/tree/master"
3371
- },
3372
- "time": "2018-07-08T19:23:20+00:00"
3373
- },
3374
- {
3375
- "name": "phar-io/version",
3376
- "version": "2.0.1",
3377
- "source": {
3378
- "type": "git",
3379
- "url": "https://github.com/phar-io/version.git",
3380
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6"
3381
- },
3382
- "dist": {
3383
- "type": "zip",
3384
- "url": "https://api.github.com/repos/phar-io/version/zipball/45a2ec53a73c70ce41d55cedef9063630abaf1b6",
3385
- "reference": "45a2ec53a73c70ce41d55cedef9063630abaf1b6",
3386
- "shasum": ""
3387
- },
3388
- "require": {
3389
- "php": "^5.6 || ^7.0"
3390
- },
3391
- "type": "library",
3392
- "autoload": {
3393
- "classmap": [
3394
- "src/"
3395
- ]
3396
- },
3397
- "notification-url": "https://packagist.org/downloads/",
3398
- "license": [
3399
- "BSD-3-Clause"
3400
- ],
3401
- "authors": [
3402
- {
3403
- "name": "Arne Blankerts",
3404
- "email": "arne@blankerts.de",
3405
- "role": "Developer"
3406
- },
3407
- {
3408
- "name": "Sebastian Heuer",
3409
- "email": "sebastian@phpeople.de",
3410
- "role": "Developer"
3411
- },
3412
- {
3413
- "name": "Sebastian Bergmann",
3414
- "email": "sebastian@phpunit.de",
3415
- "role": "Developer"
3416
- }
3417
- ],
3418
- "description": "Library for handling version information and constraints",
3419
- "support": {
3420
- "issues": "https://github.com/phar-io/version/issues",
3421
- "source": "https://github.com/phar-io/version/tree/master"
3422
- },
3423
- "time": "2018-07-08T19:19:57+00:00"
3424
- },
3425
- {
3426
- "name": "php-webdriver/webdriver",
3427
- "version": "1.12.0",
3428
- "source": {
3429
- "type": "git",
3430
- "url": "https://github.com/php-webdriver/php-webdriver.git",
3431
- "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb"
3432
- },
3433
- "dist": {
3434
- "type": "zip",
3435
- "url": "https://api.github.com/repos/php-webdriver/php-webdriver/zipball/99d4856ed7dffcdf6a52eccd6551e83d8d557ceb",
3436
- "reference": "99d4856ed7dffcdf6a52eccd6551e83d8d557ceb",
3437
- "shasum": ""
3438
- },
3439
- "require": {
3440
- "ext-curl": "*",
3441
- "ext-json": "*",
3442
- "ext-zip": "*",
3443
- "php": "^5.6 || ~7.0 || ^8.0",
3444
- "symfony/polyfill-mbstring": "^1.12",
3445
- "symfony/process": "^2.8 || ^3.1 || ^4.0 || ^5.0 || ^6.0"
3446
- },
3447
- "replace": {
3448
- "facebook/webdriver": "*"
3449
- },
3450
- "require-dev": {
3451
- "ondram/ci-detector": "^2.1 || ^3.5 || ^4.0",
3452
- "php-coveralls/php-coveralls": "^2.4",
3453
- "php-mock/php-mock-phpunit": "^1.1 || ^2.0",
3454
- "php-parallel-lint/php-parallel-lint": "^1.2",
3455
- "phpunit/phpunit": "^5.7 || ^7 || ^8 || ^9",
3456
- "squizlabs/php_codesniffer": "^3.5",
3457
- "symfony/var-dumper": "^3.3 || ^4.0 || ^5.0 || ^6.0"
3458
- },
3459
- "suggest": {
3460
- "ext-SimpleXML": "For Firefox profile creation"
3461
- },
3462
- "type": "library",
3463
- "autoload": {
3464
- "psr-4": {
3465
- "Facebook\\WebDriver\\": "lib/"
3466
- },
3467
- "files": [
3468
- "lib/Exception/TimeoutException.php"
3469
- ]
3470
- },
3471
- "notification-url": "https://packagist.org/downloads/",
3472
- "license": [
3473
- "MIT"
3474
- ],
3475
- "description": "A PHP client for Selenium WebDriver. Previously facebook/webdriver.",
3476
- "homepage": "https://github.com/php-webdriver/php-webdriver",
3477
- "keywords": [
3478
- "Chromedriver",
3479
- "geckodriver",
3480
- "php",
3481
- "selenium",
3482
- "webdriver"
3483
- ],
3484
- "support": {
3485
- "issues": "https://github.com/php-webdriver/php-webdriver/issues",
3486
- "source": "https://github.com/php-webdriver/php-webdriver/tree/1.12.0"
3487
- },
3488
- "time": "2021-10-14T09:30:02+00:00"
3489
- },
3490
- {
3491
- "name": "phpdocumentor/reflection-common",
3492
- "version": "2.2.0",
3493
- "source": {
3494
- "type": "git",
3495
- "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
3496
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
3497
- },
3498
- "dist": {
3499
- "type": "zip",
3500
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
3501
- "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
3502
- "shasum": ""
3503
- },
3504
- "require": {
3505
- "php": "^7.2 || ^8.0"
3506
- },
3507
- "type": "library",
3508
- "extra": {
3509
- "branch-alias": {
3510
- "dev-2.x": "2.x-dev"
3511
- }
3512
- },
3513
- "autoload": {
3514
- "psr-4": {
3515
- "phpDocumentor\\Reflection\\": "src/"
3516
- }
3517
- },
3518
- "notification-url": "https://packagist.org/downloads/",
3519
- "license": [
3520
- "MIT"
3521
- ],
3522
- "authors": [
3523
- {
3524
- "name": "Jaap van Otterdijk",
3525
- "email": "opensource@ijaap.nl"
3526
- }
3527
- ],
3528
- "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
3529
- "homepage": "http://www.phpdoc.org",
3530
- "keywords": [
3531
- "FQSEN",
3532
- "phpDocumentor",
3533
- "phpdoc",
3534
- "reflection",
3535
- "static analysis"
3536
- ],
3537
- "support": {
3538
- "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
3539
- "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
3540
- },
3541
- "time": "2020-06-27T09:03:43+00:00"
3542
- },
3543
- {
3544
- "name": "phpdocumentor/reflection-docblock",
3545
- "version": "5.3.0",
3546
- "source": {
3547
- "type": "git",
3548
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
3549
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170"
3550
- },
3551
- "dist": {
3552
- "type": "zip",
3553
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170",
3554
- "reference": "622548b623e81ca6d78b721c5e029f4ce664f170",
3555
- "shasum": ""
3556
- },
3557
- "require": {
3558
- "ext-filter": "*",
3559
- "php": "^7.2 || ^8.0",
3560
- "phpdocumentor/reflection-common": "^2.2",
3561
- "phpdocumentor/type-resolver": "^1.3",
3562
- "webmozart/assert": "^1.9.1"
3563
- },
3564
- "require-dev": {
3565
- "mockery/mockery": "~1.3.2",
3566
- "psalm/phar": "^4.8"
3567
- },
3568
- "type": "library",
3569
- "extra": {
3570
- "branch-alias": {
3571
- "dev-master": "5.x-dev"
3572
- }
3573
- },
3574
- "autoload": {
3575
- "psr-4": {
3576
- "phpDocumentor\\Reflection\\": "src"
3577
- }
3578
- },
3579
- "notification-url": "https://packagist.org/downloads/",
3580
- "license": [
3581
- "MIT"
3582
- ],
3583
- "authors": [
3584
- {
3585
- "name": "Mike van Riel",
3586
- "email": "me@mikevanriel.com"
3587
- },
3588
- {
3589
- "name": "Jaap van Otterdijk",
3590
- "email": "account@ijaap.nl"
3591
- }
3592
- ],
3593
- "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
3594
- "support": {
3595
- "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
3596
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0"
3597
- },
3598
- "time": "2021-10-19T17:43:47+00:00"
3599
- },
3600
- {
3601
- "name": "phpdocumentor/type-resolver",
3602
- "version": "1.5.1",
3603
- "source": {
3604
- "type": "git",
3605
- "url": "https://github.com/phpDocumentor/TypeResolver.git",
3606
- "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae"
3607
- },
3608
- "dist": {
3609
- "type": "zip",
3610
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae",
3611
- "reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae",
3612
- "shasum": ""
3613
- },
3614
- "require": {
3615
- "php": "^7.2 || ^8.0",
3616
- "phpdocumentor/reflection-common": "^2.0"
3617
- },
3618
- "require-dev": {
3619
- "ext-tokenizer": "*",
3620
- "psalm/phar": "^4.8"
3621
- },
3622
- "type": "library",
3623
- "extra": {
3624
- "branch-alias": {
3625
- "dev-1.x": "1.x-dev"
3626
- }
3627
- },
3628
- "autoload": {
3629
- "psr-4": {
3630
- "phpDocumentor\\Reflection\\": "src"
3631
- }
3632
- },
3633
- "notification-url": "https://packagist.org/downloads/",
3634
- "license": [
3635
- "MIT"
3636
- ],
3637
- "authors": [
3638
- {
3639
- "name": "Mike van Riel",
3640
- "email": "me@mikevanriel.com"
3641
- }
3642
- ],
3643
- "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
3644
- "support": {
3645
- "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
3646
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1"
3647
- },
3648
- "time": "2021-10-02T14:08:47+00:00"
3649
- },
3650
- {
3651
- "name": "phpmd/phpmd",
3652
- "version": "2.11.0",
3653
- "source": {
3654
- "type": "git",
3655
- "url": "https://github.com/phpmd/phpmd.git",
3656
- "reference": "3637949092e6471aeaeca66bc6c016f45e459e24"
3657
- },
3658
- "dist": {
3659
- "type": "zip",
3660
- "url": "https://api.github.com/repos/phpmd/phpmd/zipball/3637949092e6471aeaeca66bc6c016f45e459e24",
3661
- "reference": "3637949092e6471aeaeca66bc6c016f45e459e24",
3662
- "shasum": ""
3663
- },
3664
- "require": {
3665
- "composer/xdebug-handler": "^1.0 || ^2.0",
3666
- "ext-xml": "*",
3667
- "pdepend/pdepend": "^2.10.2",
3668
- "php": ">=5.3.9"
3669
- },
3670
- "require-dev": {
3671
- "easy-doc/easy-doc": "0.0.0 || ^1.3.2",
3672
- "ext-json": "*",
3673
- "ext-simplexml": "*",
3674
- "gregwar/rst": "^1.0",
3675
- "mikey179/vfsstream": "^1.6.8",
3676
- "phpunit/phpunit": "^4.8.36 || ^5.7.27",
3677
- "squizlabs/php_codesniffer": "^2.0"
3678
- },
3679
- "bin": [
3680
- "src/bin/phpmd"
3681
- ],
3682
- "type": "library",
3683
- "autoload": {
3684
- "psr-0": {
3685
- "PHPMD\\": "src/main/php"
3686
- }
3687
- },
3688
- "notification-url": "https://packagist.org/downloads/",
3689
- "license": [
3690
- "BSD-3-Clause"
3691
- ],
3692
- "authors": [
3693
- {
3694
- "name": "Manuel Pichler",
3695
- "email": "github@manuel-pichler.de",
3696
- "homepage": "https://github.com/manuelpichler",
3697
- "role": "Project Founder"
3698
- },
3699
- {
3700
- "name": "Marc Würth",
3701
- "email": "ravage@bluewin.ch",
3702
- "homepage": "https://github.com/ravage84",
3703
- "role": "Project Maintainer"
3704
- },
3705
- {
3706
- "name": "Other contributors",
3707
- "homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
3708
- "role": "Contributors"
3709
- }
3710
- ],
3711
- "description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
3712
- "homepage": "https://phpmd.org/",
3713
- "keywords": [
3714
- "mess detection",
3715
- "mess detector",
3716
- "pdepend",
3717
- "phpmd",
3718
- "pmd"
3719
- ],
3720
- "support": {
3721
- "irc": "irc://irc.freenode.org/phpmd",
3722
- "issues": "https://github.com/phpmd/phpmd/issues",
3723
- "source": "https://github.com/phpmd/phpmd/tree/2.11.0"
3724
- },
3725
- "funding": [
3726
- {
3727
- "url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd",
3728
- "type": "tidelift"
3729
- }
3730
- ],
3731
- "time": "2021-11-29T14:05:52+00:00"
3732
- },
3733
- {
3734
- "name": "phpspec/prophecy",
3735
- "version": "1.14.0",
3736
- "source": {
3737
- "type": "git",
3738
- "url": "https://github.com/phpspec/prophecy.git",
3739
- "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e"
3740
- },
3741
- "dist": {
3742
- "type": "zip",
3743
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
3744
- "reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e",
3745
- "shasum": ""
3746
- },
3747
- "require": {
3748
- "doctrine/instantiator": "^1.2",
3749
- "php": "^7.2 || ~8.0, <8.2",
3750
- "phpdocumentor/reflection-docblock": "^5.2",
3751
- "sebastian/comparator": "^3.0 || ^4.0",
3752
- "sebastian/recursion-context": "^3.0 || ^4.0"
3753
- },
3754
- "require-dev": {
3755
- "phpspec/phpspec": "^6.0 || ^7.0",
3756
- "phpunit/phpunit": "^8.0 || ^9.0"
3757
- },
3758
- "type": "library",
3759
- "extra": {
3760
- "branch-alias": {
3761
- "dev-master": "1.x-dev"
3762
- }
3763
- },
3764
- "autoload": {
3765
- "psr-4": {
3766
- "Prophecy\\": "src/Prophecy"
3767
- }
3768
- },
3769
- "notification-url": "https://packagist.org/downloads/",
3770
- "license": [
3771
- "MIT"
3772
- ],
3773
- "authors": [
3774
- {
3775
- "name": "Konstantin Kudryashov",
3776
- "email": "ever.zet@gmail.com",
3777
- "homepage": "http://everzet.com"
3778
- },
3779
- {
3780
- "name": "Marcello Duarte",
3781
- "email": "marcello.duarte@gmail.com"
3782
- }
3783
- ],
3784
- "description": "Highly opinionated mocking framework for PHP 5.3+",
3785
- "homepage": "https://github.com/phpspec/prophecy",
3786
- "keywords": [
3787
- "Double",
3788
- "Dummy",
3789
- "fake",
3790
- "mock",
3791
- "spy",
3792
- "stub"
3793
- ],
3794
- "support": {
3795
- "issues": "https://github.com/phpspec/prophecy/issues",
3796
- "source": "https://github.com/phpspec/prophecy/tree/1.14.0"
3797
- },
3798
- "time": "2021-09-10T09:02:12+00:00"
3799
- },
3800
- {
3801
- "name": "phpunit/php-code-coverage",
3802
- "version": "8.0.2",
3803
- "source": {
3804
- "type": "git",
3805
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
3806
- "reference": "ca6647ffddd2add025ab3f21644a441d7c146cdc"
3807
- },
3808
- "dist": {
3809
- "type": "zip",
3810
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ca6647ffddd2add025ab3f21644a441d7c146cdc",
3811
- "reference": "ca6647ffddd2add025ab3f21644a441d7c146cdc",
3812
- "shasum": ""
3813
- },
3814
- "require": {
3815
- "ext-dom": "*",
3816
- "ext-xmlwriter": "*",
3817
- "php": "^7.3",
3818
- "phpunit/php-file-iterator": "^3.0",
3819
- "phpunit/php-text-template": "^2.0",
3820
- "phpunit/php-token-stream": "^4.0",
3821
- "sebastian/code-unit-reverse-lookup": "^2.0",
3822
- "sebastian/environment": "^5.0",
3823
- "sebastian/version": "^3.0",
3824
- "theseer/tokenizer": "^1.1.3"
3825
- },
3826
- "require-dev": {
3827
- "phpunit/phpunit": "^9.0"
3828
- },
3829
- "suggest": {
3830
- "ext-pcov": "*",
3831
- "ext-xdebug": "*"
3832
- },
3833
- "type": "library",
3834
- "extra": {
3835
- "branch-alias": {
3836
- "dev-master": "8.0-dev"
3837
- }
3838
- },
3839
- "autoload": {
3840
- "classmap": [
3841
- "src/"
3842
- ]
3843
- },
3844
- "notification-url": "https://packagist.org/downloads/",
3845
- "license": [
3846
- "BSD-3-Clause"
3847
- ],
3848
- "authors": [
3849
- {
3850
- "name": "Sebastian Bergmann",
3851
- "email": "sebastian@phpunit.de",
3852
- "role": "lead"
3853
- }
3854
- ],
3855
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
3856
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
3857
- "keywords": [
3858
- "coverage",
3859
- "testing",
3860
- "xunit"
3861
- ],
3862
- "support": {
3863
- "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
3864
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/8.0.2"
3865
- },
3866
- "funding": [
3867
- {
3868
- "url": "https://github.com/sebastianbergmann",
3869
- "type": "github"
3870
- }
3871
- ],
3872
- "time": "2020-05-23T08:02:54+00:00"
3873
- },
3874
- {
3875
- "name": "phpunit/php-file-iterator",
3876
- "version": "3.0.5",
3877
- "source": {
3878
- "type": "git",
3879
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
3880
- "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
3881
- },
3882
- "dist": {
3883
- "type": "zip",
3884
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
3885
- "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
3886
- "shasum": ""
3887
- },
3888
- "require": {
3889
- "php": ">=7.3"
3890
- },
3891
- "require-dev": {
3892
- "phpunit/phpunit": "^9.3"
3893
- },
3894
- "type": "library",
3895
- "extra": {
3896
- "branch-alias": {
3897
- "dev-master": "3.0-dev"
3898
- }
3899
- },
3900
- "autoload": {
3901
- "classmap": [
3902
- "src/"
3903
- ]
3904
- },
3905
- "notification-url": "https://packagist.org/downloads/",
3906
- "license": [
3907
- "BSD-3-Clause"
3908
- ],
3909
- "authors": [
3910
- {
3911
- "name": "Sebastian Bergmann",
3912
- "email": "sebastian@phpunit.de",
3913
- "role": "lead"
3914
- }
3915
- ],
3916
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
3917
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
3918
- "keywords": [
3919
- "filesystem",
3920
- "iterator"
3921
- ],
3922
- "support": {
3923
- "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
3924
- "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
3925
- },
3926
- "funding": [
3927
- {
3928
- "url": "https://github.com/sebastianbergmann",
3929
- "type": "github"
3930
- }
3931
- ],
3932
- "time": "2020-09-28T05:57:25+00:00"
3933
- },
3934
- {
3935
- "name": "phpunit/php-invoker",
3936
- "version": "3.1.1",
3937
- "source": {
3938
- "type": "git",
3939
- "url": "https://github.com/sebastianbergmann/php-invoker.git",
3940
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
3941
- },
3942
- "dist": {
3943
- "type": "zip",
3944
- "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
3945
- "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
3946
- "shasum": ""
3947
- },
3948
- "require": {
3949
- "php": ">=7.3"
3950
- },
3951
- "require-dev": {
3952
- "ext-pcntl": "*",
3953
- "phpunit/phpunit": "^9.3"
3954
- },
3955
- "suggest": {
3956
- "ext-pcntl": "*"
3957
- },
3958
- "type": "library",
3959
- "extra": {
3960
- "branch-alias": {
3961
- "dev-master": "3.1-dev"
3962
- }
3963
- },
3964
- "autoload": {
3965
- "classmap": [
3966
- "src/"
3967
- ]
3968
- },
3969
- "notification-url": "https://packagist.org/downloads/",
3970
- "license": [
3971
- "BSD-3-Clause"
3972
- ],
3973
- "authors": [
3974
- {
3975
- "name": "Sebastian Bergmann",
3976
- "email": "sebastian@phpunit.de",
3977
- "role": "lead"
3978
- }
3979
- ],
3980
- "description": "Invoke callables with a timeout",
3981
- "homepage": "https://github.com/sebastianbergmann/php-invoker/",
3982
- "keywords": [
3983
- "process"
3984
- ],
3985
- "support": {
3986
- "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
3987
- "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
3988
- },
3989
- "funding": [
3990
- {
3991
- "url": "https://github.com/sebastianbergmann",
3992
- "type": "github"
3993
- }
3994
- ],
3995
- "time": "2020-09-28T05:58:55+00:00"
3996
- },
3997
- {
3998
- "name": "phpunit/php-text-template",
3999
- "version": "2.0.4",
4000
- "source": {
4001
- "type": "git",
4002
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
4003
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
4004
- },
4005
- "dist": {
4006
- "type": "zip",
4007
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
4008
- "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
4009
- "shasum": ""
4010
- },
4011
- "require": {
4012
- "php": ">=7.3"
4013
- },
4014
- "require-dev": {
4015
- "phpunit/phpunit": "^9.3"
4016
- },
4017
- "type": "library",
4018
- "extra": {
4019
- "branch-alias": {
4020
- "dev-master": "2.0-dev"
4021
- }
4022
- },
4023
- "autoload": {
4024
- "classmap": [
4025
- "src/"
4026
- ]
4027
- },
4028
- "notification-url": "https://packagist.org/downloads/",
4029
- "license": [
4030
- "BSD-3-Clause"
4031
- ],
4032
- "authors": [
4033
- {
4034
- "name": "Sebastian Bergmann",
4035
- "email": "sebastian@phpunit.de",
4036
- "role": "lead"
4037
- }
4038
- ],
4039
- "description": "Simple template engine.",
4040
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
4041
- "keywords": [
4042
- "template"
4043
- ],
4044
- "support": {
4045
- "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
4046
- "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
4047
- },
4048
- "funding": [
4049
- {
4050
- "url": "https://github.com/sebastianbergmann",
4051
- "type": "github"
4052
- }
4053
- ],
4054
- "time": "2020-10-26T05:33:50+00:00"
4055
- },
4056
- {
4057
- "name": "phpunit/php-timer",
4058
- "version": "3.1.4",
4059
- "source": {
4060
- "type": "git",
4061
- "url": "https://github.com/sebastianbergmann/php-timer.git",
4062
- "reference": "dc9368fae6ef2ffa57eba80a7410bcef81df6258"
4063
- },
4064
- "dist": {
4065
- "type": "zip",
4066
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/dc9368fae6ef2ffa57eba80a7410bcef81df6258",
4067
- "reference": "dc9368fae6ef2ffa57eba80a7410bcef81df6258",
4068
- "shasum": ""
4069
- },
4070
- "require": {
4071
- "php": "^7.3"
4072
- },
4073
- "require-dev": {
4074
- "phpunit/phpunit": "^9.0"
4075
- },
4076
- "type": "library",
4077
- "extra": {
4078
- "branch-alias": {
4079
- "dev-master": "3.1-dev"
4080
- }
4081
- },
4082
- "autoload": {
4083
- "classmap": [
4084
- "src/"
4085
- ]
4086
- },
4087
- "notification-url": "https://packagist.org/downloads/",
4088
- "license": [
4089
- "BSD-3-Clause"
4090
- ],
4091
- "authors": [
4092
- {
4093
- "name": "Sebastian Bergmann",
4094
- "email": "sebastian@phpunit.de",
4095
- "role": "lead"
4096
- }
4097
- ],
4098
- "description": "Utility class for timing",
4099
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
4100
- "keywords": [
4101
- "timer"
4102
- ],
4103
- "support": {
4104
- "issues": "https://github.com/sebastianbergmann/php-timer/issues",
4105
- "source": "https://github.com/sebastianbergmann/php-timer/tree/master"
4106
- },
4107
- "funding": [
4108
- {
4109
- "url": "https://github.com/sebastianbergmann",
4110
- "type": "github"
4111
- }
4112
- ],
4113
- "time": "2020-04-20T06:00:37+00:00"
4114
- },
4115
- {
4116
- "name": "phpunit/php-token-stream",
4117
- "version": "4.0.4",
4118
- "source": {
4119
- "type": "git",
4120
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
4121
- "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
4122
- },
4123
- "dist": {
4124
- "type": "zip",
4125
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
4126
- "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
4127
- "shasum": ""
4128
- },
4129
- "require": {
4130
- "ext-tokenizer": "*",
4131
- "php": "^7.3 || ^8.0"
4132
- },
4133
- "require-dev": {
4134
- "phpunit/phpunit": "^9.0"
4135
- },
4136
- "type": "library",
4137
- "extra": {
4138
- "branch-alias": {
4139
- "dev-master": "4.0-dev"
4140
- }
4141
- },
4142
- "autoload": {
4143
- "classmap": [
4144
- "src/"
4145
- ]
4146
- },
4147
- "notification-url": "https://packagist.org/downloads/",
4148
- "license": [
4149
- "BSD-3-Clause"
4150
- ],
4151
- "authors": [
4152
- {
4153
- "name": "Sebastian Bergmann",
4154
- "email": "sebastian@phpunit.de"
4155
- }
4156
- ],
4157
- "description": "Wrapper around PHP's tokenizer extension.",
4158
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
4159
- "keywords": [
4160
- "tokenizer"
4161
- ],
4162
- "support": {
4163
- "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
4164
- "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
4165
- },
4166
- "funding": [
4167
- {
4168
- "url": "https://github.com/sebastianbergmann",
4169
- "type": "github"
4170
- }
4171
- ],
4172
- "abandoned": true,
4173
- "time": "2020-08-04T08:28:15+00:00"
4174
- },
4175
- {
4176
- "name": "phpunit/phpunit",
4177
- "version": "9.1.5",
4178
- "source": {
4179
- "type": "git",
4180
- "url": "https://github.com/sebastianbergmann/phpunit.git",
4181
- "reference": "1b570cd7edbe136055bf5f651857dc8af6b829d2"
4182
- },
4183
- "dist": {
4184
- "type": "zip",
4185
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1b570cd7edbe136055bf5f651857dc8af6b829d2",
4186
- "reference": "1b570cd7edbe136055bf5f651857dc8af6b829d2",
4187
- "shasum": ""
4188
- },
4189
- "require": {
4190
- "doctrine/instantiator": "^1.2.0",
4191
- "ext-dom": "*",
4192
- "ext-json": "*",
4193
- "ext-libxml": "*",
4194
- "ext-mbstring": "*",
4195
- "ext-xml": "*",
4196
- "ext-xmlwriter": "*",
4197
- "myclabs/deep-copy": "^1.9.1",
4198
- "phar-io/manifest": "^1.0.3",
4199
- "phar-io/version": "^2.0.1",
4200
- "php": "^7.3",
4201
- "phpspec/prophecy": "^1.8.1",
4202
- "phpunit/php-code-coverage": "^8.0.1",
4203
- "phpunit/php-file-iterator": "^3.0",
4204
- "phpunit/php-invoker": "^3.0",
4205
- "phpunit/php-text-template": "^2.0",
4206
- "phpunit/php-timer": "^3.1.4",
4207
- "sebastian/code-unit": "^1.0.2",
4208
- "sebastian/comparator": "^4.0",
4209
- "sebastian/diff": "^4.0",
4210
- "sebastian/environment": "^5.0.1",
4211
- "sebastian/exporter": "^4.0",
4212
- "sebastian/global-state": "^4.0",
4213
- "sebastian/object-enumerator": "^4.0",
4214
- "sebastian/resource-operations": "^3.0",
4215
- "sebastian/type": "^2.0",
4216
- "sebastian/version": "^3.0"
4217
- },
4218
- "require-dev": {
4219
- "ext-pdo": "*",
4220
- "phpspec/prophecy-phpunit": "^2.0"
4221
- },
4222
- "suggest": {
4223
- "ext-soap": "*",
4224
- "ext-xdebug": "*"
4225
- },
4226
- "bin": [
4227
- "phpunit"
4228
- ],
4229
- "type": "library",
4230
- "extra": {
4231
- "branch-alias": {
4232
- "dev-master": "9.1-dev"
4233
- }
4234
- },
4235
- "autoload": {
4236
- "classmap": [
4237
- "src/"
4238
- ],
4239
- "files": [
4240
- "src/Framework/Assert/Functions.php"
4241
- ]
4242
- },
4243
- "notification-url": "https://packagist.org/downloads/",
4244
- "license": [
4245
- "BSD-3-Clause"
4246
- ],
4247
- "authors": [
4248
- {
4249
- "name": "Sebastian Bergmann",
4250
- "email": "sebastian@phpunit.de",
4251
- "role": "lead"
4252
- }
4253
- ],
4254
- "description": "The PHP Unit Testing framework.",
4255
- "homepage": "https://phpunit.de/",
4256
- "keywords": [
4257
- "phpunit",
4258
- "testing",
4259
- "xunit"
4260
- ],
4261
- "support": {
4262
- "issues": "https://github.com/sebastianbergmann/phpunit/issues",
4263
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.1.5"
4264
- },
4265
- "funding": [
4266
- {
4267
- "url": "https://phpunit.de/donate.html",
4268
- "type": "custom"
4269
- },
4270
- {
4271
- "url": "https://github.com/sebastianbergmann",
4272
- "type": "github"
4273
- }
4274
- ],
4275
- "time": "2020-05-22T13:54:05+00:00"
4276
- },
4277
- {
4278
- "name": "psr/container",
4279
- "version": "1.1.2",
4280
- "source": {
4281
- "type": "git",
4282
- "url": "https://github.com/php-fig/container.git",
4283
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
4284
- },
4285
- "dist": {
4286
- "type": "zip",
4287
- "url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
4288
- "reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
4289
- "shasum": ""
4290
- },
4291
- "require": {
4292
- "php": ">=7.4.0"
4293
- },
4294
- "type": "library",
4295
- "autoload": {
4296
- "psr-4": {
4297
- "Psr\\Container\\": "src/"
4298
- }
4299
- },
4300
- "notification-url": "https://packagist.org/downloads/",
4301
- "license": [
4302
- "MIT"
4303
- ],
4304
- "authors": [
4305
- {
4306
- "name": "PHP-FIG",
4307
- "homepage": "https://www.php-fig.org/"
4308
- }
4309
- ],
4310
- "description": "Common Container Interface (PHP FIG PSR-11)",
4311
- "homepage": "https://github.com/php-fig/container",
4312
- "keywords": [
4313
- "PSR-11",
4314
- "container",
4315
- "container-interface",
4316
- "container-interop",
4317
- "psr"
4318
- ],
4319
- "support": {
4320
- "issues": "https://github.com/php-fig/container/issues",
4321
- "source": "https://github.com/php-fig/container/tree/1.1.2"
4322
- },
4323
- "time": "2021-11-05T16:50:12+00:00"
4324
- },
4325
- {
4326
- "name": "psr/event-dispatcher",
4327
- "version": "1.0.0",
4328
- "source": {
4329
- "type": "git",
4330
- "url": "https://github.com/php-fig/event-dispatcher.git",
4331
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
4332
- },
4333
- "dist": {
4334
- "type": "zip",
4335
- "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
4336
- "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
4337
- "shasum": ""
4338
- },
4339
- "require": {
4340
- "php": ">=7.2.0"
4341
- },
4342
- "type": "library",
4343
- "extra": {
4344
- "branch-alias": {
4345
- "dev-master": "1.0.x-dev"
4346
- }
4347
- },
4348
- "autoload": {
4349
- "psr-4": {
4350
- "Psr\\EventDispatcher\\": "src/"
4351
- }
4352
- },
4353
- "notification-url": "https://packagist.org/downloads/",
4354
- "license": [
4355
- "MIT"
4356
- ],
4357
- "authors": [
4358
- {
4359
- "name": "PHP-FIG",
4360
- "homepage": "http://www.php-fig.org/"
4361
- }
4362
- ],
4363
- "description": "Standard interfaces for event handling.",
4364
- "keywords": [
4365
- "events",
4366
- "psr",
4367
- "psr-14"
4368
- ],
4369
- "support": {
4370
- "issues": "https://github.com/php-fig/event-dispatcher/issues",
4371
- "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
4372
- },
4373
- "time": "2019-01-08T18:20:26+00:00"
4374
- },
4375
- {
4376
- "name": "psr/http-client",
4377
- "version": "1.0.1",
4378
- "source": {
4379
- "type": "git",
4380
- "url": "https://github.com/php-fig/http-client.git",
4381
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
4382
- },
4383
- "dist": {
4384
- "type": "zip",
4385
- "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
4386
- "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
4387
- "shasum": ""
4388
- },
4389
- "require": {
4390
- "php": "^7.0 || ^8.0",
4391
- "psr/http-message": "^1.0"
4392
- },
4393
- "type": "library",
4394
- "extra": {
4395
- "branch-alias": {
4396
- "dev-master": "1.0.x-dev"
4397
- }
4398
- },
4399
- "autoload": {
4400
- "psr-4": {
4401
- "Psr\\Http\\Client\\": "src/"
4402
- }
4403
- },
4404
- "notification-url": "https://packagist.org/downloads/",
4405
- "license": [
4406
- "MIT"
4407
- ],
4408
- "authors": [
4409
- {
4410
- "name": "PHP-FIG",
4411
- "homepage": "http://www.php-fig.org/"
4412
- }
4413
- ],
4414
- "description": "Common interface for HTTP clients",
4415
- "homepage": "https://github.com/php-fig/http-client",
4416
- "keywords": [
4417
- "http",
4418
- "http-client",
4419
- "psr",
4420
- "psr-18"
4421
- ],
4422
- "support": {
4423
- "source": "https://github.com/php-fig/http-client/tree/master"
4424
- },
4425
- "time": "2020-06-29T06:28:15+00:00"
4426
- },
4427
- {
4428
- "name": "psr/http-factory",
4429
- "version": "1.0.1",
4430
- "source": {
4431
- "type": "git",
4432
- "url": "https://github.com/php-fig/http-factory.git",
4433
- "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be"
4434
- },
4435
- "dist": {
4436
- "type": "zip",
4437
- "url": "https://api.github.com/repos/php-fig/http-factory/zipball/12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
4438
- "reference": "12ac7fcd07e5b077433f5f2bee95b3a771bf61be",
4439
- "shasum": ""
4440
- },
4441
- "require": {
4442
- "php": ">=7.0.0",
4443
- "psr/http-message": "^1.0"
4444
- },
4445
- "type": "library",
4446
- "extra": {
4447
- "branch-alias": {
4448
- "dev-master": "1.0.x-dev"
4449
- }
4450
- },
4451
- "autoload": {
4452
- "psr-4": {
4453
- "Psr\\Http\\Message\\": "src/"
4454
- }
4455
- },
4456
- "notification-url": "https://packagist.org/downloads/",
4457
- "license": [
4458
- "MIT"
4459
- ],
4460
- "authors": [
4461
- {
4462
- "name": "PHP-FIG",
4463
- "homepage": "http://www.php-fig.org/"
4464
- }
4465
- ],
4466
- "description": "Common interfaces for PSR-7 HTTP message factories",
4467
- "keywords": [
4468
- "factory",
4469
- "http",
4470
- "message",
4471
- "psr",
4472
- "psr-17",
4473
- "psr-7",
4474
- "request",
4475
- "response"
4476
- ],
4477
- "support": {
4478
- "source": "https://github.com/php-fig/http-factory/tree/master"
4479
- },
4480
- "time": "2019-04-30T12:38:16+00:00"
4481
- },
4482
- {
4483
- "name": "psr/http-message",
4484
- "version": "1.0.1",
4485
- "source": {
4486
- "type": "git",
4487
- "url": "https://github.com/php-fig/http-message.git",
4488
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
4489
- },
4490
- "dist": {
4491
- "type": "zip",
4492
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
4493
- "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
4494
- "shasum": ""
4495
- },
4496
- "require": {
4497
- "php": ">=5.3.0"
4498
- },
4499
- "type": "library",
4500
- "extra": {
4501
- "branch-alias": {
4502
- "dev-master": "1.0.x-dev"
4503
- }
4504
- },
4505
- "autoload": {
4506
- "psr-4": {
4507
- "Psr\\Http\\Message\\": "src/"
4508
- }
4509
- },
4510
- "notification-url": "https://packagist.org/downloads/",
4511
- "license": [
4512
- "MIT"
4513
- ],
4514
- "authors": [
4515
- {
4516
- "name": "PHP-FIG",
4517
- "homepage": "http://www.php-fig.org/"
4518
- }
4519
- ],
4520
- "description": "Common interface for HTTP messages",
4521
- "homepage": "https://github.com/php-fig/http-message",
4522
- "keywords": [
4523
- "http",
4524
- "http-message",
4525
- "psr",
4526
- "psr-7",
4527
- "request",
4528
- "response"
4529
- ],
4530
- "support": {
4531
- "source": "https://github.com/php-fig/http-message/tree/master"
4532
- },
4533
- "time": "2016-08-06T14:39:51+00:00"
4534
- },
4535
- {
4536
- "name": "psr/log",
4537
- "version": "1.1.4",
4538
- "source": {
4539
- "type": "git",
4540
- "url": "https://github.com/php-fig/log.git",
4541
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
4542
- },
4543
- "dist": {
4544
- "type": "zip",
4545
- "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
4546
- "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
4547
- "shasum": ""
4548
- },
4549
- "require": {
4550
- "php": ">=5.3.0"
4551
- },
4552
- "type": "library",
4553
- "extra": {
4554
- "branch-alias": {
4555
- "dev-master": "1.1.x-dev"
4556
- }
4557
- },
4558
- "autoload": {
4559
- "psr-4": {
4560
- "Psr\\Log\\": "Psr/Log/"
4561
- }
4562
- },
4563
- "notification-url": "https://packagist.org/downloads/",
4564
- "license": [
4565
- "MIT"
4566
- ],
4567
- "authors": [
4568
- {
4569
- "name": "PHP-FIG",
4570
- "homepage": "https://www.php-fig.org/"
4571
- }
4572
- ],
4573
- "description": "Common interface for logging libraries",
4574
- "homepage": "https://github.com/php-fig/log",
4575
- "keywords": [
4576
- "log",
4577
- "psr",
4578
- "psr-3"
4579
- ],
4580
- "support": {
4581
- "source": "https://github.com/php-fig/log/tree/1.1.4"
4582
- },
4583
- "time": "2021-05-03T11:20:27+00:00"
4584
- },
4585
- {
4586
- "name": "psr/simple-cache",
4587
- "version": "1.0.1",
4588
- "source": {
4589
- "type": "git",
4590
- "url": "https://github.com/php-fig/simple-cache.git",
4591
- "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
4592
- },
4593
- "dist": {
4594
- "type": "zip",
4595
- "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
4596
- "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
4597
- "shasum": ""
4598
- },
4599
- "require": {
4600
- "php": ">=5.3.0"
4601
- },
4602
- "type": "library",
4603
- "extra": {
4604
- "branch-alias": {
4605
- "dev-master": "1.0.x-dev"
4606
- }
4607
- },
4608
- "autoload": {
4609
- "psr-4": {
4610
- "Psr\\SimpleCache\\": "src/"
4611
- }
4612
- },
4613
- "notification-url": "https://packagist.org/downloads/",
4614
- "license": [
4615
- "MIT"
4616
- ],
4617
- "authors": [
4618
- {
4619
- "name": "PHP-FIG",
4620
- "homepage": "http://www.php-fig.org/"
4621
- }
4622
- ],
4623
- "description": "Common interfaces for simple caching",
4624
- "keywords": [
4625
- "cache",
4626
- "caching",
4627
- "psr",
4628
- "psr-16",
4629
- "simple-cache"
4630
- ],
4631
- "support": {
4632
- "source": "https://github.com/php-fig/simple-cache/tree/master"
4633
- },
4634
- "time": "2017-10-23T01:57:42+00:00"
4635
- },
4636
- {
4637
- "name": "publishpress/publishpress-plugin-builder",
4638
- "version": "v1.3.4",
4639
- "source": {
4640
- "type": "git",
4641
- "url": "https://github.com/publishpress/PublishPress-Plugin-Builder.git",
4642
- "reference": "fd58833743fc80aecac02c0c99b5eca1212c434d"
4643
- },
4644
- "dist": {
4645
- "type": "zip",
4646
- "url": "https://api.github.com/repos/publishpress/PublishPress-Plugin-Builder/zipball/fd58833743fc80aecac02c0c99b5eca1212c434d",
4647
- "reference": "fd58833743fc80aecac02c0c99b5eca1212c434d",
4648
- "shasum": ""
4649
- },
4650
- "require": {
4651
- "consolidation/robo": "^3.0",
4652
- "nelexa/zip": "^3.3",
4653
- "php": "~7.3",
4654
- "symfony/yaml": "^5"
4655
- },
4656
- "require-dev": {
4657
- "codeception/codeception": "^4.0",
4658
- "codeception/module-asserts": "^1.0.0",
4659
- "phpmd/phpmd": "^2.8",
4660
- "phpmetrics/phpmetrics": "^2.7",
4661
- "squizlabs/php_codesniffer": "^3.5"
4662
- },
4663
- "type": "library",
4664
- "autoload": {
4665
- "psr-4": {
4666
- "PublishPressBuilder\\": "src/"
4667
- }
4668
- },
4669
- "notification-url": "https://packagist.org/downloads/",
4670
- "license": [
4671
- "GPL-2.0-or-later"
4672
- ],
4673
- "authors": [
4674
- {
4675
- "name": "PublishPress",
4676
- "email": "help@publishpress.com"
4677
- }
4678
- ],
4679
- "description": "Robo tasks for building WordPress plugins",
4680
- "support": {
4681
- "issues": "https://github.com/publishpress/PublishPress-Plugin-Builder/issues",
4682
- "source": "https://github.com/publishpress/PublishPress-Plugin-Builder/tree/v1.3.4"
4683
- },
4684
- "time": "2021-10-18T17:26:24+00:00"
4685
- },
4686
- {
4687
- "name": "ralouphie/getallheaders",
4688
- "version": "3.0.3",
4689
- "source": {
4690
- "type": "git",
4691
- "url": "https://github.com/ralouphie/getallheaders.git",
4692
- "reference": "120b605dfeb996808c31b6477290a714d356e822"
4693
- },
4694
- "dist": {
4695
- "type": "zip",
4696
- "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
4697
- "reference": "120b605dfeb996808c31b6477290a714d356e822",
4698
- "shasum": ""
4699
- },
4700
- "require": {
4701
- "php": ">=5.6"
4702
- },
4703
- "require-dev": {
4704
- "php-coveralls/php-coveralls": "^2.1",
4705
- "phpunit/phpunit": "^5 || ^6.5"
4706
- },
4707
- "type": "library",
4708
- "autoload": {
4709
- "files": [
4710
- "src/getallheaders.php"
4711
- ]
4712
- },
4713
- "notification-url": "https://packagist.org/downloads/",
4714
- "license": [
4715
- "MIT"
4716
- ],
4717
- "authors": [
4718
- {
4719
- "name": "Ralph Khattar",
4720
- "email": "ralph.khattar@gmail.com"
4721
- }
4722
- ],
4723
- "description": "A polyfill for getallheaders.",
4724
- "support": {
4725
- "issues": "https://github.com/ralouphie/getallheaders/issues",
4726
- "source": "https://github.com/ralouphie/getallheaders/tree/develop"
4727
- },
4728
- "time": "2019-03-08T08:55:37+00:00"
4729
- },
4730
- {
4731
- "name": "rmccue/requests",
4732
- "version": "v1.8.1",
4733
- "source": {
4734
- "type": "git",
4735
- "url": "https://github.com/WordPress/Requests.git",
4736
- "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5"
4737
- },
4738
- "dist": {
4739
- "type": "zip",
4740
- "url": "https://api.github.com/repos/WordPress/Requests/zipball/82e6936366eac3af4d836c18b9d8c31028fe4cd5",
4741
- "reference": "82e6936366eac3af4d836c18b9d8c31028fe4cd5",
4742
- "shasum": ""
4743
- },
4744
- "require": {
4745
- "php": ">=5.2"
4746
- },
4747
- "require-dev": {
4748
- "dealerdirect/phpcodesniffer-composer-installer": "^0.7",
4749
- "php-parallel-lint/php-console-highlighter": "^0.5.0",
4750
- "php-parallel-lint/php-parallel-lint": "^1.3",
4751
- "phpcompatibility/php-compatibility": "^9.0",
4752
- "phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.5",
4753
- "requests/test-server": "dev-master",
4754
- "squizlabs/php_codesniffer": "^3.5",
4755
- "wp-coding-standards/wpcs": "^2.0"
4756
- },
4757
- "type": "library",
4758
- "autoload": {
4759
- "psr-0": {
4760
- "Requests": "library/"
4761
- }
4762
- },
4763
- "notification-url": "https://packagist.org/downloads/",
4764
- "license": [
4765
- "ISC"
4766
- ],
4767
- "authors": [
4768
- {
4769
- "name": "Ryan McCue",
4770
- "homepage": "http://ryanmccue.info"
4771
- }
4772
- ],
4773
- "description": "A HTTP library written in PHP, for human beings.",
4774
- "homepage": "http://github.com/WordPress/Requests",
4775
- "keywords": [
4776
- "curl",
4777
- "fsockopen",
4778
- "http",
4779
- "idna",
4780
- "ipv6",
4781
- "iri",
4782
- "sockets"
4783
- ],
4784
- "support": {
4785
- "issues": "https://github.com/WordPress/Requests/issues",
4786
- "source": "https://github.com/WordPress/Requests/tree/v1.8.1"
4787
- },
4788
- "time": "2021-06-04T09:56:25+00:00"
4789
- },
4790
- {
4791
- "name": "sebastian/code-unit",
4792
- "version": "1.0.8",
4793
- "source": {
4794
- "type": "git",
4795
- "url": "https://github.com/sebastianbergmann/code-unit.git",
4796
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
4797
- },
4798
- "dist": {
4799
- "type": "zip",
4800
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
4801
- "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
4802
- "shasum": ""
4803
- },
4804
- "require": {
4805
- "php": ">=7.3"
4806
- },
4807
- "require-dev": {
4808
- "phpunit/phpunit": "^9.3"
4809
- },
4810
- "type": "library",
4811
- "extra": {
4812
- "branch-alias": {
4813
- "dev-master": "1.0-dev"
4814
- }
4815
- },
4816
- "autoload": {
4817
- "classmap": [
4818
- "src/"
4819
- ]
4820
- },
4821
- "notification-url": "https://packagist.org/downloads/",
4822
- "license": [
4823
- "BSD-3-Clause"
4824
- ],
4825
- "authors": [
4826
- {
4827
- "name": "Sebastian Bergmann",
4828
- "email": "sebastian@phpunit.de",
4829
- "role": "lead"
4830
- }
4831
- ],
4832
- "description": "Collection of value objects that represent the PHP code units",
4833
- "homepage": "https://github.com/sebastianbergmann/code-unit",
4834
- "support": {
4835
- "issues": "https://github.com/sebastianbergmann/code-unit/issues",
4836
- "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
4837
- },
4838
- "funding": [
4839
- {
4840
- "url": "https://github.com/sebastianbergmann",
4841
- "type": "github"
4842
- }
4843
- ],
4844
- "time": "2020-10-26T13:08:54+00:00"
4845
- },
4846
- {
4847
- "name": "sebastian/code-unit-reverse-lookup",
4848
- "version": "2.0.3",
4849
- "source": {
4850
- "type": "git",
4851
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
4852
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
4853
- },
4854
- "dist": {
4855
- "type": "zip",
4856
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
4857
- "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
4858
- "shasum": ""
4859
- },
4860
- "require": {
4861
- "php": ">=7.3"
4862
- },
4863
- "require-dev": {
4864
- "phpunit/phpunit": "^9.3"
4865
- },
4866
- "type": "library",
4867
- "extra": {
4868
- "branch-alias": {
4869
- "dev-master": "2.0-dev"
4870
- }
4871
- },
4872
- "autoload": {
4873
- "classmap": [
4874
- "src/"
4875
- ]
4876
- },
4877
- "notification-url": "https://packagist.org/downloads/",
4878
- "license": [
4879
- "BSD-3-Clause"
4880
- ],
4881
- "authors": [
4882
- {
4883
- "name": "Sebastian Bergmann",
4884
- "email": "sebastian@phpunit.de"
4885
- }
4886
- ],
4887
- "description": "Looks up which function or method a line of code belongs to",
4888
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
4889
- "support": {
4890
- "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
4891
- "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
4892
- },
4893
- "funding": [
4894
- {
4895
- "url": "https://github.com/sebastianbergmann",
4896
- "type": "github"
4897
- }
4898
- ],
4899
- "time": "2020-09-28T05:30:19+00:00"
4900
- },
4901
- {
4902
- "name": "sebastian/comparator",
4903
- "version": "4.0.6",
4904
- "source": {
4905
- "type": "git",
4906
- "url": "https://github.com/sebastianbergmann/comparator.git",
4907
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
4908
- },
4909
- "dist": {
4910
- "type": "zip",
4911
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
4912
- "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
4913
- "shasum": ""
4914
- },
4915
- "require": {
4916
- "php": ">=7.3",
4917
- "sebastian/diff": "^4.0",
4918
- "sebastian/exporter": "^4.0"
4919
- },
4920
- "require-dev": {
4921
- "phpunit/phpunit": "^9.3"
4922
- },
4923
- "type": "library",
4924
- "extra": {
4925
- "branch-alias": {
4926
- "dev-master": "4.0-dev"
4927
- }
4928
- },
4929
- "autoload": {
4930
- "classmap": [
4931
- "src/"
4932
- ]
4933
- },
4934
- "notification-url": "https://packagist.org/downloads/",
4935
- "license": [
4936
- "BSD-3-Clause"
4937
- ],
4938
- "authors": [
4939
- {
4940
- "name": "Sebastian Bergmann",
4941
- "email": "sebastian@phpunit.de"
4942
- },
4943
- {
4944
- "name": "Jeff Welch",
4945
- "email": "whatthejeff@gmail.com"
4946
- },
4947
- {
4948
- "name": "Volker Dusch",
4949
- "email": "github@wallbash.com"
4950
- },
4951
- {
4952
- "name": "Bernhard Schussek",
4953
- "email": "bschussek@2bepublished.at"
4954
- }
4955
- ],
4956
- "description": "Provides the functionality to compare PHP values for equality",
4957
- "homepage": "https://github.com/sebastianbergmann/comparator",
4958
- "keywords": [
4959
- "comparator",
4960
- "compare",
4961
- "equality"
4962
- ],
4963
- "support": {
4964
- "issues": "https://github.com/sebastianbergmann/comparator/issues",
4965
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
4966
- },
4967
- "funding": [
4968
- {
4969
- "url": "https://github.com/sebastianbergmann",
4970
- "type": "github"
4971
- }
4972
- ],
4973
- "time": "2020-10-26T15:49:45+00:00"
4974
- },
4975
- {
4976
- "name": "sebastian/diff",
4977
- "version": "4.0.4",
4978
- "source": {
4979
- "type": "git",
4980
- "url": "https://github.com/sebastianbergmann/diff.git",
4981
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
4982
- },
4983
- "dist": {
4984
- "type": "zip",
4985
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
4986
- "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
4987
- "shasum": ""
4988
- },
4989
- "require": {
4990
- "php": ">=7.3"
4991
- },
4992
- "require-dev": {
4993
- "phpunit/phpunit": "^9.3",
4994
- "symfony/process": "^4.2 || ^5"
4995
- },
4996
- "type": "library",
4997
- "extra": {
4998
- "branch-alias": {
4999
- "dev-master": "4.0-dev"
5000
- }
5001
- },
5002
- "autoload": {
5003
- "classmap": [
5004
- "src/"
5005
- ]
5006
- },
5007
- "notification-url": "https://packagist.org/downloads/",
5008
- "license": [
5009
- "BSD-3-Clause"
5010
- ],
5011
- "authors": [
5012
- {
5013
- "name": "Sebastian Bergmann",
5014
- "email": "sebastian@phpunit.de"
5015
- },
5016
- {
5017
- "name": "Kore Nordmann",
5018
- "email": "mail@kore-nordmann.de"
5019
- }
5020
- ],
5021
- "description": "Diff implementation",
5022
- "homepage": "https://github.com/sebastianbergmann/diff",
5023
- "keywords": [
5024
- "diff",
5025
- "udiff",
5026
- "unidiff",
5027
- "unified diff"
5028
- ],
5029
- "support": {
5030
- "issues": "https://github.com/sebastianbergmann/diff/issues",
5031
- "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
5032
- },
5033
- "funding": [
5034
- {
5035
- "url": "https://github.com/sebastianbergmann",
5036
- "type": "github"
5037
- }
5038
- ],
5039
- "time": "2020-10-26T13:10:38+00:00"
5040
- },
5041
- {
5042
- "name": "sebastian/environment",
5043
- "version": "5.1.3",
5044
- "source": {
5045
- "type": "git",
5046
- "url": "https://github.com/sebastianbergmann/environment.git",
5047
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
5048
- },
5049
- "dist": {
5050
- "type": "zip",
5051
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
5052
- "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
5053
- "shasum": ""
5054
- },
5055
- "require": {
5056
- "php": ">=7.3"
5057
- },
5058
- "require-dev": {
5059
- "phpunit/phpunit": "^9.3"
5060
- },
5061
- "suggest": {
5062
- "ext-posix": "*"
5063
- },
5064
- "type": "library",
5065
- "extra": {
5066
- "branch-alias": {
5067
- "dev-master": "5.1-dev"
5068
- }
5069
- },
5070
- "autoload": {
5071
- "classmap": [
5072
- "src/"
5073
- ]
5074
- },
5075
- "notification-url": "https://packagist.org/downloads/",
5076
- "license": [
5077
- "BSD-3-Clause"
5078
- ],
5079
- "authors": [
5080
- {
5081
- "name": "Sebastian Bergmann",
5082
- "email": "sebastian@phpunit.de"
5083
- }
5084
- ],
5085
- "description": "Provides functionality to handle HHVM/PHP environments",
5086
- "homepage": "http://www.github.com/sebastianbergmann/environment",
5087
- "keywords": [
5088
- "Xdebug",
5089
- "environment",
5090
- "hhvm"
5091
- ],
5092
- "support": {
5093
- "issues": "https://github.com/sebastianbergmann/environment/issues",
5094
- "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
5095
- },
5096
- "funding": [
5097
- {
5098
- "url": "https://github.com/sebastianbergmann",
5099
- "type": "github"
5100
- }
5101
- ],
5102
- "time": "2020-09-28T05:52:38+00:00"
5103
- },
5104
- {
5105
- "name": "sebastian/exporter",
5106
- "version": "4.0.4",
5107
- "source": {
5108
- "type": "git",
5109
- "url": "https://github.com/sebastianbergmann/exporter.git",
5110
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9"
5111
- },
5112
- "dist": {
5113
- "type": "zip",
5114
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/65e8b7db476c5dd267e65eea9cab77584d3cfff9",
5115
- "reference": "65e8b7db476c5dd267e65eea9cab77584d3cfff9",
5116
- "shasum": ""
5117
- },
5118
- "require": {
5119
- "php": ">=7.3",
5120
- "sebastian/recursion-context": "^4.0"
5121
- },
5122
- "require-dev": {
5123
- "ext-mbstring": "*",
5124
- "phpunit/phpunit": "^9.3"
5125
- },
5126
- "type": "library",
5127
- "extra": {
5128
- "branch-alias": {
5129
- "dev-master": "4.0-dev"
5130
- }
5131
- },
5132
- "autoload": {
5133
- "classmap": [
5134
- "src/"
5135
- ]
5136
- },
5137
- "notification-url": "https://packagist.org/downloads/",
5138
- "license": [
5139
- "BSD-3-Clause"
5140
- ],
5141
- "authors": [
5142
- {
5143
- "name": "Sebastian Bergmann",
5144
- "email": "sebastian@phpunit.de"
5145
- },
5146
- {
5147
- "name": "Jeff Welch",
5148
- "email": "whatthejeff@gmail.com"
5149
- },
5150
- {
5151
- "name": "Volker Dusch",
5152
- "email": "github@wallbash.com"
5153
- },
5154
- {
5155
- "name": "Adam Harvey",
5156
- "email": "aharvey@php.net"
5157
- },
5158
- {
5159
- "name": "Bernhard Schussek",
5160
- "email": "bschussek@gmail.com"
5161
- }
5162
- ],
5163
- "description": "Provides the functionality to export PHP variables for visualization",
5164
- "homepage": "https://www.github.com/sebastianbergmann/exporter",
5165
- "keywords": [
5166
- "export",
5167
- "exporter"
5168
- ],
5169
- "support": {
5170
- "issues": "https://github.com/sebastianbergmann/exporter/issues",
5171
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.4"
5172
- },
5173
- "funding": [
5174
- {
5175
- "url": "https://github.com/sebastianbergmann",
5176
- "type": "github"
5177
- }
5178
- ],
5179
- "time": "2021-11-11T14:18:36+00:00"
5180
- },
5181
- {
5182
- "name": "sebastian/finder-facade",
5183
- "version": "2.0.0",
5184
- "source": {
5185
- "type": "git",
5186
- "url": "https://github.com/sebastianbergmann/finder-facade.git",
5187
- "reference": "9d3e74b845a2ce50e19b25b5f0c2718e153bee6c"
5188
- },
5189
- "dist": {
5190
- "type": "zip",
5191
- "url": "https://api.github.com/repos/sebastianbergmann/finder-facade/zipball/9d3e74b845a2ce50e19b25b5f0c2718e153bee6c",
5192
- "reference": "9d3e74b845a2ce50e19b25b5f0c2718e153bee6c",
5193
- "shasum": ""
5194
- },
5195
- "require": {
5196
- "ext-ctype": "*",
5197
- "php": "^7.3",
5198
- "symfony/finder": "^4.1|^5.0",
5199
- "theseer/fdomdocument": "^1.6"
5200
- },
5201
- "type": "library",
5202
- "extra": {
5203
- "branch-alias": {
5204
- "dev-master": "2.0-dev"
5205
- }
5206
- },
5207
- "autoload": {
5208
- "classmap": [
5209
- "src/"
5210
- ]
5211
- },
5212
- "notification-url": "https://packagist.org/downloads/",
5213
- "license": [
5214
- "BSD-3-Clause"
5215
- ],
5216
- "authors": [
5217
- {
5218
- "name": "Sebastian Bergmann",
5219
- "email": "sebastian@phpunit.de",
5220
- "role": "lead"
5221
- }
5222
- ],
5223
- "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.",
5224
- "homepage": "https://github.com/sebastianbergmann/finder-facade",
5225
- "support": {
5226
- "issues": "https://github.com/sebastianbergmann/finder-facade/issues",
5227
- "source": "https://github.com/sebastianbergmann/finder-facade/tree/2.0.0"
5228
- },
5229
- "abandoned": true,
5230
- "time": "2020-02-08T06:07:58+00:00"
5231
- },
5232
- {
5233
- "name": "sebastian/global-state",
5234
- "version": "4.0.0",
5235
- "source": {
5236
- "type": "git",
5237
- "url": "https://github.com/sebastianbergmann/global-state.git",
5238
- "reference": "bdb1e7c79e592b8c82cb1699be3c8743119b8a72"
5239
- },
5240
- "dist": {
5241
- "type": "zip",
5242
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bdb1e7c79e592b8c82cb1699be3c8743119b8a72",
5243
- "reference": "bdb1e7c79e592b8c82cb1699be3c8743119b8a72",
5244
- "shasum": ""
5245
- },
5246
- "require": {
5247
- "php": "^7.3",
5248
- "sebastian/object-reflector": "^2.0",
5249
- "sebastian/recursion-context": "^4.0"
5250
- },
5251
- "require-dev": {
5252
- "ext-dom": "*",
5253
- "phpunit/phpunit": "^9.0"
5254
- },
5255
- "suggest": {
5256
- "ext-uopz": "*"
5257
- },
5258
- "type": "library",
5259
- "extra": {
5260
- "branch-alias": {
5261
- "dev-master": "4.0-dev"
5262
- }
5263
- },
5264
- "autoload": {
5265
- "classmap": [
5266
- "src/"
5267
- ]
5268
- },
5269
- "notification-url": "https://packagist.org/downloads/",
5270
- "license": [
5271
- "BSD-3-Clause"
5272
- ],
5273
- "authors": [
5274
- {
5275
- "name": "Sebastian Bergmann",
5276
- "email": "sebastian@phpunit.de"
5277
- }
5278
- ],
5279
- "description": "Snapshotting of global state",
5280
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
5281
- "keywords": [
5282
- "global state"
5283
- ],
5284
- "support": {
5285
- "issues": "https://github.com/sebastianbergmann/global-state/issues",
5286
- "source": "https://github.com/sebastianbergmann/global-state/tree/master"
5287
- },
5288
- "time": "2020-02-07T06:11:37+00:00"
5289
- },
5290
- {
5291
- "name": "sebastian/object-enumerator",
5292
- "version": "4.0.4",
5293
- "source": {
5294
- "type": "git",
5295
- "url": "https://github.com/sebastianbergmann/object-enumerator.git",
5296
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
5297
- },
5298
- "dist": {
5299
- "type": "zip",
5300
- "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
5301
- "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
5302
- "shasum": ""
5303
- },
5304
- "require": {
5305
- "php": ">=7.3",
5306
- "sebastian/object-reflector": "^2.0",
5307
- "sebastian/recursion-context": "^4.0"
5308
- },
5309
- "require-dev": {
5310
- "phpunit/phpunit": "^9.3"
5311
- },
5312
- "type": "library",
5313
- "extra": {
5314
- "branch-alias": {
5315
- "dev-master": "4.0-dev"
5316
- }
5317
- },
5318
- "autoload": {
5319
- "classmap": [
5320
- "src/"
5321
- ]
5322
- },
5323
- "notification-url": "https://packagist.org/downloads/",
5324
- "license": [
5325
- "BSD-3-Clause"
5326
- ],
5327
- "authors": [
5328
- {
5329
- "name": "Sebastian Bergmann",
5330
- "email": "sebastian@phpunit.de"
5331
- }
5332
- ],
5333
- "description": "Traverses array structures and object graphs to enumerate all referenced objects",
5334
- "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
5335
- "support": {
5336
- "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
5337
- "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
5338
- },
5339
- "funding": [
5340
- {
5341
- "url": "https://github.com/sebastianbergmann",
5342
- "type": "github"
5343
- }
5344
- ],
5345
- "time": "2020-10-26T13:12:34+00:00"
5346
- },
5347
- {
5348
- "name": "sebastian/object-reflector",
5349
- "version": "2.0.4",
5350
- "source": {
5351
- "type": "git",
5352
- "url": "https://github.com/sebastianbergmann/object-reflector.git",
5353
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
5354
- },
5355
- "dist": {
5356
- "type": "zip",
5357
- "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
5358
- "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
5359
- "shasum": ""
5360
- },
5361
- "require": {
5362
- "php": ">=7.3"
5363
- },
5364
- "require-dev": {
5365
- "phpunit/phpunit": "^9.3"
5366
- },
5367
- "type": "library",
5368
- "extra": {
5369
- "branch-alias": {
5370
- "dev-master": "2.0-dev"
5371
- }
5372
- },
5373
- "autoload": {
5374
- "classmap": [
5375
- "src/"
5376
- ]
5377
- },
5378
- "notification-url": "https://packagist.org/downloads/",
5379
- "license": [
5380
- "BSD-3-Clause"
5381
- ],
5382
- "authors": [
5383
- {
5384
- "name": "Sebastian Bergmann",
5385
- "email": "sebastian@phpunit.de"
5386
- }
5387
- ],
5388
- "description": "Allows reflection of object attributes, including inherited and non-public ones",
5389
- "homepage": "https://github.com/sebastianbergmann/object-reflector/",
5390
- "support": {
5391
- "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
5392
- "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
5393
- },
5394
- "funding": [
5395
- {
5396
- "url": "https://github.com/sebastianbergmann",
5397
- "type": "github"
5398
- }
5399
- ],
5400
- "time": "2020-10-26T13:14:26+00:00"
5401
- },
5402
- {
5403
- "name": "sebastian/phpcpd",
5404
- "version": "5.0.2",
5405
- "source": {
5406
- "type": "git",
5407
- "url": "https://github.com/sebastianbergmann/phpcpd.git",
5408
- "reference": "8724382966b1861df4e12db915eaed2165e10bf3"
5409
- },
5410
- "dist": {
5411
- "type": "zip",
5412
- "url": "https://api.github.com/repos/sebastianbergmann/phpcpd/zipball/8724382966b1861df4e12db915eaed2165e10bf3",
5413
- "reference": "8724382966b1861df4e12db915eaed2165e10bf3",
5414
- "shasum": ""
5415
- },
5416
- "require": {
5417
- "ext-dom": "*",
5418
- "php": "^7.3",
5419
- "phpunit/php-timer": "^3.0",
5420
- "sebastian/finder-facade": "^2.0",
5421
- "sebastian/version": "^3.0",
5422
- "symfony/console": "^4.0|^5.0"
5423
- },
5424
- "bin": [
5425
- "phpcpd"
5426
- ],
5427
- "type": "library",
5428
- "extra": {
5429
- "branch-alias": {
5430
- "dev-master": "5.0-dev"
5431
- }
5432
- },
5433
- "autoload": {
5434
- "classmap": [
5435
- "src/"
5436
- ]
5437
- },
5438
- "notification-url": "https://packagist.org/downloads/",
5439
- "license": [
5440
- "BSD-3-Clause"
5441
- ],
5442
- "authors": [
5443
- {
5444
- "name": "Sebastian Bergmann",
5445
- "email": "sebastian@phpunit.de",
5446
- "role": "lead"
5447
- }
5448
- ],
5449
- "description": "Copy/Paste Detector (CPD) for PHP code.",
5450
- "homepage": "https://github.com/sebastianbergmann/phpcpd",
5451
- "support": {
5452
- "issues": "https://github.com/sebastianbergmann/phpcpd/issues",
5453
- "source": "https://github.com/sebastianbergmann/phpcpd/tree/5.0.2"
5454
- },
5455
- "time": "2020-02-22T06:03:17+00:00"
5456
- },
5457
- {
5458
- "name": "sebastian/recursion-context",
5459
- "version": "4.0.4",
5460
- "source": {
5461
- "type": "git",
5462
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
5463
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
5464
- },
5465
- "dist": {
5466
- "type": "zip",
5467
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
5468
- "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
5469
- "shasum": ""
5470
- },
5471
- "require": {
5472
- "php": ">=7.3"
5473
- },
5474
- "require-dev": {
5475
- "phpunit/phpunit": "^9.3"
5476
- },
5477
- "type": "library",
5478
- "extra": {
5479
- "branch-alias": {
5480
- "dev-master": "4.0-dev"
5481
- }
5482
- },
5483
- "autoload": {
5484
- "classmap": [
5485
- "src/"
5486
- ]
5487
- },
5488
- "notification-url": "https://packagist.org/downloads/",
5489
- "license": [
5490
- "BSD-3-Clause"
5491
- ],
5492
- "authors": [
5493
- {
5494
- "name": "Sebastian Bergmann",
5495
- "email": "sebastian@phpunit.de"
5496
- },
5497
- {
5498
- "name": "Jeff Welch",
5499
- "email": "whatthejeff@gmail.com"
5500
- },
5501
- {
5502
- "name": "Adam Harvey",
5503
- "email": "aharvey@php.net"
5504
- }
5505
- ],
5506
- "description": "Provides functionality to recursively process PHP variables",
5507
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
5508
- "support": {
5509
- "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
5510
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
5511
- },
5512
- "funding": [
5513
- {
5514
- "url": "https://github.com/sebastianbergmann",
5515
- "type": "github"
5516
- }
5517
- ],
5518
- "time": "2020-10-26T13:17:30+00:00"
5519
- },
5520
- {
5521
- "name": "sebastian/resource-operations",
5522
- "version": "3.0.3",
5523
- "source": {
5524
- "type": "git",
5525
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
5526
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
5527
- },
5528
- "dist": {
5529
- "type": "zip",
5530
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
5531
- "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
5532
- "shasum": ""
5533
- },
5534
- "require": {
5535
- "php": ">=7.3"
5536
- },
5537
- "require-dev": {
5538
- "phpunit/phpunit": "^9.0"
5539
- },
5540
- "type": "library",
5541
- "extra": {
5542
- "branch-alias": {
5543
- "dev-master": "3.0-dev"
5544
- }
5545
- },
5546
- "autoload": {
5547
- "classmap": [
5548
- "src/"
5549
- ]
5550
- },
5551
- "notification-url": "https://packagist.org/downloads/",
5552
- "license": [
5553
- "BSD-3-Clause"
5554
- ],
5555
- "authors": [
5556
- {
5557
- "name": "Sebastian Bergmann",
5558
- "email": "sebastian@phpunit.de"
5559
- }
5560
- ],
5561
- "description": "Provides a list of PHP built-in functions that operate on resources",
5562
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
5563
- "support": {
5564
- "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
5565
- "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
5566
- },
5567
- "funding": [
5568
- {
5569
- "url": "https://github.com/sebastianbergmann",
5570
- "type": "github"
5571
- }
5572
- ],
5573
- "time": "2020-09-28T06:45:17+00:00"
5574
- },
5575
- {
5576
- "name": "sebastian/type",
5577
- "version": "2.3.4",
5578
- "source": {
5579
- "type": "git",
5580
- "url": "https://github.com/sebastianbergmann/type.git",
5581
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
5582
- },
5583
- "dist": {
5584
- "type": "zip",
5585
- "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
5586
- "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
5587
- "shasum": ""
5588
- },
5589
- "require": {
5590
- "php": ">=7.3"
5591
- },
5592
- "require-dev": {
5593
- "phpunit/phpunit": "^9.3"
5594
- },
5595
- "type": "library",
5596
- "extra": {
5597
- "branch-alias": {
5598
- "dev-master": "2.3-dev"
5599
- }
5600
- },
5601
- "autoload": {
5602
- "classmap": [
5603
- "src/"
5604
- ]
5605
- },
5606
- "notification-url": "https://packagist.org/downloads/",
5607
- "license": [
5608
- "BSD-3-Clause"
5609
- ],
5610
- "authors": [
5611
- {
5612
- "name": "Sebastian Bergmann",
5613
- "email": "sebastian@phpunit.de",
5614
- "role": "lead"
5615
- }
5616
- ],
5617
- "description": "Collection of value objects that represent the types of the PHP type system",
5618
- "homepage": "https://github.com/sebastianbergmann/type",
5619
- "support": {
5620
- "issues": "https://github.com/sebastianbergmann/type/issues",
5621
- "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
5622
- },
5623
- "funding": [
5624
- {
5625
- "url": "https://github.com/sebastianbergmann",
5626
- "type": "github"
5627
- }
5628
- ],
5629
- "time": "2021-06-15T12:49:02+00:00"
5630
- },
5631
- {
5632
- "name": "sebastian/version",
5633
- "version": "3.0.2",
5634
- "source": {
5635
- "type": "git",
5636
- "url": "https://github.com/sebastianbergmann/version.git",
5637
- "reference": "c6c1022351a901512170118436c764e473f6de8c"
5638
- },
5639
- "dist": {
5640
- "type": "zip",
5641
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
5642
- "reference": "c6c1022351a901512170118436c764e473f6de8c",
5643
- "shasum": ""
5644
- },
5645
- "require": {
5646
- "php": ">=7.3"
5647
- },
5648
- "type": "library",
5649
- "extra": {
5650
- "branch-alias": {
5651
- "dev-master": "3.0-dev"
5652
- }
5653
- },
5654
- "autoload": {
5655
- "classmap": [
5656
- "src/"
5657
- ]
5658
- },
5659
- "notification-url": "https://packagist.org/downloads/",
5660
- "license": [
5661
- "BSD-3-Clause"
5662
- ],
5663
- "authors": [
5664
- {
5665
- "name": "Sebastian Bergmann",
5666
- "email": "sebastian@phpunit.de",
5667
- "role": "lead"
5668
- }
5669
- ],
5670
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
5671
- "homepage": "https://github.com/sebastianbergmann/version",
5672
- "support": {
5673
- "issues": "https://github.com/sebastianbergmann/version/issues",
5674
- "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
5675
- },
5676
- "funding": [
5677
- {
5678
- "url": "https://github.com/sebastianbergmann",
5679
- "type": "github"
5680
- }
5681
- ],
5682
- "time": "2020-09-28T06:39:44+00:00"
5683
- },
5684
- {
5685
- "name": "softcreatr/jsonpath",
5686
- "version": "0.7.5",
5687
- "source": {
5688
- "type": "git",
5689
- "url": "https://github.com/SoftCreatR/JSONPath.git",
5690
- "reference": "008569bf80aa3584834f7890781576bc7b65afa7"
5691
- },
5692
- "dist": {
5693
- "type": "zip",
5694
- "url": "https://api.github.com/repos/SoftCreatR/JSONPath/zipball/008569bf80aa3584834f7890781576bc7b65afa7",
5695
- "reference": "008569bf80aa3584834f7890781576bc7b65afa7",
5696
- "shasum": ""
5697
- },
5698
- "require": {
5699
- "ext-json": "*",
5700
- "php": ">=7.1"
5701
- },
5702
- "replace": {
5703
- "flow/jsonpath": "*"
5704
- },
5705
- "require-dev": {
5706
- "phpunit/phpunit": ">=7.0",
5707
- "roave/security-advisories": "dev-master",
5708
- "squizlabs/php_codesniffer": "^3.5"
5709
- },
5710
- "type": "library",
5711
- "autoload": {
5712
- "psr-4": {
5713
- "Flow\\JSONPath\\": "src/"
5714
- }
5715
- },
5716
- "notification-url": "https://packagist.org/downloads/",
5717
- "license": [
5718
- "MIT"
5719
- ],
5720
- "authors": [
5721
- {
5722
- "name": "Stephen Frank",
5723
- "email": "stephen@flowsa.com",
5724
- "homepage": "https://prismaticbytes.com",
5725
- "role": "Developer"
5726
- },
5727
- {
5728
- "name": "Sascha Greuel",
5729
- "email": "hello@1-2.dev",
5730
- "homepage": "http://1-2.dev",
5731
- "role": "Developer"
5732
- }
5733
- ],
5734
- "description": "JSONPath implementation for parsing, searching and flattening arrays",
5735
- "support": {
5736
- "email": "hello@1-2.dev",
5737
- "forum": "https://github.com/SoftCreatR/JSONPath/discussions",
5738
- "issues": "https://github.com/SoftCreatR/JSONPath/issues",
5739
- "source": "https://github.com/SoftCreatR/JSONPath"
5740
- },
5741
- "funding": [
5742
- {
5743
- "url": "https://github.com/softcreatr",
5744
- "type": "github"
5745
- }
5746
- ],
5747
- "time": "2021-06-02T22:15:26+00:00"
5748
- },
5749
- {
5750
- "name": "squizlabs/php_codesniffer",
5751
- "version": "3.6.1",
5752
- "source": {
5753
- "type": "git",
5754
- "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
5755
- "reference": "f268ca40d54617c6e06757f83f699775c9b3ff2e"
5756
- },
5757
- "dist": {
5758
- "type": "zip",
5759
- "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/f268ca40d54617c6e06757f83f699775c9b3ff2e",
5760
- "reference": "f268ca40d54617c6e06757f83f699775c9b3ff2e",
5761
- "shasum": ""
5762
- },
5763
- "require": {
5764
- "ext-simplexml": "*",
5765
- "ext-tokenizer": "*",
5766
- "ext-xmlwriter": "*",
5767
- "php": ">=5.4.0"
5768
- },
5769
- "require-dev": {
5770
- "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
5771
- },
5772
- "bin": [
5773
- "bin/phpcs",
5774
- "bin/phpcbf"
5775
- ],
5776
- "type": "library",
5777
- "extra": {
5778
- "branch-alias": {
5779
- "dev-master": "3.x-dev"
5780
- }
5781
- },
5782
- "notification-url": "https://packagist.org/downloads/",
5783
- "license": [
5784
- "BSD-3-Clause"
5785
- ],
5786
- "authors": [
5787
- {
5788
- "name": "Greg Sherwood",
5789
- "role": "lead"
5790
- }
5791
- ],
5792
- "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
5793
- "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
5794
- "keywords": [
5795
- "phpcs",
5796
- "standards"
5797
- ],
5798
- "support": {
5799
- "issues": "https://github.com/squizlabs/PHP_CodeSniffer/issues",
5800
- "source": "https://github.com/squizlabs/PHP_CodeSniffer",
5801
- "wiki": "https://github.com/squizlabs/PHP_CodeSniffer/wiki"
5802
- },
5803
- "time": "2021-10-11T04:00:11+00:00"
5804
- },
5805
- {
5806
- "name": "symfony/browser-kit",
5807
- "version": "v5.4.0",
5808
- "source": {
5809
- "type": "git",
5810
- "url": "https://github.com/symfony/browser-kit.git",
5811
- "reference": "d250db364a35ba5d60626b2a6f10f2eaf2073bde"
5812
- },
5813
- "dist": {
5814
- "type": "zip",
5815
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/d250db364a35ba5d60626b2a6f10f2eaf2073bde",
5816
- "reference": "d250db364a35ba5d60626b2a6f10f2eaf2073bde",
5817
- "shasum": ""
5818
- },
5819
- "require": {
5820
- "php": ">=7.2.5",
5821
- "symfony/dom-crawler": "^4.4|^5.0|^6.0",
5822
- "symfony/polyfill-php80": "^1.16"
5823
- },
5824
- "require-dev": {
5825
- "symfony/css-selector": "^4.4|^5.0|^6.0",
5826
- "symfony/http-client": "^4.4|^5.0|^6.0",
5827
- "symfony/mime": "^4.4|^5.0|^6.0",
5828
- "symfony/process": "^4.4|^5.0|^6.0"
5829
- },
5830
- "suggest": {
5831
- "symfony/process": ""
5832
- },
5833
- "type": "library",
5834
- "autoload": {
5835
- "psr-4": {
5836
- "Symfony\\Component\\BrowserKit\\": ""
5837
- },
5838
- "exclude-from-classmap": [
5839
- "/Tests/"
5840
- ]
5841
- },
5842
- "notification-url": "https://packagist.org/downloads/",
5843
- "license": [
5844
- "MIT"
5845
- ],
5846
- "authors": [
5847
- {
5848
- "name": "Fabien Potencier",
5849
- "email": "fabien@symfony.com"
5850
- },
5851
- {
5852
- "name": "Symfony Community",
5853
- "homepage": "https://symfony.com/contributors"
5854
- }
5855
- ],
5856
- "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
5857
- "homepage": "https://symfony.com",
5858
- "support": {
5859
- "source": "https://github.com/symfony/browser-kit/tree/v5.4.0"
5860
- },
5861
- "funding": [
5862
- {
5863
- "url": "https://symfony.com/sponsor",
5864
- "type": "custom"
5865
- },
5866
- {
5867
- "url": "https://github.com/fabpot",
5868
- "type": "github"
5869
- },
5870
- {
5871
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5872
- "type": "tidelift"
5873
- }
5874
- ],
5875
- "time": "2021-10-26T22:29:18+00:00"
5876
- },
5877
- {
5878
- "name": "symfony/config",
5879
- "version": "v5.4.0",
5880
- "source": {
5881
- "type": "git",
5882
- "url": "https://github.com/symfony/config.git",
5883
- "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b"
5884
- },
5885
- "dist": {
5886
- "type": "zip",
5887
- "url": "https://api.github.com/repos/symfony/config/zipball/e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
5888
- "reference": "e39cf688c80fd79ab0a6a2d05a9facac9b2d534b",
5889
- "shasum": ""
5890
- },
5891
- "require": {
5892
- "php": ">=7.2.5",
5893
- "symfony/deprecation-contracts": "^2.1|^3",
5894
- "symfony/filesystem": "^4.4|^5.0|^6.0",
5895
- "symfony/polyfill-ctype": "~1.8",
5896
- "symfony/polyfill-php80": "^1.16",
5897
- "symfony/polyfill-php81": "^1.22"
5898
- },
5899
- "conflict": {
5900
- "symfony/finder": "<4.4"
5901
- },
5902
- "require-dev": {
5903
- "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
5904
- "symfony/finder": "^4.4|^5.0|^6.0",
5905
- "symfony/messenger": "^4.4|^5.0|^6.0",
5906
- "symfony/service-contracts": "^1.1|^2|^3",
5907
- "symfony/yaml": "^4.4|^5.0|^6.0"
5908
- },
5909
- "suggest": {
5910
- "symfony/yaml": "To use the yaml reference dumper"
5911
- },
5912
- "type": "library",
5913
- "autoload": {
5914
- "psr-4": {
5915
- "Symfony\\Component\\Config\\": ""
5916
- },
5917
- "exclude-from-classmap": [
5918
- "/Tests/"
5919
- ]
5920
- },
5921
- "notification-url": "https://packagist.org/downloads/",
5922
- "license": [
5923
- "MIT"
5924
- ],
5925
- "authors": [
5926
- {
5927
- "name": "Fabien Potencier",
5928
- "email": "fabien@symfony.com"
5929
- },
5930
- {
5931
- "name": "Symfony Community",
5932
- "homepage": "https://symfony.com/contributors"
5933
- }
5934
- ],
5935
- "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
5936
- "homepage": "https://symfony.com",
5937
- "support": {
5938
- "source": "https://github.com/symfony/config/tree/v5.4.0"
5939
- },
5940
- "funding": [
5941
- {
5942
- "url": "https://symfony.com/sponsor",
5943
- "type": "custom"
5944
- },
5945
- {
5946
- "url": "https://github.com/fabpot",
5947
- "type": "github"
5948
- },
5949
- {
5950
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
5951
- "type": "tidelift"
5952
- }
5953
- ],
5954
- "time": "2021-11-28T15:25:38+00:00"
5955
- },
5956
- {
5957
- "name": "symfony/console",
5958
- "version": "v5.1.11",
5959
- "source": {
5960
- "type": "git",
5961
- "url": "https://github.com/symfony/console.git",
5962
- "reference": "d9a267b621c5082e0a6c659d73633b6fd28a8a08"
5963
- },
5964
- "dist": {
5965
- "type": "zip",
5966
- "url": "https://api.github.com/repos/symfony/console/zipball/d9a267b621c5082e0a6c659d73633b6fd28a8a08",
5967
- "reference": "d9a267b621c5082e0a6c659d73633b6fd28a8a08",
5968
- "shasum": ""
5969
- },
5970
- "require": {
5971
- "php": ">=7.2.5",
5972
- "symfony/polyfill-mbstring": "~1.0",
5973
- "symfony/polyfill-php73": "^1.8",
5974
- "symfony/polyfill-php80": "^1.15",
5975
- "symfony/service-contracts": "^1.1|^2",
5976
- "symfony/string": "^5.1"
5977
- },
5978
- "conflict": {
5979
- "symfony/dependency-injection": "<4.4",
5980
- "symfony/dotenv": "<5.1",
5981
- "symfony/event-dispatcher": "<4.4",
5982
- "symfony/lock": "<4.4",
5983
- "symfony/process": "<4.4"
5984
- },
5985
- "provide": {
5986
- "psr/log-implementation": "1.0"
5987
- },
5988
- "require-dev": {
5989
- "psr/log": "~1.0",
5990
- "symfony/config": "^4.4|^5.0",
5991
- "symfony/dependency-injection": "^4.4|^5.0",
5992
- "symfony/event-dispatcher": "^4.4|^5.0",
5993
- "symfony/lock": "^4.4|^5.0",
5994
- "symfony/process": "^4.4|^5.0",
5995
- "symfony/var-dumper": "^4.4|^5.0"
5996
- },
5997
- "suggest": {
5998
- "psr/log": "For using the console logger",
5999
- "symfony/event-dispatcher": "",
6000
- "symfony/lock": "",
6001
- "symfony/process": ""
6002
- },
6003
- "type": "library",
6004
- "autoload": {
6005
- "psr-4": {
6006
- "Symfony\\Component\\Console\\": ""
6007
- },
6008
- "exclude-from-classmap": [
6009
- "/Tests/"
6010
- ]
6011
- },
6012
- "notification-url": "https://packagist.org/downloads/",
6013
- "license": [
6014
- "MIT"
6015
- ],
6016
- "authors": [
6017
- {
6018
- "name": "Fabien Potencier",
6019
- "email": "fabien@symfony.com"
6020
- },
6021
- {
6022
- "name": "Symfony Community",
6023
- "homepage": "https://symfony.com/contributors"
6024
- }
6025
- ],
6026
- "description": "Eases the creation of beautiful and testable command line interfaces",
6027
- "homepage": "https://symfony.com",
6028
- "support": {
6029
- "source": "https://github.com/symfony/console/tree/v5.1.11"
6030
- },
6031
- "funding": [
6032
- {
6033
- "url": "https://symfony.com/sponsor",
6034
- "type": "custom"
6035
- },
6036
- {
6037
- "url": "https://github.com/fabpot",
6038
- "type": "github"
6039
- },
6040
- {
6041
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6042
- "type": "tidelift"
6043
- }
6044
- ],
6045
- "time": "2021-01-27T10:01:46+00:00"
6046
- },
6047
- {
6048
- "name": "symfony/css-selector",
6049
- "version": "v5.4.0",
6050
- "source": {
6051
- "type": "git",
6052
- "url": "https://github.com/symfony/css-selector.git",
6053
- "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc"
6054
- },
6055
- "dist": {
6056
- "type": "zip",
6057
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
6058
- "reference": "44b933f98bb4b5220d10bed9ce5662f8c2d13dcc",
6059
- "shasum": ""
6060
- },
6061
- "require": {
6062
- "php": ">=7.2.5",
6063
- "symfony/polyfill-php80": "^1.16"
6064
- },
6065
- "type": "library",
6066
- "autoload": {
6067
- "psr-4": {
6068
- "Symfony\\Component\\CssSelector\\": ""
6069
- },
6070
- "exclude-from-classmap": [
6071
- "/Tests/"
6072
- ]
6073
- },
6074
- "notification-url": "https://packagist.org/downloads/",
6075
- "license": [
6076
- "MIT"
6077
- ],
6078
- "authors": [
6079
- {
6080
- "name": "Fabien Potencier",
6081
- "email": "fabien@symfony.com"
6082
- },
6083
- {
6084
- "name": "Jean-François Simon",
6085
- "email": "jeanfrancois.simon@sensiolabs.com"
6086
- },
6087
- {
6088
- "name": "Symfony Community",
6089
- "homepage": "https://symfony.com/contributors"
6090
- }
6091
- ],
6092
- "description": "Converts CSS selectors to XPath expressions",
6093
- "homepage": "https://symfony.com",
6094
- "support": {
6095
- "source": "https://github.com/symfony/css-selector/tree/v5.4.0"
6096
- },
6097
- "funding": [
6098
- {
6099
- "url": "https://symfony.com/sponsor",
6100
- "type": "custom"
6101
- },
6102
- {
6103
- "url": "https://github.com/fabpot",
6104
- "type": "github"
6105
- },
6106
- {
6107
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6108
- "type": "tidelift"
6109
- }
6110
- ],
6111
- "time": "2021-09-09T08:06:01+00:00"
6112
- },
6113
- {
6114
- "name": "symfony/dependency-injection",
6115
- "version": "v5.4.0",
6116
- "source": {
6117
- "type": "git",
6118
- "url": "https://github.com/symfony/dependency-injection.git",
6119
- "reference": "69c398723857bb19fdea78496cedea0f756decab"
6120
- },
6121
- "dist": {
6122
- "type": "zip",
6123
- "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/69c398723857bb19fdea78496cedea0f756decab",
6124
- "reference": "69c398723857bb19fdea78496cedea0f756decab",
6125
- "shasum": ""
6126
- },
6127
- "require": {
6128
- "php": ">=7.2.5",
6129
- "psr/container": "^1.1.1",
6130
- "symfony/deprecation-contracts": "^2.1|^3",
6131
- "symfony/polyfill-php80": "^1.16",
6132
- "symfony/polyfill-php81": "^1.22",
6133
- "symfony/service-contracts": "^1.1.6|^2"
6134
- },
6135
- "conflict": {
6136
- "ext-psr": "<1.1|>=2",
6137
- "symfony/config": "<5.3",
6138
- "symfony/finder": "<4.4",
6139
- "symfony/proxy-manager-bridge": "<4.4",
6140
- "symfony/yaml": "<4.4"
6141
- },
6142
- "provide": {
6143
- "psr/container-implementation": "1.0",
6144
- "symfony/service-implementation": "1.0|2.0"
6145
- },
6146
- "require-dev": {
6147
- "symfony/config": "^5.3|^6.0",
6148
- "symfony/expression-language": "^4.4|^5.0|^6.0",
6149
- "symfony/yaml": "^4.4|^5.0|^6.0"
6150
- },
6151
- "suggest": {
6152
- "symfony/config": "",
6153
- "symfony/expression-language": "For using expressions in service container configuration",
6154
- "symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
6155
- "symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
6156
- "symfony/yaml": ""
6157
- },
6158
- "type": "library",
6159
- "autoload": {
6160
- "psr-4": {
6161
- "Symfony\\Component\\DependencyInjection\\": ""
6162
- },
6163
- "exclude-from-classmap": [
6164
- "/Tests/"
6165
- ]
6166
- },
6167
- "notification-url": "https://packagist.org/downloads/",
6168
- "license": [
6169
- "MIT"
6170
- ],
6171
- "authors": [
6172
- {
6173
- "name": "Fabien Potencier",
6174
- "email": "fabien@symfony.com"
6175
- },
6176
- {
6177
- "name": "Symfony Community",
6178
- "homepage": "https://symfony.com/contributors"
6179
- }
6180
- ],
6181
- "description": "Allows you to standardize and centralize the way objects are constructed in your application",
6182
- "homepage": "https://symfony.com",
6183
- "support": {
6184
- "source": "https://github.com/symfony/dependency-injection/tree/v5.4.0"
6185
- },
6186
- "funding": [
6187
- {
6188
- "url": "https://symfony.com/sponsor",
6189
- "type": "custom"
6190
- },
6191
- {
6192
- "url": "https://github.com/fabpot",
6193
- "type": "github"
6194
- },
6195
- {
6196
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6197
- "type": "tidelift"
6198
- }
6199
- ],
6200
- "time": "2021-11-29T15:30:56+00:00"
6201
- },
6202
- {
6203
- "name": "symfony/deprecation-contracts",
6204
- "version": "v2.5.0",
6205
- "source": {
6206
- "type": "git",
6207
- "url": "https://github.com/symfony/deprecation-contracts.git",
6208
- "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8"
6209
- },
6210
- "dist": {
6211
- "type": "zip",
6212
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/6f981ee24cf69ee7ce9736146d1c57c2780598a8",
6213
- "reference": "6f981ee24cf69ee7ce9736146d1c57c2780598a8",
6214
- "shasum": ""
6215
- },
6216
- "require": {
6217
- "php": ">=7.1"
6218
- },
6219
- "type": "library",
6220
- "extra": {
6221
- "branch-alias": {
6222
- "dev-main": "2.5-dev"
6223
- },
6224
- "thanks": {
6225
- "name": "symfony/contracts",
6226
- "url": "https://github.com/symfony/contracts"
6227
- }
6228
- },
6229
- "autoload": {
6230
- "files": [
6231
- "function.php"
6232
- ]
6233
- },
6234
- "notification-url": "https://packagist.org/downloads/",
6235
- "license": [
6236
- "MIT"
6237
- ],
6238
- "authors": [
6239
- {
6240
- "name": "Nicolas Grekas",
6241
- "email": "p@tchwork.com"
6242
- },
6243
- {
6244
- "name": "Symfony Community",
6245
- "homepage": "https://symfony.com/contributors"
6246
- }
6247
- ],
6248
- "description": "A generic function and convention to trigger deprecation notices",
6249
- "homepage": "https://symfony.com",
6250
- "support": {
6251
- "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.0"
6252
- },
6253
- "funding": [
6254
- {
6255
- "url": "https://symfony.com/sponsor",
6256
- "type": "custom"
6257
- },
6258
- {
6259
- "url": "https://github.com/fabpot",
6260
- "type": "github"
6261
- },
6262
- {
6263
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6264
- "type": "tidelift"
6265
- }
6266
- ],
6267
- "time": "2021-07-12T14:48:14+00:00"
6268
- },
6269
- {
6270
- "name": "symfony/dom-crawler",
6271
- "version": "v5.4.0",
6272
- "source": {
6273
- "type": "git",
6274
- "url": "https://github.com/symfony/dom-crawler.git",
6275
- "reference": "5b06626e940a3ad54e573511d64d4e00dc8d0fd8"
6276
- },
6277
- "dist": {
6278
- "type": "zip",
6279
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/5b06626e940a3ad54e573511d64d4e00dc8d0fd8",
6280
- "reference": "5b06626e940a3ad54e573511d64d4e00dc8d0fd8",
6281
- "shasum": ""
6282
- },
6283
- "require": {
6284
- "php": ">=7.2.5",
6285
- "symfony/deprecation-contracts": "^2.1|^3",
6286
- "symfony/polyfill-ctype": "~1.8",
6287
- "symfony/polyfill-mbstring": "~1.0",
6288
- "symfony/polyfill-php80": "^1.16"
6289
- },
6290
- "conflict": {
6291
- "masterminds/html5": "<2.6"
6292
- },
6293
- "require-dev": {
6294
- "masterminds/html5": "^2.6",
6295
- "symfony/css-selector": "^4.4|^5.0|^6.0"
6296
- },
6297
- "suggest": {
6298
- "symfony/css-selector": ""
6299
- },
6300
- "type": "library",
6301
- "autoload": {
6302
- "psr-4": {
6303
- "Symfony\\Component\\DomCrawler\\": ""
6304
- },
6305
- "exclude-from-classmap": [
6306
- "/Tests/"
6307
- ]
6308
- },
6309
- "notification-url": "https://packagist.org/downloads/",
6310
- "license": [
6311
- "MIT"
6312
- ],
6313
- "authors": [
6314
- {
6315
- "name": "Fabien Potencier",
6316
- "email": "fabien@symfony.com"
6317
- },
6318
- {
6319
- "name": "Symfony Community",
6320
- "homepage": "https://symfony.com/contributors"
6321
- }
6322
- ],
6323
- "description": "Eases DOM navigation for HTML and XML documents",
6324
- "homepage": "https://symfony.com",
6325
- "support": {
6326
- "source": "https://github.com/symfony/dom-crawler/tree/v5.4.0"
6327
- },
6328
- "funding": [
6329
- {
6330
- "url": "https://symfony.com/sponsor",
6331
- "type": "custom"
6332
- },
6333
- {
6334
- "url": "https://github.com/fabpot",
6335
- "type": "github"
6336
- },
6337
- {
6338
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6339
- "type": "tidelift"
6340
- }
6341
- ],
6342
- "time": "2021-11-23T10:19:22+00:00"
6343
- },
6344
- {
6345
- "name": "symfony/event-dispatcher",
6346
- "version": "v5.4.0",
6347
- "source": {
6348
- "type": "git",
6349
- "url": "https://github.com/symfony/event-dispatcher.git",
6350
- "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb"
6351
- },
6352
- "dist": {
6353
- "type": "zip",
6354
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/27d39ae126352b9fa3be5e196ccf4617897be3eb",
6355
- "reference": "27d39ae126352b9fa3be5e196ccf4617897be3eb",
6356
- "shasum": ""
6357
- },
6358
- "require": {
6359
- "php": ">=7.2.5",
6360
- "symfony/deprecation-contracts": "^2.1|^3",
6361
- "symfony/event-dispatcher-contracts": "^2|^3",
6362
- "symfony/polyfill-php80": "^1.16"
6363
- },
6364
- "conflict": {
6365
- "symfony/dependency-injection": "<4.4"
6366
- },
6367
- "provide": {
6368
- "psr/event-dispatcher-implementation": "1.0",
6369
- "symfony/event-dispatcher-implementation": "2.0"
6370
- },
6371
- "require-dev": {
6372
- "psr/log": "^1|^2|^3",
6373
- "symfony/config": "^4.4|^5.0|^6.0",
6374
- "symfony/dependency-injection": "^4.4|^5.0|^6.0",
6375
- "symfony/error-handler": "^4.4|^5.0|^6.0",
6376
- "symfony/expression-language": "^4.4|^5.0|^6.0",
6377
- "symfony/http-foundation": "^4.4|^5.0|^6.0",
6378
- "symfony/service-contracts": "^1.1|^2|^3",
6379
- "symfony/stopwatch": "^4.4|^5.0|^6.0"
6380
- },
6381
- "suggest": {
6382
- "symfony/dependency-injection": "",
6383
- "symfony/http-kernel": ""
6384
- },
6385
- "type": "library",
6386
- "autoload": {
6387
- "psr-4": {
6388
- "Symfony\\Component\\EventDispatcher\\": ""
6389
- },
6390
- "exclude-from-classmap": [
6391
- "/Tests/"
6392
- ]
6393
- },
6394
- "notification-url": "https://packagist.org/downloads/",
6395
- "license": [
6396
- "MIT"
6397
- ],
6398
- "authors": [
6399
- {
6400
- "name": "Fabien Potencier",
6401
- "email": "fabien@symfony.com"
6402
- },
6403
- {
6404
- "name": "Symfony Community",
6405
- "homepage": "https://symfony.com/contributors"
6406
- }
6407
- ],
6408
- "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
6409
- "homepage": "https://symfony.com",
6410
- "support": {
6411
- "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.0"
6412
- },
6413
- "funding": [
6414
- {
6415
- "url": "https://symfony.com/sponsor",
6416
- "type": "custom"
6417
- },
6418
- {
6419
- "url": "https://github.com/fabpot",
6420
- "type": "github"
6421
- },
6422
- {
6423
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6424
- "type": "tidelift"
6425
- }
6426
- ],
6427
- "time": "2021-11-23T10:19:22+00:00"
6428
- },
6429
- {
6430
- "name": "symfony/event-dispatcher-contracts",
6431
- "version": "v2.5.0",
6432
- "source": {
6433
- "type": "git",
6434
- "url": "https://github.com/symfony/event-dispatcher-contracts.git",
6435
- "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a"
6436
- },
6437
- "dist": {
6438
- "type": "zip",
6439
- "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
6440
- "reference": "66bea3b09be61613cd3b4043a65a8ec48cfa6d2a",
6441
- "shasum": ""
6442
- },
6443
- "require": {
6444
- "php": ">=7.2.5",
6445
- "psr/event-dispatcher": "^1"
6446
- },
6447
- "suggest": {
6448
- "symfony/event-dispatcher-implementation": ""
6449
- },
6450
- "type": "library",
6451
- "extra": {
6452
- "branch-alias": {
6453
- "dev-main": "2.5-dev"
6454
- },
6455
- "thanks": {
6456
- "name": "symfony/contracts",
6457
- "url": "https://github.com/symfony/contracts"
6458
- }
6459
- },
6460
- "autoload": {
6461
- "psr-4": {
6462
- "Symfony\\Contracts\\EventDispatcher\\": ""
6463
- }
6464
- },
6465
- "notification-url": "https://packagist.org/downloads/",
6466
- "license": [
6467
- "MIT"
6468
- ],
6469
- "authors": [
6470
- {
6471
- "name": "Nicolas Grekas",
6472
- "email": "p@tchwork.com"
6473
- },
6474
- {
6475
- "name": "Symfony Community",
6476
- "homepage": "https://symfony.com/contributors"
6477
- }
6478
- ],
6479
- "description": "Generic abstractions related to dispatching event",
6480
- "homepage": "https://symfony.com",
6481
- "keywords": [
6482
- "abstractions",
6483
- "contracts",
6484
- "decoupling",
6485
- "interfaces",
6486
- "interoperability",
6487
- "standards"
6488
- ],
6489
- "support": {
6490
- "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.0"
6491
- },
6492
- "funding": [
6493
- {
6494
- "url": "https://symfony.com/sponsor",
6495
- "type": "custom"
6496
- },
6497
- {
6498
- "url": "https://github.com/fabpot",
6499
- "type": "github"
6500
- },
6501
- {
6502
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6503
- "type": "tidelift"
6504
- }
6505
- ],
6506
- "time": "2021-07-12T14:48:14+00:00"
6507
- },
6508
- {
6509
- "name": "symfony/filesystem",
6510
- "version": "v5.4.0",
6511
- "source": {
6512
- "type": "git",
6513
- "url": "https://github.com/symfony/filesystem.git",
6514
- "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01"
6515
- },
6516
- "dist": {
6517
- "type": "zip",
6518
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/731f917dc31edcffec2c6a777f3698c33bea8f01",
6519
- "reference": "731f917dc31edcffec2c6a777f3698c33bea8f01",
6520
- "shasum": ""
6521
- },
6522
- "require": {
6523
- "php": ">=7.2.5",
6524
- "symfony/polyfill-ctype": "~1.8",
6525
- "symfony/polyfill-mbstring": "~1.8",
6526
- "symfony/polyfill-php80": "^1.16"
6527
- },
6528
- "type": "library",
6529
- "autoload": {
6530
- "psr-4": {
6531
- "Symfony\\Component\\Filesystem\\": ""
6532
- },
6533
- "exclude-from-classmap": [
6534
- "/Tests/"
6535
- ]
6536
- },
6537
- "notification-url": "https://packagist.org/downloads/",
6538
- "license": [
6539
- "MIT"
6540
- ],
6541
- "authors": [
6542
- {
6543
- "name": "Fabien Potencier",
6544
- "email": "fabien@symfony.com"
6545
- },
6546
- {
6547
- "name": "Symfony Community",
6548
- "homepage": "https://symfony.com/contributors"
6549
- }
6550
- ],
6551
- "description": "Provides basic utilities for the filesystem",
6552
- "homepage": "https://symfony.com",
6553
- "support": {
6554
- "source": "https://github.com/symfony/filesystem/tree/v5.4.0"
6555
- },
6556
- "funding": [
6557
- {
6558
- "url": "https://symfony.com/sponsor",
6559
- "type": "custom"
6560
- },
6561
- {
6562
- "url": "https://github.com/fabpot",
6563
- "type": "github"
6564
- },
6565
- {
6566
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6567
- "type": "tidelift"
6568
- }
6569
- ],
6570
- "time": "2021-10-28T13:39:27+00:00"
6571
- },
6572
- {
6573
- "name": "symfony/finder",
6574
- "version": "v5.4.0",
6575
- "source": {
6576
- "type": "git",
6577
- "url": "https://github.com/symfony/finder.git",
6578
- "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590"
6579
- },
6580
- "dist": {
6581
- "type": "zip",
6582
- "url": "https://api.github.com/repos/symfony/finder/zipball/d2f29dac98e96a98be467627bd49c2efb1bc2590",
6583
- "reference": "d2f29dac98e96a98be467627bd49c2efb1bc2590",
6584
- "shasum": ""
6585
- },
6586
- "require": {
6587
- "php": ">=7.2.5",
6588
- "symfony/deprecation-contracts": "^2.1|^3",
6589
- "symfony/polyfill-php80": "^1.16"
6590
- },
6591
- "type": "library",
6592
- "autoload": {
6593
- "psr-4": {
6594
- "Symfony\\Component\\Finder\\": ""
6595
- },
6596
- "exclude-from-classmap": [
6597
- "/Tests/"
6598
- ]
6599
- },
6600
- "notification-url": "https://packagist.org/downloads/",
6601
- "license": [
6602
- "MIT"
6603
- ],
6604
- "authors": [
6605
- {
6606
- "name": "Fabien Potencier",
6607
- "email": "fabien@symfony.com"
6608
- },
6609
- {
6610
- "name": "Symfony Community",
6611
- "homepage": "https://symfony.com/contributors"
6612
- }
6613
- ],
6614
- "description": "Finds files and directories via an intuitive fluent interface",
6615
- "homepage": "https://symfony.com",
6616
- "support": {
6617
- "source": "https://github.com/symfony/finder/tree/v5.4.0"
6618
- },
6619
- "funding": [
6620
- {
6621
- "url": "https://symfony.com/sponsor",
6622
- "type": "custom"
6623
- },
6624
- {
6625
- "url": "https://github.com/fabpot",
6626
- "type": "github"
6627
- },
6628
- {
6629
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6630
- "type": "tidelift"
6631
- }
6632
- ],
6633
- "time": "2021-11-28T15:25:38+00:00"
6634
- },
6635
- {
6636
- "name": "symfony/polyfill-ctype",
6637
- "version": "v1.23.0",
6638
- "source": {
6639
- "type": "git",
6640
- "url": "https://github.com/symfony/polyfill-ctype.git",
6641
- "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
6642
- },
6643
- "dist": {
6644
- "type": "zip",
6645
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
6646
- "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
6647
- "shasum": ""
6648
- },
6649
- "require": {
6650
- "php": ">=7.1"
6651
- },
6652
- "suggest": {
6653
- "ext-ctype": "For best performance"
6654
- },
6655
- "type": "library",
6656
- "extra": {
6657
- "branch-alias": {
6658
- "dev-main": "1.23-dev"
6659
- },
6660
- "thanks": {
6661
- "name": "symfony/polyfill",
6662
- "url": "https://github.com/symfony/polyfill"
6663
- }
6664
- },
6665
- "autoload": {
6666
- "psr-4": {
6667
- "Symfony\\Polyfill\\Ctype\\": ""
6668
- },
6669
- "files": [
6670
- "bootstrap.php"
6671
- ]
6672
- },
6673
- "notification-url": "https://packagist.org/downloads/",
6674
- "license": [
6675
- "MIT"
6676
- ],
6677
- "authors": [
6678
- {
6679
- "name": "Gert de Pagter",
6680
- "email": "BackEndTea@gmail.com"
6681
- },
6682
- {
6683
- "name": "Symfony Community",
6684
- "homepage": "https://symfony.com/contributors"
6685
- }
6686
- ],
6687
- "description": "Symfony polyfill for ctype functions",
6688
- "homepage": "https://symfony.com",
6689
- "keywords": [
6690
- "compatibility",
6691
- "ctype",
6692
- "polyfill",
6693
- "portable"
6694
- ],
6695
- "support": {
6696
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
6697
- },
6698
- "funding": [
6699
- {
6700
- "url": "https://symfony.com/sponsor",
6701
- "type": "custom"
6702
- },
6703
- {
6704
- "url": "https://github.com/fabpot",
6705
- "type": "github"
6706
- },
6707
- {
6708
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6709
- "type": "tidelift"
6710
- }
6711
- ],
6712
- "time": "2021-02-19T12:13:01+00:00"
6713
- },
6714
- {
6715
- "name": "symfony/polyfill-intl-grapheme",
6716
- "version": "v1.23.1",
6717
- "source": {
6718
- "type": "git",
6719
- "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
6720
- "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
6721
- },
6722
- "dist": {
6723
- "type": "zip",
6724
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
6725
- "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
6726
- "shasum": ""
6727
- },
6728
- "require": {
6729
- "php": ">=7.1"
6730
- },
6731
- "suggest": {
6732
- "ext-intl": "For best performance"
6733
- },
6734
- "type": "library",
6735
- "extra": {
6736
- "branch-alias": {
6737
- "dev-main": "1.23-dev"
6738
- },
6739
- "thanks": {
6740
- "name": "symfony/polyfill",
6741
- "url": "https://github.com/symfony/polyfill"
6742
- }
6743
- },
6744
- "autoload": {
6745
- "psr-4": {
6746
- "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
6747
- },
6748
- "files": [
6749
- "bootstrap.php"
6750
- ]
6751
- },
6752
- "notification-url": "https://packagist.org/downloads/",
6753
- "license": [
6754
- "MIT"
6755
- ],
6756
- "authors": [
6757
- {
6758
- "name": "Nicolas Grekas",
6759
- "email": "p@tchwork.com"
6760
- },
6761
- {
6762
- "name": "Symfony Community",
6763
- "homepage": "https://symfony.com/contributors"
6764
- }
6765
- ],
6766
- "description": "Symfony polyfill for intl's grapheme_* functions",
6767
- "homepage": "https://symfony.com",
6768
- "keywords": [
6769
- "compatibility",
6770
- "grapheme",
6771
- "intl",
6772
- "polyfill",
6773
- "portable",
6774
- "shim"
6775
- ],
6776
- "support": {
6777
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
6778
- },
6779
- "funding": [
6780
- {
6781
- "url": "https://symfony.com/sponsor",
6782
- "type": "custom"
6783
- },
6784
- {
6785
- "url": "https://github.com/fabpot",
6786
- "type": "github"
6787
- },
6788
- {
6789
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6790
- "type": "tidelift"
6791
- }
6792
- ],
6793
- "time": "2021-05-27T12:26:48+00:00"
6794
- },
6795
- {
6796
- "name": "symfony/polyfill-intl-normalizer",
6797
- "version": "v1.23.0",
6798
- "source": {
6799
- "type": "git",
6800
- "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
6801
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
6802
- },
6803
- "dist": {
6804
- "type": "zip",
6805
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
6806
- "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
6807
- "shasum": ""
6808
- },
6809
- "require": {
6810
- "php": ">=7.1"
6811
- },
6812
- "suggest": {
6813
- "ext-intl": "For best performance"
6814
- },
6815
- "type": "library",
6816
- "extra": {
6817
- "branch-alias": {
6818
- "dev-main": "1.23-dev"
6819
- },
6820
- "thanks": {
6821
- "name": "symfony/polyfill",
6822
- "url": "https://github.com/symfony/polyfill"
6823
- }
6824
- },
6825
- "autoload": {
6826
- "psr-4": {
6827
- "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
6828
- },
6829
- "files": [
6830
- "bootstrap.php"
6831
- ],
6832
- "classmap": [
6833
- "Resources/stubs"
6834
- ]
6835
- },
6836
- "notification-url": "https://packagist.org/downloads/",
6837
- "license": [
6838
- "MIT"
6839
- ],
6840
- "authors": [
6841
- {
6842
- "name": "Nicolas Grekas",
6843
- "email": "p@tchwork.com"
6844
- },
6845
- {
6846
- "name": "Symfony Community",
6847
- "homepage": "https://symfony.com/contributors"
6848
- }
6849
- ],
6850
- "description": "Symfony polyfill for intl's Normalizer class and related functions",
6851
- "homepage": "https://symfony.com",
6852
- "keywords": [
6853
- "compatibility",
6854
- "intl",
6855
- "normalizer",
6856
- "polyfill",
6857
- "portable",
6858
- "shim"
6859
- ],
6860
- "support": {
6861
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
6862
- },
6863
- "funding": [
6864
- {
6865
- "url": "https://symfony.com/sponsor",
6866
- "type": "custom"
6867
- },
6868
- {
6869
- "url": "https://github.com/fabpot",
6870
- "type": "github"
6871
- },
6872
- {
6873
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6874
- "type": "tidelift"
6875
- }
6876
- ],
6877
- "time": "2021-02-19T12:13:01+00:00"
6878
- },
6879
- {
6880
- "name": "symfony/polyfill-mbstring",
6881
- "version": "v1.23.1",
6882
- "source": {
6883
- "type": "git",
6884
- "url": "https://github.com/symfony/polyfill-mbstring.git",
6885
- "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
6886
- },
6887
- "dist": {
6888
- "type": "zip",
6889
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
6890
- "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
6891
- "shasum": ""
6892
- },
6893
- "require": {
6894
- "php": ">=7.1"
6895
- },
6896
- "suggest": {
6897
- "ext-mbstring": "For best performance"
6898
- },
6899
- "type": "library",
6900
- "extra": {
6901
- "branch-alias": {
6902
- "dev-main": "1.23-dev"
6903
- },
6904
- "thanks": {
6905
- "name": "symfony/polyfill",
6906
- "url": "https://github.com/symfony/polyfill"
6907
- }
6908
- },
6909
- "autoload": {
6910
- "psr-4": {
6911
- "Symfony\\Polyfill\\Mbstring\\": ""
6912
- },
6913
- "files": [
6914
- "bootstrap.php"
6915
- ]
6916
- },
6917
- "notification-url": "https://packagist.org/downloads/",
6918
- "license": [
6919
- "MIT"
6920
- ],
6921
- "authors": [
6922
- {
6923
- "name": "Nicolas Grekas",
6924
- "email": "p@tchwork.com"
6925
- },
6926
- {
6927
- "name": "Symfony Community",
6928
- "homepage": "https://symfony.com/contributors"
6929
- }
6930
- ],
6931
- "description": "Symfony polyfill for the Mbstring extension",
6932
- "homepage": "https://symfony.com",
6933
- "keywords": [
6934
- "compatibility",
6935
- "mbstring",
6936
- "polyfill",
6937
- "portable",
6938
- "shim"
6939
- ],
6940
- "support": {
6941
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
6942
- },
6943
- "funding": [
6944
- {
6945
- "url": "https://symfony.com/sponsor",
6946
- "type": "custom"
6947
- },
6948
- {
6949
- "url": "https://github.com/fabpot",
6950
- "type": "github"
6951
- },
6952
- {
6953
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
6954
- "type": "tidelift"
6955
- }
6956
- ],
6957
- "time": "2021-05-27T12:26:48+00:00"
6958
- },
6959
- {
6960
- "name": "symfony/polyfill-php73",
6961
- "version": "v1.23.0",
6962
- "source": {
6963
- "type": "git",
6964
- "url": "https://github.com/symfony/polyfill-php73.git",
6965
- "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
6966
- },
6967
- "dist": {
6968
- "type": "zip",
6969
- "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
6970
- "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
6971
- "shasum": ""
6972
- },
6973
- "require": {
6974
- "php": ">=7.1"
6975
- },
6976
- "type": "library",
6977
- "extra": {
6978
- "branch-alias": {
6979
- "dev-main": "1.23-dev"
6980
- },
6981
- "thanks": {
6982
- "name": "symfony/polyfill",
6983
- "url": "https://github.com/symfony/polyfill"
6984
- }
6985
- },
6986
- "autoload": {
6987
- "psr-4": {
6988
- "Symfony\\Polyfill\\Php73\\": ""
6989
- },
6990
- "files": [
6991
- "bootstrap.php"
6992
- ],
6993
- "classmap": [
6994
- "Resources/stubs"
6995
- ]
6996
- },
6997
- "notification-url": "https://packagist.org/downloads/",
6998
- "license": [
6999
- "MIT"
7000
- ],
7001
- "authors": [
7002
- {
7003
- "name": "Nicolas Grekas",
7004
- "email": "p@tchwork.com"
7005
- },
7006
- {
7007
- "name": "Symfony Community",
7008
- "homepage": "https://symfony.com/contributors"
7009
- }
7010
- ],
7011
- "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
7012
- "homepage": "https://symfony.com",
7013
- "keywords": [
7014
- "compatibility",
7015
- "polyfill",
7016
- "portable",
7017
- "shim"
7018
- ],
7019
- "support": {
7020
- "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
7021
- },
7022
- "funding": [
7023
- {
7024
- "url": "https://symfony.com/sponsor",
7025
- "type": "custom"
7026
- },
7027
- {
7028
- "url": "https://github.com/fabpot",
7029
- "type": "github"
7030
- },
7031
- {
7032
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7033
- "type": "tidelift"
7034
- }
7035
- ],
7036
- "time": "2021-02-19T12:13:01+00:00"
7037
- },
7038
- {
7039
- "name": "symfony/polyfill-php80",
7040
- "version": "v1.23.1",
7041
- "source": {
7042
- "type": "git",
7043
- "url": "https://github.com/symfony/polyfill-php80.git",
7044
- "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
7045
- },
7046
- "dist": {
7047
- "type": "zip",
7048
- "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
7049
- "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
7050
- "shasum": ""
7051
- },
7052
- "require": {
7053
- "php": ">=7.1"
7054
- },
7055
- "type": "library",
7056
- "extra": {
7057
- "branch-alias": {
7058
- "dev-main": "1.23-dev"
7059
- },
7060
- "thanks": {
7061
- "name": "symfony/polyfill",
7062
- "url": "https://github.com/symfony/polyfill"
7063
- }
7064
- },
7065
- "autoload": {
7066
- "psr-4": {
7067
- "Symfony\\Polyfill\\Php80\\": ""
7068
- },
7069
- "files": [
7070
- "bootstrap.php"
7071
- ],
7072
- "classmap": [
7073
- "Resources/stubs"
7074
- ]
7075
- },
7076
- "notification-url": "https://packagist.org/downloads/",
7077
- "license": [
7078
- "MIT"
7079
- ],
7080
- "authors": [
7081
- {
7082
- "name": "Ion Bazan",
7083
- "email": "ion.bazan@gmail.com"
7084
- },
7085
- {
7086
- "name": "Nicolas Grekas",
7087
- "email": "p@tchwork.com"
7088
- },
7089
- {
7090
- "name": "Symfony Community",
7091
- "homepage": "https://symfony.com/contributors"
7092
- }
7093
- ],
7094
- "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
7095
- "homepage": "https://symfony.com",
7096
- "keywords": [
7097
- "compatibility",
7098
- "polyfill",
7099
- "portable",
7100
- "shim"
7101
- ],
7102
- "support": {
7103
- "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
7104
- },
7105
- "funding": [
7106
- {
7107
- "url": "https://symfony.com/sponsor",
7108
- "type": "custom"
7109
- },
7110
- {
7111
- "url": "https://github.com/fabpot",
7112
- "type": "github"
7113
- },
7114
- {
7115
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7116
- "type": "tidelift"
7117
- }
7118
- ],
7119
- "time": "2021-07-28T13:41:28+00:00"
7120
- },
7121
- {
7122
- "name": "symfony/polyfill-php81",
7123
- "version": "v1.23.0",
7124
- "source": {
7125
- "type": "git",
7126
- "url": "https://github.com/symfony/polyfill-php81.git",
7127
- "reference": "e66119f3de95efc359483f810c4c3e6436279436"
7128
- },
7129
- "dist": {
7130
- "type": "zip",
7131
- "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/e66119f3de95efc359483f810c4c3e6436279436",
7132
- "reference": "e66119f3de95efc359483f810c4c3e6436279436",
7133
- "shasum": ""
7134
- },
7135
- "require": {
7136
- "php": ">=7.1"
7137
- },
7138
- "type": "library",
7139
- "extra": {
7140
- "branch-alias": {
7141
- "dev-main": "1.23-dev"
7142
- },
7143
- "thanks": {
7144
- "name": "symfony/polyfill",
7145
- "url": "https://github.com/symfony/polyfill"
7146
- }
7147
- },
7148
- "autoload": {
7149
- "psr-4": {
7150
- "Symfony\\Polyfill\\Php81\\": ""
7151
- },
7152
- "files": [
7153
- "bootstrap.php"
7154
- ],
7155
- "classmap": [
7156
- "Resources/stubs"
7157
- ]
7158
- },
7159
- "notification-url": "https://packagist.org/downloads/",
7160
- "license": [
7161
- "MIT"
7162
- ],
7163
- "authors": [
7164
- {
7165
- "name": "Nicolas Grekas",
7166
- "email": "p@tchwork.com"
7167
- },
7168
- {
7169
- "name": "Symfony Community",
7170
- "homepage": "https://symfony.com/contributors"
7171
- }
7172
- ],
7173
- "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
7174
- "homepage": "https://symfony.com",
7175
- "keywords": [
7176
- "compatibility",
7177
- "polyfill",
7178
- "portable",
7179
- "shim"
7180
- ],
7181
- "support": {
7182
- "source": "https://github.com/symfony/polyfill-php81/tree/v1.23.0"
7183
- },
7184
- "funding": [
7185
- {
7186
- "url": "https://symfony.com/sponsor",
7187
- "type": "custom"
7188
- },
7189
- {
7190
- "url": "https://github.com/fabpot",
7191
- "type": "github"
7192
- },
7193
- {
7194
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7195
- "type": "tidelift"
7196
- }
7197
- ],
7198
- "time": "2021-05-21T13:25:03+00:00"
7199
- },
7200
- {
7201
- "name": "symfony/process",
7202
- "version": "v5.4.0",
7203
- "source": {
7204
- "type": "git",
7205
- "url": "https://github.com/symfony/process.git",
7206
- "reference": "5be20b3830f726e019162b26223110c8f47cf274"
7207
- },
7208
- "dist": {
7209
- "type": "zip",
7210
- "url": "https://api.github.com/repos/symfony/process/zipball/5be20b3830f726e019162b26223110c8f47cf274",
7211
- "reference": "5be20b3830f726e019162b26223110c8f47cf274",
7212
- "shasum": ""
7213
- },
7214
- "require": {
7215
- "php": ">=7.2.5",
7216
- "symfony/polyfill-php80": "^1.16"
7217
- },
7218
- "type": "library",
7219
- "autoload": {
7220
- "psr-4": {
7221
- "Symfony\\Component\\Process\\": ""
7222
- },
7223
- "exclude-from-classmap": [
7224
- "/Tests/"
7225
- ]
7226
- },
7227
- "notification-url": "https://packagist.org/downloads/",
7228
- "license": [
7229
- "MIT"
7230
- ],
7231
- "authors": [
7232
- {
7233
- "name": "Fabien Potencier",
7234
- "email": "fabien@symfony.com"
7235
- },
7236
- {
7237
- "name": "Symfony Community",
7238
- "homepage": "https://symfony.com/contributors"
7239
- }
7240
- ],
7241
- "description": "Executes commands in sub-processes",
7242
- "homepage": "https://symfony.com",
7243
- "support": {
7244
- "source": "https://github.com/symfony/process/tree/v5.4.0"
7245
- },
7246
- "funding": [
7247
- {
7248
- "url": "https://symfony.com/sponsor",
7249
- "type": "custom"
7250
- },
7251
- {
7252
- "url": "https://github.com/fabpot",
7253
- "type": "github"
7254
- },
7255
- {
7256
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7257
- "type": "tidelift"
7258
- }
7259
- ],
7260
- "time": "2021-11-28T15:25:38+00:00"
7261
- },
7262
- {
7263
- "name": "symfony/service-contracts",
7264
- "version": "v2.5.0",
7265
- "source": {
7266
- "type": "git",
7267
- "url": "https://github.com/symfony/service-contracts.git",
7268
- "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc"
7269
- },
7270
- "dist": {
7271
- "type": "zip",
7272
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
7273
- "reference": "1ab11b933cd6bc5464b08e81e2c5b07dec58b0fc",
7274
- "shasum": ""
7275
- },
7276
- "require": {
7277
- "php": ">=7.2.5",
7278
- "psr/container": "^1.1",
7279
- "symfony/deprecation-contracts": "^2.1"
7280
- },
7281
- "conflict": {
7282
- "ext-psr": "<1.1|>=2"
7283
- },
7284
- "suggest": {
7285
- "symfony/service-implementation": ""
7286
- },
7287
- "type": "library",
7288
- "extra": {
7289
- "branch-alias": {
7290
- "dev-main": "2.5-dev"
7291
- },
7292
- "thanks": {
7293
- "name": "symfony/contracts",
7294
- "url": "https://github.com/symfony/contracts"
7295
- }
7296
- },
7297
- "autoload": {
7298
- "psr-4": {
7299
- "Symfony\\Contracts\\Service\\": ""
7300
- }
7301
- },
7302
- "notification-url": "https://packagist.org/downloads/",
7303
- "license": [
7304
- "MIT"
7305
- ],
7306
- "authors": [
7307
- {
7308
- "name": "Nicolas Grekas",
7309
- "email": "p@tchwork.com"
7310
- },
7311
- {
7312
- "name": "Symfony Community",
7313
- "homepage": "https://symfony.com/contributors"
7314
- }
7315
- ],
7316
- "description": "Generic abstractions related to writing services",
7317
- "homepage": "https://symfony.com",
7318
- "keywords": [
7319
- "abstractions",
7320
- "contracts",
7321
- "decoupling",
7322
- "interfaces",
7323
- "interoperability",
7324
- "standards"
7325
- ],
7326
- "support": {
7327
- "source": "https://github.com/symfony/service-contracts/tree/v2.5.0"
7328
- },
7329
- "funding": [
7330
- {
7331
- "url": "https://symfony.com/sponsor",
7332
- "type": "custom"
7333
- },
7334
- {
7335
- "url": "https://github.com/fabpot",
7336
- "type": "github"
7337
- },
7338
- {
7339
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7340
- "type": "tidelift"
7341
- }
7342
- ],
7343
- "time": "2021-11-04T16:48:04+00:00"
7344
- },
7345
- {
7346
- "name": "symfony/string",
7347
- "version": "v5.4.0",
7348
- "source": {
7349
- "type": "git",
7350
- "url": "https://github.com/symfony/string.git",
7351
- "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d"
7352
- },
7353
- "dist": {
7354
- "type": "zip",
7355
- "url": "https://api.github.com/repos/symfony/string/zipball/9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
7356
- "reference": "9ffaaba53c61ba75a3c7a3a779051d1e9ec4fd2d",
7357
- "shasum": ""
7358
- },
7359
- "require": {
7360
- "php": ">=7.2.5",
7361
- "symfony/polyfill-ctype": "~1.8",
7362
- "symfony/polyfill-intl-grapheme": "~1.0",
7363
- "symfony/polyfill-intl-normalizer": "~1.0",
7364
- "symfony/polyfill-mbstring": "~1.0",
7365
- "symfony/polyfill-php80": "~1.15"
7366
- },
7367
- "conflict": {
7368
- "symfony/translation-contracts": ">=3.0"
7369
- },
7370
- "require-dev": {
7371
- "symfony/error-handler": "^4.4|^5.0|^6.0",
7372
- "symfony/http-client": "^4.4|^5.0|^6.0",
7373
- "symfony/translation-contracts": "^1.1|^2",
7374
- "symfony/var-exporter": "^4.4|^5.0|^6.0"
7375
- },
7376
- "type": "library",
7377
- "autoload": {
7378
- "psr-4": {
7379
- "Symfony\\Component\\String\\": ""
7380
- },
7381
- "files": [
7382
- "Resources/functions.php"
7383
- ],
7384
- "exclude-from-classmap": [
7385
- "/Tests/"
7386
- ]
7387
- },
7388
- "notification-url": "https://packagist.org/downloads/",
7389
- "license": [
7390
- "MIT"
7391
- ],
7392
- "authors": [
7393
- {
7394
- "name": "Nicolas Grekas",
7395
- "email": "p@tchwork.com"
7396
- },
7397
- {
7398
- "name": "Symfony Community",
7399
- "homepage": "https://symfony.com/contributors"
7400
- }
7401
- ],
7402
- "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
7403
- "homepage": "https://symfony.com",
7404
- "keywords": [
7405
- "grapheme",
7406
- "i18n",
7407
- "string",
7408
- "unicode",
7409
- "utf-8",
7410
- "utf8"
7411
- ],
7412
- "support": {
7413
- "source": "https://github.com/symfony/string/tree/v5.4.0"
7414
- },
7415
- "funding": [
7416
- {
7417
- "url": "https://symfony.com/sponsor",
7418
- "type": "custom"
7419
- },
7420
- {
7421
- "url": "https://github.com/fabpot",
7422
- "type": "github"
7423
- },
7424
- {
7425
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7426
- "type": "tidelift"
7427
- }
7428
- ],
7429
- "time": "2021-11-24T10:02:00+00:00"
7430
- },
7431
- {
7432
- "name": "symfony/translation",
7433
- "version": "v5.3.11",
7434
- "source": {
7435
- "type": "git",
7436
- "url": "https://github.com/symfony/translation.git",
7437
- "reference": "17a965c8f3b1b348cf15d903ac53942984561f8a"
7438
- },
7439
- "dist": {
7440
- "type": "zip",
7441
- "url": "https://api.github.com/repos/symfony/translation/zipball/17a965c8f3b1b348cf15d903ac53942984561f8a",
7442
- "reference": "17a965c8f3b1b348cf15d903ac53942984561f8a",
7443
- "shasum": ""
7444
- },
7445
- "require": {
7446
- "php": ">=7.2.5",
7447
- "symfony/deprecation-contracts": "^2.1",
7448
- "symfony/polyfill-mbstring": "~1.0",
7449
- "symfony/polyfill-php80": "^1.16",
7450
- "symfony/translation-contracts": "^2.3"
7451
- },
7452
- "conflict": {
7453
- "symfony/config": "<4.4",
7454
- "symfony/dependency-injection": "<5.0",
7455
- "symfony/http-kernel": "<5.0",
7456
- "symfony/twig-bundle": "<5.0",
7457
- "symfony/yaml": "<4.4"
7458
- },
7459
- "provide": {
7460
- "symfony/translation-implementation": "2.3"
7461
- },
7462
- "require-dev": {
7463
- "psr/log": "^1|^2|^3",
7464
- "symfony/config": "^4.4|^5.0",
7465
- "symfony/console": "^4.4|^5.0",
7466
- "symfony/dependency-injection": "^5.0",
7467
- "symfony/finder": "^4.4|^5.0",
7468
- "symfony/http-kernel": "^5.0",
7469
- "symfony/intl": "^4.4|^5.0",
7470
- "symfony/polyfill-intl-icu": "^1.21",
7471
- "symfony/service-contracts": "^1.1.2|^2",
7472
- "symfony/yaml": "^4.4|^5.0"
7473
- },
7474
- "suggest": {
7475
- "psr/log-implementation": "To use logging capability in translator",
7476
- "symfony/config": "",
7477
- "symfony/yaml": ""
7478
- },
7479
- "type": "library",
7480
- "autoload": {
7481
- "files": [
7482
- "Resources/functions.php"
7483
- ],
7484
- "psr-4": {
7485
- "Symfony\\Component\\Translation\\": ""
7486
- },
7487
- "exclude-from-classmap": [
7488
- "/Tests/"
7489
- ]
7490
- },
7491
- "notification-url": "https://packagist.org/downloads/",
7492
- "license": [
7493
- "MIT"
7494
- ],
7495
- "authors": [
7496
- {
7497
- "name": "Fabien Potencier",
7498
- "email": "fabien@symfony.com"
7499
- },
7500
- {
7501
- "name": "Symfony Community",
7502
- "homepage": "https://symfony.com/contributors"
7503
- }
7504
- ],
7505
- "description": "Provides tools to internationalize your application",
7506
- "homepage": "https://symfony.com",
7507
- "support": {
7508
- "source": "https://github.com/symfony/translation/tree/v5.3.11"
7509
- },
7510
- "funding": [
7511
- {
7512
- "url": "https://symfony.com/sponsor",
7513
- "type": "custom"
7514
- },
7515
- {
7516
- "url": "https://github.com/fabpot",
7517
- "type": "github"
7518
- },
7519
- {
7520
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7521
- "type": "tidelift"
7522
- }
7523
- ],
7524
- "time": "2021-11-04T16:37:19+00:00"
7525
- },
7526
- {
7527
- "name": "symfony/translation-contracts",
7528
- "version": "v2.5.0",
7529
- "source": {
7530
- "type": "git",
7531
- "url": "https://github.com/symfony/translation-contracts.git",
7532
- "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e"
7533
- },
7534
- "dist": {
7535
- "type": "zip",
7536
- "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/d28150f0f44ce854e942b671fc2620a98aae1b1e",
7537
- "reference": "d28150f0f44ce854e942b671fc2620a98aae1b1e",
7538
- "shasum": ""
7539
- },
7540
- "require": {
7541
- "php": ">=7.2.5"
7542
- },
7543
- "suggest": {
7544
- "symfony/translation-implementation": ""
7545
- },
7546
- "type": "library",
7547
- "extra": {
7548
- "branch-alias": {
7549
- "dev-main": "2.5-dev"
7550
- },
7551
- "thanks": {
7552
- "name": "symfony/contracts",
7553
- "url": "https://github.com/symfony/contracts"
7554
- }
7555
- },
7556
- "autoload": {
7557
- "psr-4": {
7558
- "Symfony\\Contracts\\Translation\\": ""
7559
- }
7560
- },
7561
- "notification-url": "https://packagist.org/downloads/",
7562
- "license": [
7563
- "MIT"
7564
- ],
7565
- "authors": [
7566
- {
7567
- "name": "Nicolas Grekas",
7568
- "email": "p@tchwork.com"
7569
- },
7570
- {
7571
- "name": "Symfony Community",
7572
- "homepage": "https://symfony.com/contributors"
7573
- }
7574
- ],
7575
- "description": "Generic abstractions related to translation",
7576
- "homepage": "https://symfony.com",
7577
- "keywords": [
7578
- "abstractions",
7579
- "contracts",
7580
- "decoupling",
7581
- "interfaces",
7582
- "interoperability",
7583
- "standards"
7584
- ],
7585
- "support": {
7586
- "source": "https://github.com/symfony/translation-contracts/tree/v2.5.0"
7587
- },
7588
- "funding": [
7589
- {
7590
- "url": "https://symfony.com/sponsor",
7591
- "type": "custom"
7592
- },
7593
- {
7594
- "url": "https://github.com/fabpot",
7595
- "type": "github"
7596
- },
7597
- {
7598
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7599
- "type": "tidelift"
7600
- }
7601
- ],
7602
- "time": "2021-08-17T14:20:01+00:00"
7603
- },
7604
- {
7605
- "name": "symfony/yaml",
7606
- "version": "v5.3.11",
7607
- "source": {
7608
- "type": "git",
7609
- "url": "https://github.com/symfony/yaml.git",
7610
- "reference": "226638aa877bc4104e619a15f27d8141cd6b4e4a"
7611
- },
7612
- "dist": {
7613
- "type": "zip",
7614
- "url": "https://api.github.com/repos/symfony/yaml/zipball/226638aa877bc4104e619a15f27d8141cd6b4e4a",
7615
- "reference": "226638aa877bc4104e619a15f27d8141cd6b4e4a",
7616
- "shasum": ""
7617
- },
7618
- "require": {
7619
- "php": ">=7.2.5",
7620
- "symfony/deprecation-contracts": "^2.1",
7621
- "symfony/polyfill-ctype": "~1.8"
7622
- },
7623
- "conflict": {
7624
- "symfony/console": "<4.4"
7625
- },
7626
- "require-dev": {
7627
- "symfony/console": "^4.4|^5.0"
7628
- },
7629
- "suggest": {
7630
- "symfony/console": "For validating YAML files using the lint command"
7631
- },
7632
- "bin": [
7633
- "Resources/bin/yaml-lint"
7634
- ],
7635
- "type": "library",
7636
- "autoload": {
7637
- "psr-4": {
7638
- "Symfony\\Component\\Yaml\\": ""
7639
- },
7640
- "exclude-from-classmap": [
7641
- "/Tests/"
7642
- ]
7643
- },
7644
- "notification-url": "https://packagist.org/downloads/",
7645
- "license": [
7646
- "MIT"
7647
- ],
7648
- "authors": [
7649
- {
7650
- "name": "Fabien Potencier",
7651
- "email": "fabien@symfony.com"
7652
- },
7653
- {
7654
- "name": "Symfony Community",
7655
- "homepage": "https://symfony.com/contributors"
7656
- }
7657
- ],
7658
- "description": "Loads and dumps YAML files",
7659
- "homepage": "https://symfony.com",
7660
- "support": {
7661
- "source": "https://github.com/symfony/yaml/tree/v5.3.11"
7662
- },
7663
- "funding": [
7664
- {
7665
- "url": "https://symfony.com/sponsor",
7666
- "type": "custom"
7667
- },
7668
- {
7669
- "url": "https://github.com/fabpot",
7670
- "type": "github"
7671
- },
7672
- {
7673
- "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
7674
- "type": "tidelift"
7675
- }
7676
- ],
7677
- "time": "2021-11-20T16:42:42+00:00"
7678
- },
7679
- {
7680
- "name": "theseer/fdomdocument",
7681
- "version": "1.6.6",
7682
- "source": {
7683
- "type": "git",
7684
- "url": "https://github.com/theseer/fDOMDocument.git",
7685
- "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca"
7686
- },
7687
- "dist": {
7688
- "type": "zip",
7689
- "url": "https://api.github.com/repos/theseer/fDOMDocument/zipball/6e8203e40a32a9c770bcb62fe37e68b948da6dca",
7690
- "reference": "6e8203e40a32a9c770bcb62fe37e68b948da6dca",
7691
- "shasum": ""
7692
- },
7693
- "require": {
7694
- "ext-dom": "*",
7695
- "lib-libxml": "*",
7696
- "php": ">=5.3.3"
7697
- },
7698
- "type": "library",
7699
- "autoload": {
7700
- "classmap": [
7701
- "src/"
7702
- ]
7703
- },
7704
- "notification-url": "https://packagist.org/downloads/",
7705
- "license": [
7706
- "BSD-3-Clause"
7707
- ],
7708
- "authors": [
7709
- {
7710
- "name": "Arne Blankerts",
7711
- "email": "arne@blankerts.de",
7712
- "role": "lead"
7713
- }
7714
- ],
7715
- "description": "The classes contained within this repository extend the standard DOM to use exceptions at all occasions of errors instead of PHP warnings or notices. They also add various custom methods and shortcuts for convenience and to simplify the usage of DOM.",
7716
- "homepage": "https://github.com/theseer/fDOMDocument",
7717
- "support": {
7718
- "issues": "https://github.com/theseer/fDOMDocument/issues",
7719
- "source": "https://github.com/theseer/fDOMDocument/tree/master"
7720
- },
7721
- "time": "2017-06-30T11:53:12+00:00"
7722
- },
7723
- {
7724
- "name": "theseer/tokenizer",
7725
- "version": "1.2.1",
7726
- "source": {
7727
- "type": "git",
7728
- "url": "https://github.com/theseer/tokenizer.git",
7729
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
7730
- },
7731
- "dist": {
7732
- "type": "zip",
7733
- "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
7734
- "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
7735
- "shasum": ""
7736
- },
7737
- "require": {
7738
- "ext-dom": "*",
7739
- "ext-tokenizer": "*",
7740
- "ext-xmlwriter": "*",
7741
- "php": "^7.2 || ^8.0"
7742
- },
7743
- "type": "library",
7744
- "autoload": {
7745
- "classmap": [
7746
- "src/"
7747
- ]
7748
- },
7749
- "notification-url": "https://packagist.org/downloads/",
7750
- "license": [
7751
- "BSD-3-Clause"
7752
- ],
7753
- "authors": [
7754
- {
7755
- "name": "Arne Blankerts",
7756
- "email": "arne@blankerts.de",
7757
- "role": "Developer"
7758
- }
7759
- ],
7760
- "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
7761
- "support": {
7762
- "issues": "https://github.com/theseer/tokenizer/issues",
7763
- "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
7764
- },
7765
- "funding": [
7766
- {
7767
- "url": "https://github.com/theseer",
7768
- "type": "github"
7769
- }
7770
- ],
7771
- "time": "2021-07-28T10:34:58+00:00"
7772
- },
7773
- {
7774
- "name": "voku/portable-ascii",
7775
- "version": "1.5.6",
7776
- "source": {
7777
- "type": "git",
7778
- "url": "https://github.com/voku/portable-ascii.git",
7779
- "reference": "80953678b19901e5165c56752d087fc11526017c"
7780
- },
7781
- "dist": {
7782
- "type": "zip",
7783
- "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
7784
- "reference": "80953678b19901e5165c56752d087fc11526017c",
7785
- "shasum": ""
7786
- },
7787
- "require": {
7788
- "php": ">=7.0.0"
7789
- },
7790
- "require-dev": {
7791
- "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
7792
- },
7793
- "suggest": {
7794
- "ext-intl": "Use Intl for transliterator_transliterate() support"
7795
- },
7796
- "type": "library",
7797
- "autoload": {
7798
- "psr-4": {
7799
- "voku\\": "src/voku/"
7800
- }
7801
- },
7802
- "notification-url": "https://packagist.org/downloads/",
7803
- "license": [
7804
- "MIT"
7805
- ],
7806
- "authors": [
7807
- {
7808
- "name": "Lars Moelleken",
7809
- "homepage": "http://www.moelleken.org/"
7810
- }
7811
- ],
7812
- "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
7813
- "homepage": "https://github.com/voku/portable-ascii",
7814
- "keywords": [
7815
- "ascii",
7816
- "clean",
7817
- "php"
7818
- ],
7819
- "support": {
7820
- "issues": "https://github.com/voku/portable-ascii/issues",
7821
- "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
7822
- },
7823
- "funding": [
7824
- {
7825
- "url": "https://www.paypal.me/moelleken",
7826
- "type": "custom"
7827
- },
7828
- {
7829
- "url": "https://github.com/voku",
7830
- "type": "github"
7831
- },
7832
- {
7833
- "url": "https://opencollective.com/portable-ascii",
7834
- "type": "open_collective"
7835
- },
7836
- {
7837
- "url": "https://www.patreon.com/voku",
7838
- "type": "patreon"
7839
- },
7840
- {
7841
- "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
7842
- "type": "tidelift"
7843
- }
7844
- ],
7845
- "time": "2020-11-12T00:07:28+00:00"
7846
- },
7847
- {
7848
- "name": "vria/nodiacritic",
7849
- "version": "0.1.2",
7850
- "source": {
7851
- "type": "git",
7852
- "url": "https://github.com/vria/nodiacritic.git",
7853
- "reference": "3efeb60fb2586fe3ce8ff0f3c122d380717b8b07"
7854
- },
7855
- "dist": {
7856
- "type": "zip",
7857
- "url": "https://api.github.com/repos/vria/nodiacritic/zipball/3efeb60fb2586fe3ce8ff0f3c122d380717b8b07",
7858
- "reference": "3efeb60fb2586fe3ce8ff0f3c122d380717b8b07",
7859
- "shasum": ""
7860
- },
7861
- "require": {
7862
- "php": ">=5.3.3"
7863
- },
7864
- "require-dev": {
7865
- "phpunit/phpunit": "4.8.*"
7866
- },
7867
- "type": "library",
7868
- "autoload": {
7869
- "psr-4": {
7870
- "VRia\\Utils\\": "src/"
7871
- }
7872
- },
7873
- "notification-url": "https://packagist.org/downloads/",
7874
- "license": [
7875
- "GPL-2.0"
7876
- ],
7877
- "authors": [
7878
- {
7879
- "name": "Riabchenko Vlad",
7880
- "email": "contact@vria.eu",
7881
- "homepage": "http://vria.eu"
7882
- }
7883
- ],
7884
- "description": "Tiny helper function that removes all diacritical signs from characters",
7885
- "homepage": "https://github.com/vria/nodiacritic",
7886
- "keywords": [
7887
- "accent",
7888
- "diacritic",
7889
- "filter",
7890
- "string",
7891
- "text"
7892
- ],
7893
- "support": {
7894
- "email": "contact@vria.eu",
7895
- "issues": "https://github.com/vria/nodiacritic/issues",
7896
- "source": "https://github.com/vria/nodiacritic/tree/0.1.2"
7897
- },
7898
- "time": "2016-09-17T22:03:11+00:00"
7899
- },
7900
- {
7901
- "name": "webmozart/assert",
7902
- "version": "1.10.0",
7903
- "source": {
7904
- "type": "git",
7905
- "url": "https://github.com/webmozarts/assert.git",
7906
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
7907
- },
7908
- "dist": {
7909
- "type": "zip",
7910
- "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
7911
- "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
7912
- "shasum": ""
7913
- },
7914
- "require": {
7915
- "php": "^7.2 || ^8.0",
7916
- "symfony/polyfill-ctype": "^1.8"
7917
- },
7918
- "conflict": {
7919
- "phpstan/phpstan": "<0.12.20",
7920
- "vimeo/psalm": "<4.6.1 || 4.6.2"
7921
- },
7922
- "require-dev": {
7923
- "phpunit/phpunit": "^8.5.13"
7924
- },
7925
- "type": "library",
7926
- "extra": {
7927
- "branch-alias": {
7928
- "dev-master": "1.10-dev"
7929
- }
7930
- },
7931
- "autoload": {
7932
- "psr-4": {
7933
- "Webmozart\\Assert\\": "src/"
7934
- }
7935
- },
7936
- "notification-url": "https://packagist.org/downloads/",
7937
- "license": [
7938
- "MIT"
7939
- ],
7940
- "authors": [
7941
- {
7942
- "name": "Bernhard Schussek",
7943
- "email": "bschussek@gmail.com"
7944
- }
7945
- ],
7946
- "description": "Assertions to validate method input/output with nice error messages.",
7947
- "keywords": [
7948
- "assert",
7949
- "check",
7950
- "validate"
7951
- ],
7952
- "support": {
7953
- "issues": "https://github.com/webmozarts/assert/issues",
7954
- "source": "https://github.com/webmozarts/assert/tree/1.10.0"
7955
- },
7956
- "time": "2021-03-09T10:59:23+00:00"
7957
- },
7958
- {
7959
- "name": "wp-cli/i18n-command",
7960
- "version": "v2.2.9",
7961
- "source": {
7962
- "type": "git",
7963
- "url": "https://github.com/wp-cli/i18n-command.git",
7964
- "reference": "26e171c5708060b6d7cede9af934b946f5ec3a59"
7965
- },
7966
- "dist": {
7967
- "type": "zip",
7968
- "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/26e171c5708060b6d7cede9af934b946f5ec3a59",
7969
- "reference": "26e171c5708060b6d7cede9af934b946f5ec3a59",
7970
- "shasum": ""
7971
- },
7972
- "require": {
7973
- "gettext/gettext": "^4.8",
7974
- "mck89/peast": "^1.13",
7975
- "wp-cli/wp-cli": "^2.5"
7976
- },
7977
- "require-dev": {
7978
- "wp-cli/scaffold-command": "^1.2 || ^2",
7979
- "wp-cli/wp-cli-tests": "^3.0.11"
7980
- },
7981
- "suggest": {
7982
- "ext-mbstring": "Used for calculating include/exclude matches in code extraction"
7983
- },
7984
- "type": "wp-cli-package",
7985
- "extra": {
7986
- "branch-alias": {
7987
- "dev-master": "2.x-dev"
7988
- },
7989
- "bundled": true,
7990
- "commands": [
7991
- "i18n",
7992
- "i18n make-pot",
7993
- "i18n make-json"
7994
- ]
7995
- },
7996
- "autoload": {
7997
- "psr-4": {
7998
- "WP_CLI\\I18n\\": "src/"
7999
- },
8000
- "files": [
8001
- "i18n-command.php"
8002
- ]
8003
- },
8004
- "notification-url": "https://packagist.org/downloads/",
8005
- "license": [
8006
- "MIT"
8007
- ],
8008
- "authors": [
8009
- {
8010
- "name": "Pascal Birchler",
8011
- "homepage": "https://pascalbirchler.com/"
8012
- }
8013
- ],
8014
- "description": "Provides internationalization tools for WordPress projects.",
8015
- "homepage": "https://github.com/wp-cli/i18n-command",
8016
- "support": {
8017
- "issues": "https://github.com/wp-cli/i18n-command/issues",
8018
- "source": "https://github.com/wp-cli/i18n-command/tree/v2.2.9"
8019
- },
8020
- "time": "2021-07-20T21:25:54+00:00"
8021
- },
8022
- {
8023
- "name": "wp-cli/mustangostang-spyc",
8024
- "version": "0.6.3",
8025
- "source": {
8026
- "type": "git",
8027
- "url": "https://github.com/wp-cli/spyc.git",
8028
- "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7"
8029
- },
8030
- "dist": {
8031
- "type": "zip",
8032
- "url": "https://api.github.com/repos/wp-cli/spyc/zipball/6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7",
8033
- "reference": "6aa0b4da69ce9e9a2c8402dab8d43cf32c581cc7",
8034
- "shasum": ""
8035
- },
8036
- "require": {
8037
- "php": ">=5.3.1"
8038
- },
8039
- "require-dev": {
8040
- "phpunit/phpunit": "4.3.*@dev"
8041
- },
8042
- "type": "library",
8043
- "extra": {
8044
- "branch-alias": {
8045
- "dev-master": "0.5.x-dev"
8046
- }
8047
- },
8048
- "autoload": {
8049
- "psr-4": {
8050
- "Mustangostang\\": "src/"
8051
- },
8052
- "files": [
8053
- "includes/functions.php"
8054
- ]
8055
- },
8056
- "notification-url": "https://packagist.org/downloads/",
8057
- "license": [
8058
- "MIT"
8059
- ],
8060
- "authors": [
8061
- {
8062
- "name": "mustangostang",
8063
- "email": "vlad.andersen@gmail.com"
8064
- }
8065
- ],
8066
- "description": "A simple YAML loader/dumper class for PHP (WP-CLI fork)",
8067
- "homepage": "https://github.com/mustangostang/spyc/",
8068
- "support": {
8069
- "source": "https://github.com/wp-cli/spyc/tree/autoload"
8070
- },
8071
- "time": "2017-04-25T11:26:20+00:00"
8072
- },
8073
- {
8074
- "name": "wp-cli/php-cli-tools",
8075
- "version": "v0.11.13",
8076
- "source": {
8077
- "type": "git",
8078
- "url": "https://github.com/wp-cli/php-cli-tools.git",
8079
- "reference": "a2866855ac1abc53005c102e901553ad5772dc04"
8080
- },
8081
- "dist": {
8082
- "type": "zip",
8083
- "url": "https://api.github.com/repos/wp-cli/php-cli-tools/zipball/a2866855ac1abc53005c102e901553ad5772dc04",
8084
- "reference": "a2866855ac1abc53005c102e901553ad5772dc04",
8085
- "shasum": ""
8086
- },
8087
- "require": {
8088
- "php": ">= 5.3.0"
8089
- },
8090
- "type": "library",
8091
- "autoload": {
8092
- "psr-0": {
8093
- "cli": "lib/"
8094
- },
8095
- "files": [
8096
- "lib/cli/cli.php"
8097
- ]
8098
- },
8099
- "notification-url": "https://packagist.org/downloads/",
8100
- "license": [
8101
- "MIT"
8102
- ],
8103
- "authors": [
8104
- {
8105
- "name": "Daniel Bachhuber",
8106
- "email": "daniel@handbuilt.co",
8107
- "role": "Maintainer"
8108
- },
8109
- {
8110
- "name": "James Logsdon",
8111
- "email": "jlogsdon@php.net",
8112
- "role": "Developer"
8113
- }
8114
- ],
8115
- "description": "Console utilities for PHP",
8116
- "homepage": "http://github.com/wp-cli/php-cli-tools",
8117
- "keywords": [
8118
- "cli",
8119
- "console"
8120
- ],
8121
- "support": {
8122
- "issues": "https://github.com/wp-cli/php-cli-tools/issues",
8123
- "source": "https://github.com/wp-cli/php-cli-tools/tree/v0.11.13"
8124
- },
8125
- "time": "2021-07-01T15:08:16+00:00"
8126
- },
8127
- {
8128
- "name": "wp-cli/wp-cli",
8129
- "version": "v2.5.0",
8130
- "source": {
8131
- "type": "git",
8132
- "url": "https://github.com/wp-cli/wp-cli.git",
8133
- "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48"
8134
- },
8135
- "dist": {
8136
- "type": "zip",
8137
- "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/0bcf0c54f4d35685211d435e25219cc7acbe6d48",
8138
- "reference": "0bcf0c54f4d35685211d435e25219cc7acbe6d48",
8139
- "shasum": ""
8140
- },
8141
- "require": {
8142
- "ext-curl": "*",
8143
- "mustache/mustache": "~2.13",
8144
- "php": "^5.6 || ^7.0 || ^8.0",
8145
- "rmccue/requests": "^1.8",
8146
- "symfony/finder": ">2.7",
8147
- "wp-cli/mustangostang-spyc": "^0.6.3",
8148
- "wp-cli/php-cli-tools": "~0.11.2"
8149
- },
8150
- "require-dev": {
8151
- "roave/security-advisories": "dev-master",
8152
- "wp-cli/db-command": "^1.3 || ^2",
8153
- "wp-cli/entity-command": "^1.2 || ^2",
8154
- "wp-cli/extension-command": "^1.1 || ^2",
8155
- "wp-cli/package-command": "^1 || ^2",
8156
- "wp-cli/wp-cli-tests": "^3.0.7"
8157
- },
8158
- "suggest": {
8159
- "ext-readline": "Include for a better --prompt implementation",
8160
- "ext-zip": "Needed to support extraction of ZIP archives when doing downloads or updates"
8161
- },
8162
- "bin": [
8163
- "bin/wp",
8164
- "bin/wp.bat"
8165
- ],
8166
- "type": "library",
8167
- "extra": {
8168
- "branch-alias": {
8169
- "dev-master": "2.5.x-dev"
8170
- }
8171
- },
8172
- "autoload": {
8173
- "psr-0": {
8174
- "WP_CLI\\": "php/"
8175
- },
8176
- "classmap": [
8177
- "php/class-wp-cli.php",
8178
- "php/class-wp-cli-command.php"
8179
- ]
8180
- },
8181
- "notification-url": "https://packagist.org/downloads/",
8182
- "license": [
8183
- "MIT"
8184
- ],
8185
- "description": "WP-CLI framework",
8186
- "homepage": "https://wp-cli.org",
8187
- "keywords": [
8188
- "cli",
8189
- "wordpress"
8190
- ],
8191
- "support": {
8192
- "docs": "https://make.wordpress.org/cli/handbook/",
8193
- "issues": "https://github.com/wp-cli/wp-cli/issues",
8194
- "source": "https://github.com/wp-cli/wp-cli"
8195
- },
8196
- "time": "2021-05-14T13:44:51+00:00"
8197
- },
8198
- {
8199
- "name": "zordius/lightncandy",
8200
- "version": "v1.2.6",
8201
- "source": {
8202
- "type": "git",
8203
- "url": "https://github.com/zordius/lightncandy.git",
8204
- "reference": "b451f73e8b5c73e62e365997ba3c993a0376b72a"
8205
- },
8206
- "dist": {
8207
- "type": "zip",
8208
- "url": "https://api.github.com/repos/zordius/lightncandy/zipball/b451f73e8b5c73e62e365997ba3c993a0376b72a",
8209
- "reference": "b451f73e8b5c73e62e365997ba3c993a0376b72a",
8210
- "shasum": ""
8211
- },
8212
- "require": {
8213
- "php": ">=7.1.0"
8214
- },
8215
- "require-dev": {
8216
- "phpunit/phpunit": ">=7"
8217
- },
8218
- "type": "library",
8219
- "extra": {
8220
- "branch-alias": {
8221
- "dev-master": "1.2.5-dev"
8222
- }
8223
- },
8224
- "autoload": {
8225
- "psr-4": {
8226
- "LightnCandy\\": "src"
8227
- }
8228
- },
8229
- "notification-url": "https://packagist.org/downloads/",
8230
- "license": [
8231
- "MIT"
8232
- ],
8233
- "authors": [
8234
- {
8235
- "name": "Zordius Chen",
8236
- "email": "zordius@gmail.com"
8237
- }
8238
- ],
8239
- "description": "An extremely fast PHP implementation of handlebars ( http://handlebarsjs.com/ ) and mustache ( http://mustache.github.io/ ).",
8240
- "homepage": "https://github.com/zordius/lightncandy",
8241
- "keywords": [
8242
- "handlebars",
8243
- "logicless",
8244
- "mustache",
8245
- "php",
8246
- "template"
8247
- ],
8248
- "support": {
8249
- "issues": "https://github.com/zordius/lightncandy/issues",
8250
- "source": "https://github.com/zordius/lightncandy/tree/v1.2.6"
8251
- },
8252
- "time": "2021-07-11T04:52:41+00:00"
8253
- }
8254
- ],
8255
- "aliases": [],
8256
- "minimum-stability": "dev",
8257
- "stability-flags": [],
8258
- "prefer-stable": true,
8259
- "prefer-lowest": false,
8260
- "platform": {
8261
- "php": ">=5.6.20"
8262
- },
8263
- "platform-dev": [],
8264
- "plugin-api-version": "2.1.0"
8265
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/publishpress/wordpress-reviews/phpcs.xml.dist DELETED
@@ -1,15 +0,0 @@
1
- <?xml version="1.0"?>
2
- <ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer"
3
- xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/squizlabs/PHP_CodeSniffer/master/phpcs.xsd">
4
- <description>The coding standard for PublishPress Authors.</description>
5
-
6
- <file>ReviewsController.php</file>
7
-
8
- <arg name="basepath" value="."/>
9
- <arg name="colors"/>
10
- <arg name="parallel" value="75"/>
11
- <arg value="np"/>
12
-
13
- <!-- Include the whole PEAR standard -->
14
- <rule ref="PSR12"/>
15
- </ruleset>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
views/bulk-edit.php CHANGED
@@ -73,30 +73,29 @@ $minute = $defaults['minute'];
73
  <label>
74
  <span class="screen-reader-text"><?php
75
  esc_html_e('Day', 'post-expirator'); ?></span>
76
- <input name="expirationdate_day" placeholder="<?php
77
- echo esc_attr($day); ?>" value="" size="2"
78
  maxlength="2" autocomplete="off" type="text">
79
  </label>,
80
  <label>
81
  <span class="screen-reader-text"><?php
82
  esc_html_e('Year', 'post-expirator'); ?></span>
83
- <input name="expirationdate_year" placeholder="<?php
84
- echo esc_attr($year); ?>" value="" size="4"
85
  maxlength="4" autocomplete="off" type="text">
86
  </label> @
87
  <label>
88
  <span class="screen-reader-text"><?php
89
  esc_html_e('Hour', 'post-expirator'); ?></span>
90
- <input name="expirationdate_hour" placeholder="<?php
91
- echo esc_attr($hour); ?>" value="" size="2"
92
  maxlength="2" autocomplete="off" type="text">
93
  </label> :
94
  <label>
95
  <span class="screen-reader-text"><?php
96
  esc_html_e('Minute', 'post-expirator'); ?></span>
97
- <input name="expirationdate_minute" placeholder="<?php
98
- echo esc_attr($minute); ?>" value=""
99
- size="2" maxlength="2" autocomplete="off" type="text">
100
  </label>
101
 
102
  <?php
73
  <label>
74
  <span class="screen-reader-text"><?php
75
  esc_html_e('Day', 'post-expirator'); ?></span>
76
+ <input name="expirationdate_day" required value="<?php
77
+ echo esc_attr($day); ?>" size="2"
78
  maxlength="2" autocomplete="off" type="text">
79
  </label>,
80
  <label>
81
  <span class="screen-reader-text"><?php
82
  esc_html_e('Year', 'post-expirator'); ?></span>
83
+ <input name="expirationdate_year" required value="<?php
84
+ echo esc_attr($year); ?>" size="4"
85
  maxlength="4" autocomplete="off" type="text">
86
  </label> @
87
  <label>
88
  <span class="screen-reader-text"><?php
89
  esc_html_e('Hour', 'post-expirator'); ?></span>
90
+ <input name="expirationdate_hour" required value="<?php
91
+ echo esc_attr($hour); ?>" size="2"
92
  maxlength="2" autocomplete="off" type="text">
93
  </label> :
94
  <label>
95
  <span class="screen-reader-text"><?php
96
  esc_html_e('Minute', 'post-expirator'); ?></span>
97
+ <input name="expirationdate_minute" required value="<?php
98
+ echo esc_attr($minute); ?>" size="2" maxlength="2" autocomplete="off" type="text">
 
99
  </label>
100
 
101
  <?php
views/classic-metabox.php CHANGED
@@ -139,6 +139,7 @@ echo empty($enabled) ? 'none' : 'flex'; ?>">
139
  $walker = new Walker_PostExpirator_Category_Checklist();
140
  $taxonomies = get_object_taxonomies($post->post_type, 'object');
141
  $taxonomies = wp_filter_object_list($taxonomies, array('hierarchical' => true));
 
142
  if (sizeof($taxonomies) === 0) {
143
  echo '<p>' . esc_html__(
144
  'You must assign a heirarchical taxonomy to this post type to use this feature.',
139
  $walker = new Walker_PostExpirator_Category_Checklist();
140
  $taxonomies = get_object_taxonomies($post->post_type, 'object');
141
  $taxonomies = wp_filter_object_list($taxonomies, array('hierarchical' => true));
142
+
143
  if (sizeof($taxonomies) === 0) {
144
  echo '<p>' . esc_html__(
145
  'You must assign a heirarchical taxonomy to this post type to use this feature.',
views/menu-defaults.php CHANGED
@@ -135,21 +135,13 @@ defined('ABSPATH') or die('Direct access not allowed.');
135
  esc_html_e('Taxonomy (hierarchical)', 'post-expirator'); ?></label></th>
136
  <td>
137
  <?php
138
- echo wp_kses(
139
- _postexpirator_taxonomy(
140
  [
141
  'type' => $type,
142
  'name' => 'expirationdate_taxonomy-' . $type,
143
  'selected' => $defaults['taxonomy']
144
  ]
145
- ),
146
- [
147
- 'select' => [],
148
- 'option' => [],
149
- 'p' => [],
150
-
151
- ]
152
- );
153
  ?>
154
  </td>
155
  </tr>
135
  esc_html_e('Taxonomy (hierarchical)', 'post-expirator'); ?></label></th>
136
  <td>
137
  <?php
138
+ echo _postexpirator_taxonomy(
 
139
  [
140
  'type' => $type,
141
  'name' => 'expirationdate_taxonomy-' . $type,
142
  'selected' => $defaults['taxonomy']
143
  ]
144
+ );
 
 
 
 
 
 
 
145
  ?>
146
  </td>
147
  </tr>