Flexible Shipping for WooCommerce - Version 3.6.4

Version Description

  • 2019-08-21 =
  • Remove connect shutdown notice
  • Removed Connect Sign up ability in shipping method settings
  • Changed label for Calculation Method to Rules Calculation on shipping method settings
Download this release

Release Info

Developer jablonowski
Plugin Icon 128x128 Flexible Shipping for WooCommerce
Version 3.6.4
Comparing to
See all releases

Code changes from version 3.6.3 to 3.6.4

classes/class-flexible-shipping-connect-shutdown-notice.php DELETED
@@ -1,56 +0,0 @@
1
- <?php
2
- /**
3
- * Connect shutdown notice.
4
- *
5
- * @package Flexible Shipping
6
- */
7
-
8
- use WPDesk\Notice\Notice;
9
- use WPDesk\PluginBuilder\Plugin\Hookable;
10
-
11
- /**
12
- * Shows connect shutdown notice.
13
- */
14
- class Flexible_Shipping_Connect_Shutdown_Notice implements Hookable {
15
-
16
- /**
17
- * Connect connection.
18
- *
19
- * @var WPDesk_Flexible_Shipping_SaaS_Connection
20
- */
21
- private $connection;
22
-
23
- /**
24
- * Flexible_Shipping_Connect_Shutdown_Notice constructor.
25
- *
26
- * @param WPDesk_Flexible_Shipping_SaaS_Connection $connection .
27
- */
28
- public function __construct( WPDesk_Flexible_Shipping_SaaS_Connection $connection ) {
29
- $this->connection = $connection;
30
- }
31
-
32
- /**
33
- * Init hooks (actions and filters).
34
- */
35
- public function hooks() {
36
- add_action( 'admin_init', array( $this, 'maybe_show_connect_notice' ) );
37
- }
38
-
39
- /**
40
- * Maybe show connection shutdown notice.
41
- */
42
- public function maybe_show_connect_notice() {
43
- if ( $this->connection->is_connected() ) {
44
- new Notice(
45
- sprintf(
46
- // Translators: link.
47
- __( 'Notice! We will shut down Connect on 22 August 2019! %1$sRead more →%2$s', 'flexible-shipping' ),
48
- '<a href="https://wpde.sk/connect-shut-down" target="_blank">',
49
- '</a>'
50
- ),
51
- Notice::NOTICE_TYPE_ERROR
52
- );
53
- }
54
- }
55
-
56
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/class-flexible-shipping-plugin.php CHANGED
@@ -172,8 +172,6 @@ class Flexible_Shipping_Plugin extends AbstractPlugin implements HookableCollect
172
 
173
  $this->add_hookable( new WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data() );
174
 
175
- $this->add_hookable( new Flexible_Shipping_Connect_Shutdown_Notice( $connection ) );
176
-
177
  }
178
 
179
  /**
172
 
173
  $this->add_hookable( new WPDesk_Flexible_Shipping_Method_Created_Tracker_Deactivation_Data() );
174
 
 
 
175
  }
176
 
177
  /**
classes/table-rate/settings/shipping-method-form.php CHANGED
@@ -1,15 +1,22 @@
1
  <?php
 
 
 
 
 
2
 
3
- if ( ! defined( 'ABSPATH' ) ) exit;
 
 
4
 
5
  /**
6
  * Settings for flexible shipment, shipment method
7
  */
8
 
9
- $shipping_classes = array();
10
  $shipping_classes['0'] = __( 'Select shipment class', 'flexible-shipping' );
11
  foreach ( WC()->shipping->get_shipping_classes() as $shipping_class ) {
12
- $shipping_classes[$shipping_class->term_id] = $shipping_class->name;
13
  }
14
 
15
  $base_location = wc_get_base_location();
@@ -22,35 +29,20 @@ $integrations = '';
22
 
23
  switch ( $base_location['country'] ) {
24
  case 'PL':
25
- $integrations = __( 'Integrate with DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu.', 'flexible-shipping' ) . '&nbsp;&nbsp;' . sprintf( __( '%sAdd integrations%s', 'flexible-shipping' ), '<a class="button button-primary" href="https://www.wpdesk.pl/kategoria-produktu/wysylka/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=&utm_content=fs-shipping-integrations" target="_blank">', ' &rarr;</a>' );
 
 
26
  break;
27
- case 'GB':
28
- $integrations = __( 'Integrate with DPD.', 'flexible-shipping' ) . '&nbsp;&nbsp;' . sprintf( __( '%sAdd integration%s', 'flexible-shipping' ), '<a class="button button-primary" href="https://flexibleshipping.com/table-rate/?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=&utm_content=fs-shipping-integrations" target="_blank">', ' &rarr;</a>' );
 
 
29
  break;
30
- default:
31
- if ( ! $saas_connection->is_connected() ) {
32
- $integrations = sprintf(
33
- // Translators: URLs.
34
- __( 'Ship your orders faster with %1$sFlexible Shipping Connect%2$s%3$s%4$sSign up now!%5$s', 'flexible-shipping' ),
35
- '<a target="_blank" href="' . $platform_links->add_utm(
36
- $platform_links->get_connect(),
37
- 'fs-shipping-integrations',
38
- 'flexible-shipping',
39
- 'link',
40
- 'user-site',
41
- ''
42
- ) . '">',
43
- '</a>',
44
- '&nbsp;&nbsp;',
45
- '<a class="button button-primary" href="' . admin_url( 'admin.php?page=' . WPDesk_Flexible_Shipping_SaaS_User_Registration::REGISTER_PAGE_SLUG ) . '" target="_blank">'
46
- , '</a>'
47
- );
48
- }
49
  }
50
 
51
  $integrations_tip = $integrations ? false : true;
52
 
53
- if ( !isset( $shipping_method['method_free_shipping_label'] ) ) {
54
  $shipping_method['method_free_shipping_label'] = __( 'Free', 'flexible-shipping' );
55
  }
56
 
@@ -61,85 +53,85 @@ if ( empty( $shipping_method['method_integration'] ) ) {
61
  }
62
 
63
  $method_free_shipping = '';
64
- if ( isset( $shipping_method['method_free_shipping'] ) && $shipping_method['method_free_shipping'] != '' ) {
65
  $method_free_shipping = floatval( $shipping_method['method_free_shipping'] );
66
  }
67
 
68
  $settings = array(
69
- 'method_enabled' => array(
70
- 'title' => __( 'Enable/Disable', 'flexible-shipping' ),
71
- 'type' => 'checkbox',
72
- 'default' => $shipping_method['method_enabled'],
73
- 'label' => __( 'Enable this shipment method', 'flexible-shipping' )
74
  ),
75
- 'method_title' => array(
76
- 'title' => __( 'Method Title', 'flexible-shipping' ),
77
- 'type' => 'text',
78
- 'description' => __( 'This controls the title which the user sees during checkout.', 'flexible-shipping' ),
79
- 'default' => __( 'Flexible Shipping', 'flexible-shipping' ),
80
- 'desc_tip' => true,
81
  'default' => $shipping_method['method_title'],
82
- 'custom_attributes' => array('required' => true)
83
  ),
84
- 'method_description' => array(
85
- 'title' => __( 'Method Description', 'flexible-shipping' ),
86
- 'type' => 'text',
87
- 'description' => __( 'This controls method description which the user sees during checkout.', 'flexible-shipping' ),
88
- 'default' => '',
89
- 'desc_tip' => true,
90
- 'default' => $shipping_method['method_description'],
91
  ),
92
- array(
93
- 'title' => '',
94
- 'type' => 'title',
95
- 'description' => '',
96
- ),
97
- 'method_free_shipping' => array(
98
- 'title' => __( 'Free Shipping', 'flexible-shipping' ),
99
- 'type' => 'price',
100
- 'default' => $method_free_shipping,
101
- 'description' => __( 'Enter a minimum order amount for free shipment. This will override the costs configured below.', 'flexible-shipping' ),
102
- 'desc_tip' => true
103
  ),
104
- 'method_free_shipping_label' => array(
105
- 'title' => __( 'Free Shipping Label', 'flexible-shipping' ),
106
- 'type' => 'text',
107
- 'default' => $shipping_method['method_free_shipping_label'],
108
- 'description' => __( 'Enter additional label for shipment when free shipment available.', 'flexible-shipping' ),
109
- 'desc_tip' => true
110
  ),
111
- array(
112
- 'title' => '',
113
- 'type' => 'title',
114
- 'description' => '',
115
- ),
116
- 'method_calculation_method' => array(
117
- 'title' => __( 'Calculation Method', 'flexible-shipping' ),
118
- 'type' => 'select',
119
- 'description' => __( 'Select how rules will be calculated. If you choose "sum" the rules order is important.', 'flexible-shipping' ),
120
- 'default' => $shipping_method['method_calculation_method'],
121
- 'desc_tip' => true,
122
- 'options' => array( 'sum' => __( 'Sum', 'flexible-shipping' ) )
123
  ),
124
- 'method_visibility' => array(
125
- 'title' => __( 'Visibility', 'flexible-shipping' ),
126
- 'type' => 'checkbox',
127
- 'default' => $shipping_method['method_visibility'],
128
- 'label' => __( 'Show only for logged in users', 'flexible-shipping' )
129
  ),
130
- 'method_default' => array(
131
- 'title' => __( 'Default', 'flexible-shipping' ),
132
- 'type' => 'checkbox',
133
- 'default' => $shipping_method['method_default'],
134
- 'label' => __( 'Check the box to set this option as the default selected choice on the cart page.', 'flexible-shipping' )
 
 
135
  ),
136
- 'method_integration' => array(
137
- 'title' => __( 'Integration', 'flexible-shipping' ),
138
- 'type' => 'select',
139
- 'description' => __( 'Select integration. ' , 'flexible-shipping' ) . $integrations,
140
- 'desc_tip' => $integrations_tip,
141
- 'default' => $shipping_method['method_integration'],
142
- 'options' => apply_filters( 'flexible_shipping_integration_options' , array( '' => __( 'None', 'flexible-shipping' ) ) )
 
 
 
 
 
 
 
 
 
 
 
 
143
  ),
144
  );
145
 
@@ -150,34 +142,35 @@ if ( isset( $settings['method_max_cost'] ) ) {
150
  }
151
 
152
  $settings['method_rules'] = array(
153
- 'title' => __( 'Rules', 'flexible-shipping' ),
154
- 'type' => 'shipping_rules',
155
- 'default' => isset( $shipping_method['method_rules'] ) ? $shipping_method['method_rules'] : array(),
156
- 'method_title' => $shipping_method['method_title'],
157
  );
158
 
159
  if ( version_compare( WC()->version, '2.6' ) < 0 ) {
160
  unset( $settings['method_free_shipping_label'] );
161
  }
162
 
163
- if ( class_exists('WC_Shipping_Zones1') ) {
164
- $shipping_zones = WC_Shipping_Zones::get_zones();
165
  $shipping_zones_options = array();
166
  foreach ( $shipping_zones as $shipping_zone ) {
167
- $shipping_zones_options[$shipping_zone['zone_id']] = $shipping_zone['zone_name'];
168
  }
169
  $settings_with_zones = array();
170
  foreach ( $settings as $key => $setting ) {
171
- $settings_with_zones[$key] = $setting;
172
- if ( $key == 'method_title' ) {
173
  $settings_with_zones['method_shipping_zone'] = array(
174
- 'title' => __( 'Shipping Zone', 'flexible-shipping' ),
175
- 'type' => 'select',
176
- 'default' => $shipping_method['method_shipping_zone'],
177
- 'options' => $shipping_zones_options,
178
  );
179
  }
180
  }
 
181
  return $settings_with_zones;
182
  }
183
 
@@ -185,6 +178,7 @@ $docs_link = get_locale() === 'pl_PL' ? 'https://www.wpdesk.pl/docs/flexible-shi
185
 
186
  $docs_link .= '?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=configure-shipment-methods&utm_content=fs-shippingzone-addnew-seehow';
187
 
188
- echo '<p>' . sprintf( __( 'See how to %sconfigure shipment methods%s.', 'flexible-shipping' ), '<a href="' . $docs_link . '" target="_blank">', '</a>' ) . '</p>';
 
189
 
190
  return $settings;
1
  <?php
2
+ /**
3
+ * Shipping method settings.
4
+ *
5
+ * @package Flexible Shipping.
6
+ */
7
 
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit;
10
+ }
11
 
12
  /**
13
  * Settings for flexible shipment, shipment method
14
  */
15
 
16
+ $shipping_classes = array();
17
  $shipping_classes['0'] = __( 'Select shipment class', 'flexible-shipping' );
18
  foreach ( WC()->shipping->get_shipping_classes() as $shipping_class ) {
19
+ $shipping_classes[ $shipping_class->term_id ] = $shipping_class->name;
20
  }
21
 
22
  $base_location = wc_get_base_location();
29
 
30
  switch ( $base_location['country'] ) {
31
  case 'PL':
32
+ $integrations = __( 'Integrate with DPD, DHL, InPost, eNadawca Poczta Polska, Paczka w Ruchu.', 'flexible-shipping' ) . '&nbsp;&nbsp;' .
33
+ // Translators: link.
34
+ sprintf( __( '%1$sAdd integrations%2$s', 'flexible-shipping' ), '<a class="button button-primary" href="https://www.wpdesk.pl/kategoria-produktu/wysylka/?utm_source=flexible-shipping-method&utm_medium=button&utm_campaign=flexible-shipping-integrations" target="_blank">', ' &rarr;</a>' );
35
  break;
36
+ default:
37
+ $integrations = __( 'Integrate with DPD.', 'flexible-shipping' ) . '&nbsp;&nbsp;' .
38
+ // Translators: link.
39
+ sprintf( __( '%1$sAdd integration%2$s', 'flexible-shipping' ), '<a class="button button-primary" href="https://www.wpdesk.net/products/dpd-uk-woocommerce/?utm_source=flexible-shipping-method&utm_medium=button&utm_campaign=flexible-shipping-integrations" target="_blank">', ' &rarr;</a>' );
40
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
 
43
  $integrations_tip = $integrations ? false : true;
44
 
45
+ if ( ! isset( $shipping_method['method_free_shipping_label'] ) ) {
46
  $shipping_method['method_free_shipping_label'] = __( 'Free', 'flexible-shipping' );
47
  }
48
 
53
  }
54
 
55
  $method_free_shipping = '';
56
+ if ( isset( $shipping_method['method_free_shipping'] ) && '' !== $shipping_method['method_free_shipping'] ) {
57
  $method_free_shipping = floatval( $shipping_method['method_free_shipping'] );
58
  }
59
 
60
  $settings = array(
61
+ 'method_enabled' => array(
62
+ 'title' => __( 'Enable/Disable', 'flexible-shipping' ),
63
+ 'type' => 'checkbox',
64
+ 'default' => $shipping_method['method_enabled'],
65
+ 'label' => __( 'Enable this shipment method', 'flexible-shipping' ),
66
  ),
67
+ 'method_title' => array(
68
+ 'title' => __( 'Method Title', 'flexible-shipping' ),
69
+ 'type' => 'text',
70
+ 'description' => __( 'This controls the title which the user sees during checkout.', 'flexible-shipping' ),
71
+ 'default' => __( 'Flexible Shipping', 'flexible-shipping' ),
72
+ 'desc_tip' => true,
73
  'default' => $shipping_method['method_title'],
74
+ 'custom_attributes' => array( 'required' => true ),
75
  ),
76
+ 'method_description' => array(
77
+ 'title' => __( 'Method Description', 'flexible-shipping' ),
78
+ 'type' => 'text',
79
+ 'description' => __( 'This controls method description which the user sees during checkout.', 'flexible-shipping' ),
80
+ 'default' => '',
81
+ 'desc_tip' => true,
82
+ 'default' => $shipping_method['method_description'],
83
  ),
84
+ array(
85
+ 'title' => '',
86
+ 'type' => 'title',
87
+ 'description' => '',
 
 
 
 
 
 
 
88
  ),
89
+ 'method_free_shipping' => array(
90
+ 'title' => __( 'Free Shipping', 'flexible-shipping' ),
91
+ 'type' => 'price',
92
+ 'default' => $method_free_shipping,
93
+ 'description' => __( 'Enter a minimum order amount for free shipment. This will override the costs configured below.', 'flexible-shipping' ),
94
+ 'desc_tip' => true,
95
  ),
96
+ 'method_free_shipping_label' => array(
97
+ 'title' => __( 'Free Shipping Label', 'flexible-shipping' ),
98
+ 'type' => 'text',
99
+ 'default' => $shipping_method['method_free_shipping_label'],
100
+ 'description' => __( 'Enter additional label for shipment when free shipment available.', 'flexible-shipping' ),
101
+ 'desc_tip' => true,
 
 
 
 
 
 
102
  ),
103
+ array(
104
+ 'title' => '',
105
+ 'type' => 'title',
106
+ 'description' => '',
 
107
  ),
108
+ 'method_calculation_method' => array(
109
+ 'title' => __( 'Rules Calculation', 'flexible-shipping' ),
110
+ 'type' => 'select',
111
+ 'description' => __( 'Select how rules will be calculated. If you choose "sum" the rules order is important.', 'flexible-shipping' ),
112
+ 'default' => $shipping_method['method_calculation_method'],
113
+ 'desc_tip' => true,
114
+ 'options' => array( 'sum' => __( 'Sum', 'flexible-shipping' ) ),
115
  ),
116
+ 'method_visibility' => array(
117
+ 'title' => __( 'Visibility', 'flexible-shipping' ),
118
+ 'type' => 'checkbox',
119
+ 'default' => $shipping_method['method_visibility'],
120
+ 'label' => __( 'Show only for logged in users', 'flexible-shipping' ),
121
+ ),
122
+ 'method_default' => array(
123
+ 'title' => __( 'Default', 'flexible-shipping' ),
124
+ 'type' => 'checkbox',
125
+ 'default' => $shipping_method['method_default'],
126
+ 'label' => __( 'Check the box to set this option as the default selected choice on the cart page.', 'flexible-shipping' ),
127
+ ),
128
+ 'method_integration' => array(
129
+ 'title' => __( 'Integration', 'flexible-shipping' ),
130
+ 'type' => 'select',
131
+ 'description' => __( 'Select integration. ', 'flexible-shipping' ) . $integrations,
132
+ 'desc_tip' => $integrations_tip,
133
+ 'default' => $shipping_method['method_integration'],
134
+ 'options' => apply_filters( 'flexible_shipping_integration_options', array( '' => __( 'None', 'flexible-shipping' ) ) ),
135
  ),
136
  );
137
 
142
  }
143
 
144
  $settings['method_rules'] = array(
145
+ 'title' => __( 'Rules', 'flexible-shipping' ),
146
+ 'type' => 'shipping_rules',
147
+ 'default' => isset( $shipping_method['method_rules'] ) ? $shipping_method['method_rules'] : array(),
148
+ 'method_title' => $shipping_method['method_title'],
149
  );
150
 
151
  if ( version_compare( WC()->version, '2.6' ) < 0 ) {
152
  unset( $settings['method_free_shipping_label'] );
153
  }
154
 
155
+ if ( class_exists( 'WC_Shipping_Zones1' ) ) {
156
+ $shipping_zones = WC_Shipping_Zones::get_zones();
157
  $shipping_zones_options = array();
158
  foreach ( $shipping_zones as $shipping_zone ) {
159
+ $shipping_zones_options[ $shipping_zone['zone_id'] ] = $shipping_zone['zone_name'];
160
  }
161
  $settings_with_zones = array();
162
  foreach ( $settings as $key => $setting ) {
163
+ $settings_with_zones[ $key ] = $setting;
164
+ if ( 'method_title' === $key ) {
165
  $settings_with_zones['method_shipping_zone'] = array(
166
+ 'title' => __( 'Shipping Zone', 'flexible-shipping' ),
167
+ 'type' => 'select',
168
+ 'default' => $shipping_method['method_shipping_zone'],
169
+ 'options' => $shipping_zones_options,
170
  );
171
  }
172
  }
173
+
174
  return $settings_with_zones;
175
  }
176
 
178
 
179
  $docs_link .= '?utm_campaign=flexible-shipping&utm_source=user-site&utm_medium=link&utm_term=configure-shipment-methods&utm_content=fs-shippingzone-addnew-seehow';
180
 
181
+ // Translators: link.
182
+ echo '<p>' . sprintf( __( 'See how to %1$sconfigure shipment methods%2$s.', 'flexible-shipping' ), '<a href="' . $docs_link . '" target="_blank">', '</a>' ) . '</p>'; // WPCS: XSS ok.
183
 
184
  return $settings;
composer.lock CHANGED
@@ -4,7 +4,7 @@
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": "4ea4e8b33aa57a557f4f026e86f072ad",
8
  "packages": [
9
  {
10
  "name": "moneyphp/money",
@@ -1062,29 +1062,28 @@
1062
  },
1063
  {
1064
  "name": "codeception/codeception",
1065
- "version": "3.0.3",
1066
  "source": {
1067
  "type": "git",
1068
  "url": "https://github.com/Codeception/Codeception.git",
1069
- "reference": "feb566a9dc26993611602011ae3834d8e3c1dd7f"
1070
  },
1071
  "dist": {
1072
  "type": "zip",
1073
- "url": "https://api.github.com/repos/Codeception/Codeception/zipball/feb566a9dc26993611602011ae3834d8e3c1dd7f",
1074
- "reference": "feb566a9dc26993611602011ae3834d8e3c1dd7f",
1075
  "shasum": ""
1076
  },
1077
  "require": {
1078
  "behat/gherkin": "^4.4.0",
1079
- "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3",
1080
  "codeception/stub": "^2.0",
1081
  "ext-curl": "*",
1082
  "ext-json": "*",
1083
  "ext-mbstring": "*",
1084
- "facebook/webdriver": "^1.6.0",
1085
- "guzzlehttp/guzzle": "^6.3.0",
1086
- "guzzlehttp/psr7": "~1.4",
1087
- "hoa/console": "~3.0",
1088
  "php": ">=5.6.0 <8.0",
1089
  "symfony/browser-kit": ">=2.7 <5.0",
1090
  "symfony/console": ">=2.7 <5.0",
@@ -1096,8 +1095,7 @@
1096
  },
1097
  "require-dev": {
1098
  "codeception/specify": "~0.3",
1099
- "doctrine/annotations": "^1",
1100
- "doctrine/orm": "^2",
1101
  "flow/jsonpath": "~0.2",
1102
  "monolog/monolog": "~1.8",
1103
  "pda/pheanstalk": "~3.0",
@@ -1152,20 +1150,20 @@
1152
  "functional testing",
1153
  "unit testing"
1154
  ],
1155
- "time": "2019-07-18T16:21:08+00:00"
1156
  },
1157
  {
1158
  "name": "codeception/phpunit-wrapper",
1159
- "version": "6.0.16",
1160
  "source": {
1161
  "type": "git",
1162
  "url": "https://github.com/Codeception/phpunit-wrapper.git",
1163
- "reference": "299e3aece31489ed962e6c39fe2fb6f3bbd2eb16"
1164
  },
1165
  "dist": {
1166
  "type": "zip",
1167
- "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/299e3aece31489ed962e6c39fe2fb6f3bbd2eb16",
1168
- "reference": "299e3aece31489ed962e6c39fe2fb6f3bbd2eb16",
1169
  "shasum": ""
1170
  },
1171
  "require": {
@@ -1198,7 +1196,7 @@
1198
  }
1199
  ],
1200
  "description": "PHPUnit classes used by Codeception",
1201
- "time": "2019-02-26T20:47:56+00:00"
1202
  },
1203
  {
1204
  "name": "codeception/stub",
@@ -1572,9 +1570,9 @@
1572
  "authors": [
1573
  {
1574
  "name": "Franck Nijhof",
1575
- "role": "Developer / IT Manager",
1576
  "email": "franck.nijhof@dealerdirect.com",
1577
- "homepage": "http://www.frenck.nl"
 
1578
  }
1579
  ],
1580
  "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
@@ -1761,45 +1759,34 @@
1761
  },
1762
  {
1763
  "name": "facebook/webdriver",
1764
- "version": "1.7.1",
1765
  "source": {
1766
  "type": "git",
1767
  "url": "https://github.com/facebook/php-webdriver.git",
1768
- "reference": "e43de70f3c7166169d0f14a374505392734160e5"
1769
  },
1770
  "dist": {
1771
  "type": "zip",
1772
- "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/e43de70f3c7166169d0f14a374505392734160e5",
1773
- "reference": "e43de70f3c7166169d0f14a374505392734160e5",
1774
  "shasum": ""
1775
  },
1776
  "require": {
1777
  "ext-curl": "*",
1778
- "ext-json": "*",
1779
- "ext-mbstring": "*",
1780
- "ext-zip": "*",
1781
- "php": "^5.6 || ~7.0",
1782
- "symfony/process": "^2.8 || ^3.1 || ^4.0"
1783
  },
1784
  "require-dev": {
1785
- "friendsofphp/php-cs-fixer": "^2.0",
1786
- "jakub-onderka/php-parallel-lint": "^0.9.2",
1787
- "php-coveralls/php-coveralls": "^2.0",
1788
  "php-mock/php-mock-phpunit": "^1.1",
1789
- "phpunit/phpunit": "^5.7",
1790
- "sebastian/environment": "^1.3.4 || ^2.0 || ^3.0",
1791
- "squizlabs/php_codesniffer": "^2.6",
1792
- "symfony/var-dumper": "^3.3 || ^4.0"
1793
  },
1794
  "suggest": {
1795
- "ext-SimpleXML": "For Firefox profile creation"
1796
  },
1797
  "type": "library",
1798
- "extra": {
1799
- "branch-alias": {
1800
- "dev-community": "1.5-dev"
1801
- }
1802
- },
1803
  "autoload": {
1804
  "psr-4": {
1805
  "Facebook\\WebDriver\\": "lib/"
@@ -1809,7 +1796,7 @@
1809
  "license": [
1810
  "Apache-2.0"
1811
  ],
1812
- "description": "A PHP client for Selenium WebDriver",
1813
  "homepage": "https://github.com/facebook/php-webdriver",
1814
  "keywords": [
1815
  "facebook",
@@ -1817,7 +1804,7 @@
1817
  "selenium",
1818
  "webdriver"
1819
  ],
1820
- "time": "2019-06-13T08:02:18+00:00"
1821
  },
1822
  {
1823
  "name": "gettext/gettext",
@@ -2273,555 +2260,6 @@
2273
  ],
2274
  "time": "2012-08-31T00:00:00+00:00"
2275
  },
2276
- {
2277
- "name": "hoa/consistency",
2278
- "version": "1.17.05.02",
2279
- "source": {
2280
- "type": "git",
2281
- "url": "https://github.com/hoaproject/Consistency.git",
2282
- "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f"
2283
- },
2284
- "dist": {
2285
- "type": "zip",
2286
- "url": "https://api.github.com/repos/hoaproject/Consistency/zipball/fd7d0adc82410507f332516faf655b6ed22e4c2f",
2287
- "reference": "fd7d0adc82410507f332516faf655b6ed22e4c2f",
2288
- "shasum": ""
2289
- },
2290
- "require": {
2291
- "hoa/exception": "~1.0",
2292
- "php": ">=5.5.0"
2293
- },
2294
- "require-dev": {
2295
- "hoa/stream": "~1.0",
2296
- "hoa/test": "~2.0"
2297
- },
2298
- "type": "library",
2299
- "extra": {
2300
- "branch-alias": {
2301
- "dev-master": "1.x-dev"
2302
- }
2303
- },
2304
- "autoload": {
2305
- "psr-4": {
2306
- "Hoa\\Consistency\\": "."
2307
- },
2308
- "files": [
2309
- "Prelude.php"
2310
- ]
2311
- },
2312
- "notification-url": "https://packagist.org/downloads/",
2313
- "license": [
2314
- "BSD-3-Clause"
2315
- ],
2316
- "authors": [
2317
- {
2318
- "name": "Ivan Enderlin",
2319
- "email": "ivan.enderlin@hoa-project.net"
2320
- },
2321
- {
2322
- "name": "Hoa community",
2323
- "homepage": "https://hoa-project.net/"
2324
- }
2325
- ],
2326
- "description": "The Hoa\\Consistency library.",
2327
- "homepage": "https://hoa-project.net/",
2328
- "keywords": [
2329
- "autoloader",
2330
- "callable",
2331
- "consistency",
2332
- "entity",
2333
- "flex",
2334
- "keyword",
2335
- "library"
2336
- ],
2337
- "time": "2017-05-02T12:18:12+00:00"
2338
- },
2339
- {
2340
- "name": "hoa/console",
2341
- "version": "3.17.05.02",
2342
- "source": {
2343
- "type": "git",
2344
- "url": "https://github.com/hoaproject/Console.git",
2345
- "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66"
2346
- },
2347
- "dist": {
2348
- "type": "zip",
2349
- "url": "https://api.github.com/repos/hoaproject/Console/zipball/e231fd3ea70e6d773576ae78de0bdc1daf331a66",
2350
- "reference": "e231fd3ea70e6d773576ae78de0bdc1daf331a66",
2351
- "shasum": ""
2352
- },
2353
- "require": {
2354
- "hoa/consistency": "~1.0",
2355
- "hoa/event": "~1.0",
2356
- "hoa/exception": "~1.0",
2357
- "hoa/file": "~1.0",
2358
- "hoa/protocol": "~1.0",
2359
- "hoa/stream": "~1.0",
2360
- "hoa/ustring": "~4.0"
2361
- },
2362
- "require-dev": {
2363
- "hoa/test": "~2.0"
2364
- },
2365
- "suggest": {
2366
- "ext-pcntl": "To enable hoa://Event/Console/Window:resize.",
2367
- "hoa/dispatcher": "To use the console kit.",
2368
- "hoa/router": "To use the console kit."
2369
- },
2370
- "type": "library",
2371
- "extra": {
2372
- "branch-alias": {
2373
- "dev-master": "3.x-dev"
2374
- }
2375
- },
2376
- "autoload": {
2377
- "psr-4": {
2378
- "Hoa\\Console\\": "."
2379
- }
2380
- },
2381
- "notification-url": "https://packagist.org/downloads/",
2382
- "license": [
2383
- "BSD-3-Clause"
2384
- ],
2385
- "authors": [
2386
- {
2387
- "name": "Ivan Enderlin",
2388
- "email": "ivan.enderlin@hoa-project.net"
2389
- },
2390
- {
2391
- "name": "Hoa community",
2392
- "homepage": "https://hoa-project.net/"
2393
- }
2394
- ],
2395
- "description": "The Hoa\\Console library.",
2396
- "homepage": "https://hoa-project.net/",
2397
- "keywords": [
2398
- "autocompletion",
2399
- "chrome",
2400
- "cli",
2401
- "console",
2402
- "cursor",
2403
- "getoption",
2404
- "library",
2405
- "option",
2406
- "parser",
2407
- "processus",
2408
- "readline",
2409
- "terminfo",
2410
- "tput",
2411
- "window"
2412
- ],
2413
- "time": "2017-05-02T12:26:19+00:00"
2414
- },
2415
- {
2416
- "name": "hoa/event",
2417
- "version": "1.17.01.13",
2418
- "source": {
2419
- "type": "git",
2420
- "url": "https://github.com/hoaproject/Event.git",
2421
- "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54"
2422
- },
2423
- "dist": {
2424
- "type": "zip",
2425
- "url": "https://api.github.com/repos/hoaproject/Event/zipball/6c0060dced212ffa3af0e34bb46624f990b29c54",
2426
- "reference": "6c0060dced212ffa3af0e34bb46624f990b29c54",
2427
- "shasum": ""
2428
- },
2429
- "require": {
2430
- "hoa/consistency": "~1.0",
2431
- "hoa/exception": "~1.0"
2432
- },
2433
- "require-dev": {
2434
- "hoa/test": "~2.0"
2435
- },
2436
- "type": "library",
2437
- "extra": {
2438
- "branch-alias": {
2439
- "dev-master": "1.x-dev"
2440
- }
2441
- },
2442
- "autoload": {
2443
- "psr-4": {
2444
- "Hoa\\Event\\": "."
2445
- }
2446
- },
2447
- "notification-url": "https://packagist.org/downloads/",
2448
- "license": [
2449
- "BSD-3-Clause"
2450
- ],
2451
- "authors": [
2452
- {
2453
- "name": "Ivan Enderlin",
2454
- "email": "ivan.enderlin@hoa-project.net"
2455
- },
2456
- {
2457
- "name": "Hoa community",
2458
- "homepage": "https://hoa-project.net/"
2459
- }
2460
- ],
2461
- "description": "The Hoa\\Event library.",
2462
- "homepage": "https://hoa-project.net/",
2463
- "keywords": [
2464
- "event",
2465
- "library",
2466
- "listener",
2467
- "observer"
2468
- ],
2469
- "time": "2017-01-13T15:30:50+00:00"
2470
- },
2471
- {
2472
- "name": "hoa/exception",
2473
- "version": "1.17.01.16",
2474
- "source": {
2475
- "type": "git",
2476
- "url": "https://github.com/hoaproject/Exception.git",
2477
- "reference": "091727d46420a3d7468ef0595651488bfc3a458f"
2478
- },
2479
- "dist": {
2480
- "type": "zip",
2481
- "url": "https://api.github.com/repos/hoaproject/Exception/zipball/091727d46420a3d7468ef0595651488bfc3a458f",
2482
- "reference": "091727d46420a3d7468ef0595651488bfc3a458f",
2483
- "shasum": ""
2484
- },
2485
- "require": {
2486
- "hoa/consistency": "~1.0",
2487
- "hoa/event": "~1.0"
2488
- },
2489
- "require-dev": {
2490
- "hoa/test": "~2.0"
2491
- },
2492
- "type": "library",
2493
- "extra": {
2494
- "branch-alias": {
2495
- "dev-master": "1.x-dev"
2496
- }
2497
- },
2498
- "autoload": {
2499
- "psr-4": {
2500
- "Hoa\\Exception\\": "."
2501
- }
2502
- },
2503
- "notification-url": "https://packagist.org/downloads/",
2504
- "license": [
2505
- "BSD-3-Clause"
2506
- ],
2507
- "authors": [
2508
- {
2509
- "name": "Ivan Enderlin",
2510
- "email": "ivan.enderlin@hoa-project.net"
2511
- },
2512
- {
2513
- "name": "Hoa community",
2514
- "homepage": "https://hoa-project.net/"
2515
- }
2516
- ],
2517
- "description": "The Hoa\\Exception library.",
2518
- "homepage": "https://hoa-project.net/",
2519
- "keywords": [
2520
- "exception",
2521
- "library"
2522
- ],
2523
- "time": "2017-01-16T07:53:27+00:00"
2524
- },
2525
- {
2526
- "name": "hoa/file",
2527
- "version": "1.17.07.11",
2528
- "source": {
2529
- "type": "git",
2530
- "url": "https://github.com/hoaproject/File.git",
2531
- "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca"
2532
- },
2533
- "dist": {
2534
- "type": "zip",
2535
- "url": "https://api.github.com/repos/hoaproject/File/zipball/35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca",
2536
- "reference": "35cb979b779bc54918d2f9a4e02ed6c7a1fa67ca",
2537
- "shasum": ""
2538
- },
2539
- "require": {
2540
- "hoa/consistency": "~1.0",
2541
- "hoa/event": "~1.0",
2542
- "hoa/exception": "~1.0",
2543
- "hoa/iterator": "~2.0",
2544
- "hoa/stream": "~1.0"
2545
- },
2546
- "require-dev": {
2547
- "hoa/test": "~2.0"
2548
- },
2549
- "type": "library",
2550
- "extra": {
2551
- "branch-alias": {
2552
- "dev-master": "1.x-dev"
2553
- }
2554
- },
2555
- "autoload": {
2556
- "psr-4": {
2557
- "Hoa\\File\\": "."
2558
- }
2559
- },
2560
- "notification-url": "https://packagist.org/downloads/",
2561
- "license": [
2562
- "BSD-3-Clause"
2563
- ],
2564
- "authors": [
2565
- {
2566
- "name": "Ivan Enderlin",
2567
- "email": "ivan.enderlin@hoa-project.net"
2568
- },
2569
- {
2570
- "name": "Hoa community",
2571
- "homepage": "https://hoa-project.net/"
2572
- }
2573
- ],
2574
- "description": "The Hoa\\File library.",
2575
- "homepage": "https://hoa-project.net/",
2576
- "keywords": [
2577
- "Socket",
2578
- "directory",
2579
- "file",
2580
- "finder",
2581
- "library",
2582
- "link",
2583
- "temporary"
2584
- ],
2585
- "time": "2017-07-11T07:42:15+00:00"
2586
- },
2587
- {
2588
- "name": "hoa/iterator",
2589
- "version": "2.17.01.10",
2590
- "source": {
2591
- "type": "git",
2592
- "url": "https://github.com/hoaproject/Iterator.git",
2593
- "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc"
2594
- },
2595
- "dist": {
2596
- "type": "zip",
2597
- "url": "https://api.github.com/repos/hoaproject/Iterator/zipball/d1120ba09cb4ccd049c86d10058ab94af245f0cc",
2598
- "reference": "d1120ba09cb4ccd049c86d10058ab94af245f0cc",
2599
- "shasum": ""
2600
- },
2601
- "require": {
2602
- "hoa/consistency": "~1.0",
2603
- "hoa/exception": "~1.0"
2604
- },
2605
- "require-dev": {
2606
- "hoa/test": "~2.0"
2607
- },
2608
- "type": "library",
2609
- "extra": {
2610
- "branch-alias": {
2611
- "dev-master": "2.x-dev"
2612
- }
2613
- },
2614
- "autoload": {
2615
- "psr-4": {
2616
- "Hoa\\Iterator\\": "."
2617
- }
2618
- },
2619
- "notification-url": "https://packagist.org/downloads/",
2620
- "license": [
2621
- "BSD-3-Clause"
2622
- ],
2623
- "authors": [
2624
- {
2625
- "name": "Ivan Enderlin",
2626
- "email": "ivan.enderlin@hoa-project.net"
2627
- },
2628
- {
2629
- "name": "Hoa community",
2630
- "homepage": "https://hoa-project.net/"
2631
- }
2632
- ],
2633
- "description": "The Hoa\\Iterator library.",
2634
- "homepage": "https://hoa-project.net/",
2635
- "keywords": [
2636
- "iterator",
2637
- "library"
2638
- ],
2639
- "time": "2017-01-10T10:34:47+00:00"
2640
- },
2641
- {
2642
- "name": "hoa/protocol",
2643
- "version": "1.17.01.14",
2644
- "source": {
2645
- "type": "git",
2646
- "url": "https://github.com/hoaproject/Protocol.git",
2647
- "reference": "5c2cf972151c45f373230da170ea015deecf19e2"
2648
- },
2649
- "dist": {
2650
- "type": "zip",
2651
- "url": "https://api.github.com/repos/hoaproject/Protocol/zipball/5c2cf972151c45f373230da170ea015deecf19e2",
2652
- "reference": "5c2cf972151c45f373230da170ea015deecf19e2",
2653
- "shasum": ""
2654
- },
2655
- "require": {
2656
- "hoa/consistency": "~1.0",
2657
- "hoa/exception": "~1.0"
2658
- },
2659
- "require-dev": {
2660
- "hoa/test": "~2.0"
2661
- },
2662
- "type": "library",
2663
- "extra": {
2664
- "branch-alias": {
2665
- "dev-master": "1.x-dev"
2666
- }
2667
- },
2668
- "autoload": {
2669
- "psr-4": {
2670
- "Hoa\\Protocol\\": "."
2671
- },
2672
- "files": [
2673
- "Wrapper.php"
2674
- ]
2675
- },
2676
- "notification-url": "https://packagist.org/downloads/",
2677
- "license": [
2678
- "BSD-3-Clause"
2679
- ],
2680
- "authors": [
2681
- {
2682
- "name": "Ivan Enderlin",
2683
- "email": "ivan.enderlin@hoa-project.net"
2684
- },
2685
- {
2686
- "name": "Hoa community",
2687
- "homepage": "https://hoa-project.net/"
2688
- }
2689
- ],
2690
- "description": "The Hoa\\Protocol library.",
2691
- "homepage": "https://hoa-project.net/",
2692
- "keywords": [
2693
- "library",
2694
- "protocol",
2695
- "resource",
2696
- "stream",
2697
- "wrapper"
2698
- ],
2699
- "time": "2017-01-14T12:26:10+00:00"
2700
- },
2701
- {
2702
- "name": "hoa/stream",
2703
- "version": "1.17.02.21",
2704
- "source": {
2705
- "type": "git",
2706
- "url": "https://github.com/hoaproject/Stream.git",
2707
- "reference": "3293cfffca2de10525df51436adf88a559151d82"
2708
- },
2709
- "dist": {
2710
- "type": "zip",
2711
- "url": "https://api.github.com/repos/hoaproject/Stream/zipball/3293cfffca2de10525df51436adf88a559151d82",
2712
- "reference": "3293cfffca2de10525df51436adf88a559151d82",
2713
- "shasum": ""
2714
- },
2715
- "require": {
2716
- "hoa/consistency": "~1.0",
2717
- "hoa/event": "~1.0",
2718
- "hoa/exception": "~1.0",
2719
- "hoa/protocol": "~1.0"
2720
- },
2721
- "require-dev": {
2722
- "hoa/test": "~2.0"
2723
- },
2724
- "type": "library",
2725
- "extra": {
2726
- "branch-alias": {
2727
- "dev-master": "1.x-dev"
2728
- }
2729
- },
2730
- "autoload": {
2731
- "psr-4": {
2732
- "Hoa\\Stream\\": "."
2733
- }
2734
- },
2735
- "notification-url": "https://packagist.org/downloads/",
2736
- "license": [
2737
- "BSD-3-Clause"
2738
- ],
2739
- "authors": [
2740
- {
2741
- "name": "Ivan Enderlin",
2742
- "email": "ivan.enderlin@hoa-project.net"
2743
- },
2744
- {
2745
- "name": "Hoa community",
2746
- "homepage": "https://hoa-project.net/"
2747
- }
2748
- ],
2749
- "description": "The Hoa\\Stream library.",
2750
- "homepage": "https://hoa-project.net/",
2751
- "keywords": [
2752
- "Context",
2753
- "bucket",
2754
- "composite",
2755
- "filter",
2756
- "in",
2757
- "library",
2758
- "out",
2759
- "protocol",
2760
- "stream",
2761
- "wrapper"
2762
- ],
2763
- "time": "2017-02-21T16:01:06+00:00"
2764
- },
2765
- {
2766
- "name": "hoa/ustring",
2767
- "version": "4.17.01.16",
2768
- "source": {
2769
- "type": "git",
2770
- "url": "https://github.com/hoaproject/Ustring.git",
2771
- "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0"
2772
- },
2773
- "dist": {
2774
- "type": "zip",
2775
- "url": "https://api.github.com/repos/hoaproject/Ustring/zipball/e6326e2739178799b1fe3fdd92029f9517fa17a0",
2776
- "reference": "e6326e2739178799b1fe3fdd92029f9517fa17a0",
2777
- "shasum": ""
2778
- },
2779
- "require": {
2780
- "hoa/consistency": "~1.0",
2781
- "hoa/exception": "~1.0"
2782
- },
2783
- "require-dev": {
2784
- "hoa/test": "~2.0"
2785
- },
2786
- "suggest": {
2787
- "ext-iconv": "ext/iconv must be present (or a third implementation) to use Hoa\\Ustring::transcode().",
2788
- "ext-intl": "To get a better Hoa\\Ustring::toAscii() and Hoa\\Ustring::compareTo()."
2789
- },
2790
- "type": "library",
2791
- "extra": {
2792
- "branch-alias": {
2793
- "dev-master": "4.x-dev"
2794
- }
2795
- },
2796
- "autoload": {
2797
- "psr-4": {
2798
- "Hoa\\Ustring\\": "."
2799
- }
2800
- },
2801
- "notification-url": "https://packagist.org/downloads/",
2802
- "license": [
2803
- "BSD-3-Clause"
2804
- ],
2805
- "authors": [
2806
- {
2807
- "name": "Ivan Enderlin",
2808
- "email": "ivan.enderlin@hoa-project.net"
2809
- },
2810
- {
2811
- "name": "Hoa community",
2812
- "homepage": "https://hoa-project.net/"
2813
- }
2814
- ],
2815
- "description": "The Hoa\\Ustring library.",
2816
- "homepage": "https://hoa-project.net/",
2817
- "keywords": [
2818
- "library",
2819
- "search",
2820
- "string",
2821
- "unicode"
2822
- ],
2823
- "time": "2017-01-16T07:08:25+00:00"
2824
- },
2825
  {
2826
  "name": "illuminate/contracts",
2827
  "version": "v5.2.45",
@@ -2991,16 +2429,16 @@
2991
  },
2992
  {
2993
  "name": "lucatume/wp-browser",
2994
- "version": "2.2.18",
2995
  "source": {
2996
  "type": "git",
2997
  "url": "https://github.com/lucatume/wp-browser.git",
2998
- "reference": "4f93cea909cfba2caf826828219f674fd3778e05"
2999
  },
3000
  "dist": {
3001
  "type": "zip",
3002
- "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/4f93cea909cfba2caf826828219f674fd3778e05",
3003
- "reference": "4f93cea909cfba2caf826828219f674fd3778e05",
3004
  "shasum": ""
3005
  },
3006
  "require": {
@@ -3055,7 +2493,7 @@
3055
  "codeception",
3056
  "wordpress"
3057
  ],
3058
- "time": "2019-08-02T08:42:45+00:00"
3059
  },
3060
  {
3061
  "name": "mck89/peast",
@@ -3451,13 +2889,13 @@
3451
  },
3452
  {
3453
  "name": "Wim Godden",
3454
- "role": "lead",
3455
- "homepage": "https://github.com/wimg"
3456
  },
3457
  {
3458
  "name": "Juliette Reinders Folmer",
3459
- "role": "lead",
3460
- "homepage": "https://github.com/jrfnl"
3461
  }
3462
  ],
3463
  "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
@@ -3778,8 +3216,8 @@
3778
  "authors": [
3779
  {
3780
  "name": "Sebastian Bergmann",
3781
- "role": "lead",
3782
- "email": "sb@sebastian-bergmann.de"
3783
  }
3784
  ],
3785
  "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
@@ -3826,8 +3264,8 @@
3826
  "authors": [
3827
  {
3828
  "name": "Sebastian Bergmann",
3829
- "role": "lead",
3830
- "email": "sb@sebastian-bergmann.de"
3831
  }
3832
  ],
3833
  "description": "FilterIterator implementation that filters files based on a list of suffixes.",
@@ -3868,8 +3306,8 @@
3868
  "authors": [
3869
  {
3870
  "name": "Sebastian Bergmann",
3871
- "role": "lead",
3872
- "email": "sebastian@phpunit.de"
3873
  }
3874
  ],
3875
  "description": "Simple template engine.",
@@ -3917,8 +3355,8 @@
3917
  "authors": [
3918
  {
3919
  "name": "Sebastian Bergmann",
3920
- "role": "lead",
3921
- "email": "sb@sebastian-bergmann.de"
3922
  }
3923
  ],
3924
  "description": "Utility class for timing",
@@ -4046,8 +3484,8 @@
4046
  "authors": [
4047
  {
4048
  "name": "Sebastian Bergmann",
4049
- "role": "lead",
4050
- "email": "sebastian@phpunit.de"
4051
  }
4052
  ],
4053
  "description": "The PHP Unit Testing framework.",
@@ -4763,8 +4201,8 @@
4763
  "authors": [
4764
  {
4765
  "name": "Sebastian Bergmann",
4766
- "role": "lead",
4767
- "email": "sebastian@phpunit.de"
4768
  }
4769
  ],
4770
  "description": "Library that helps with managing the version number of Git-hosted PHP projects",
@@ -5374,16 +4812,16 @@
5374
  },
5375
  {
5376
  "name": "symfony/polyfill-ctype",
5377
- "version": "v1.11.0",
5378
  "source": {
5379
  "type": "git",
5380
  "url": "https://github.com/symfony/polyfill-ctype.git",
5381
- "reference": "82ebae02209c21113908c229e9883c419720738a"
5382
  },
5383
  "dist": {
5384
  "type": "zip",
5385
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/82ebae02209c21113908c229e9883c419720738a",
5386
- "reference": "82ebae02209c21113908c229e9883c419720738a",
5387
  "shasum": ""
5388
  },
5389
  "require": {
@@ -5395,7 +4833,7 @@
5395
  "type": "library",
5396
  "extra": {
5397
  "branch-alias": {
5398
- "dev-master": "1.11-dev"
5399
  }
5400
  },
5401
  "autoload": {
@@ -5411,13 +4849,13 @@
5411
  "MIT"
5412
  ],
5413
  "authors": [
5414
- {
5415
- "name": "Symfony Community",
5416
- "homepage": "https://symfony.com/contributors"
5417
- },
5418
  {
5419
  "name": "Gert de Pagter",
5420
  "email": "BackEndTea@gmail.com"
 
 
 
 
5421
  }
5422
  ],
5423
  "description": "Symfony polyfill for ctype functions",
@@ -5428,20 +4866,20 @@
5428
  "polyfill",
5429
  "portable"
5430
  ],
5431
- "time": "2019-02-06T07:57:58+00:00"
5432
  },
5433
  {
5434
  "name": "symfony/polyfill-mbstring",
5435
- "version": "v1.11.0",
5436
  "source": {
5437
  "type": "git",
5438
  "url": "https://github.com/symfony/polyfill-mbstring.git",
5439
- "reference": "fe5e94c604826c35a32fa832f35bd036b6799609"
5440
  },
5441
  "dist": {
5442
  "type": "zip",
5443
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fe5e94c604826c35a32fa832f35bd036b6799609",
5444
- "reference": "fe5e94c604826c35a32fa832f35bd036b6799609",
5445
  "shasum": ""
5446
  },
5447
  "require": {
@@ -5453,7 +4891,7 @@
5453
  "type": "library",
5454
  "extra": {
5455
  "branch-alias": {
5456
- "dev-master": "1.11-dev"
5457
  }
5458
  },
5459
  "autoload": {
@@ -5487,7 +4925,7 @@
5487
  "portable",
5488
  "shim"
5489
  ],
5490
- "time": "2019-02-06T07:57:58+00:00"
5491
  },
5492
  {
5493
  "name": "symfony/process",
@@ -6562,26 +6000,26 @@
6562
  },
6563
  {
6564
  "name": "wp-cli/i18n-command",
6565
- "version": "v2.1.2",
6566
  "source": {
6567
  "type": "git",
6568
  "url": "https://github.com/wp-cli/i18n-command.git",
6569
- "reference": "e52a9a602772339a0f844bd5e9a9ac8cc8b490ea"
6570
  },
6571
  "dist": {
6572
  "type": "zip",
6573
- "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/e52a9a602772339a0f844bd5e9a9ac8cc8b490ea",
6574
- "reference": "e52a9a602772339a0f844bd5e9a9ac8cc8b490ea",
6575
  "shasum": ""
6576
  },
6577
  "require": {
6578
- "gettext/gettext": "^4.6",
6579
  "mck89/peast": "^1.8",
6580
  "wp-cli/wp-cli": "^2"
6581
  },
6582
  "require-dev": {
6583
  "wp-cli/scaffold-command": "^1.2 || ^2",
6584
- "wp-cli/wp-cli-tests": "^2.1"
6585
  },
6586
  "type": "wp-cli-package",
6587
  "extra": {
@@ -6615,7 +6053,7 @@
6615
  ],
6616
  "description": "Provides internationalization tools for WordPress projects.",
6617
  "homepage": "https://github.com/wp-cli/i18n-command",
6618
- "time": "2019-04-25T00:31:04+00:00"
6619
  },
6620
  {
6621
  "name": "wp-cli/import-command",
@@ -6807,16 +6245,16 @@
6807
  },
6808
  {
6809
  "name": "wp-cli/media-command",
6810
- "version": "v2.0.3",
6811
  "source": {
6812
  "type": "git",
6813
  "url": "https://github.com/wp-cli/media-command.git",
6814
- "reference": "68e2402dcef11ae10e8902cf93a1d370db07ed78"
6815
  },
6816
  "dist": {
6817
  "type": "zip",
6818
- "url": "https://api.github.com/repos/wp-cli/media-command/zipball/68e2402dcef11ae10e8902cf93a1d370db07ed78",
6819
- "reference": "68e2402dcef11ae10e8902cf93a1d370db07ed78",
6820
  "shasum": ""
6821
  },
6822
  "require": {
@@ -6860,7 +6298,7 @@
6860
  ],
6861
  "description": "Imports files as attachments, regenerates thumbnails, or lists registered image sizes.",
6862
  "homepage": "https://github.com/wp-cli/media-command",
6863
- "time": "2019-04-21T04:50:58+00:00"
6864
  },
6865
  {
6866
  "name": "wp-cli/mustangostang-spyc",
@@ -7204,16 +6642,16 @@
7204
  },
7205
  {
7206
  "name": "wp-cli/search-replace-command",
7207
- "version": "v2.0.3",
7208
  "source": {
7209
  "type": "git",
7210
  "url": "https://github.com/wp-cli/search-replace-command.git",
7211
- "reference": "7d02c54facf039577ff13c7b7bb100e4757d85fd"
7212
  },
7213
  "dist": {
7214
  "type": "zip",
7215
- "url": "https://api.github.com/repos/wp-cli/search-replace-command/zipball/7d02c54facf039577ff13c7b7bb100e4757d85fd",
7216
- "reference": "7d02c54facf039577ff13c7b7bb100e4757d85fd",
7217
  "shasum": ""
7218
  },
7219
  "require": {
@@ -7256,20 +6694,20 @@
7256
  ],
7257
  "description": "Searches/replaces strings in the database.",
7258
  "homepage": "https://github.com/wp-cli/search-replace-command",
7259
- "time": "2019-04-25T00:32:46+00:00"
7260
  },
7261
  {
7262
  "name": "wp-cli/server-command",
7263
- "version": "v2.0.2",
7264
  "source": {
7265
  "type": "git",
7266
  "url": "https://github.com/wp-cli/server-command.git",
7267
- "reference": "c900a1036c29991420296b66a14ed771245c61a2"
7268
  },
7269
  "dist": {
7270
  "type": "zip",
7271
- "url": "https://api.github.com/repos/wp-cli/server-command/zipball/c900a1036c29991420296b66a14ed771245c61a2",
7272
- "reference": "c900a1036c29991420296b66a14ed771245c61a2",
7273
  "shasum": ""
7274
  },
7275
  "require": {
@@ -7309,7 +6747,7 @@
7309
  ],
7310
  "description": "Launches PHP's built-in web server for a specific WordPress installation.",
7311
  "homepage": "https://github.com/wp-cli/server-command",
7312
- "time": "2019-04-21T09:58:15+00:00"
7313
  },
7314
  {
7315
  "name": "wp-cli/shell-command",
@@ -7487,16 +6925,16 @@
7487
  },
7488
  {
7489
  "name": "wp-cli/wp-cli",
7490
- "version": "v2.2.0",
7491
  "source": {
7492
  "type": "git",
7493
  "url": "https://github.com/wp-cli/wp-cli.git",
7494
- "reference": "193f08f48585326bc1f1648349201531eeda2ee5"
7495
  },
7496
  "dist": {
7497
  "type": "zip",
7498
- "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/193f08f48585326bc1f1648349201531eeda2ee5",
7499
- "reference": "193f08f48585326bc1f1648349201531eeda2ee5",
7500
  "shasum": ""
7501
  },
7502
  "require": {
@@ -7527,7 +6965,7 @@
7527
  "type": "library",
7528
  "extra": {
7529
  "branch-alias": {
7530
- "dev-master": "2.1.x-dev"
7531
  }
7532
  },
7533
  "autoload": {
@@ -7545,20 +6983,20 @@
7545
  "cli",
7546
  "wordpress"
7547
  ],
7548
- "time": "2019-04-25T05:38:33+00:00"
7549
  },
7550
  {
7551
  "name": "wp-cli/wp-cli-bundle",
7552
- "version": "v2.2.0",
7553
  "source": {
7554
  "type": "git",
7555
  "url": "https://github.com/wp-cli/wp-cli-bundle.git",
7556
- "reference": "ddf9a236ef0d85fcc5336f8c87cebe0dd62ee81f"
7557
  },
7558
  "dist": {
7559
  "type": "zip",
7560
- "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/ddf9a236ef0d85fcc5336f8c87cebe0dd62ee81f",
7561
- "reference": "ddf9a236ef0d85fcc5336f8c87cebe0dd62ee81f",
7562
  "shasum": ""
7563
  },
7564
  "require": {
@@ -7588,7 +7026,7 @@
7588
  "wp-cli/shell-command": "^2",
7589
  "wp-cli/super-admin-command": "^2",
7590
  "wp-cli/widget-command": "^2",
7591
- "wp-cli/wp-cli": "^2.2"
7592
  },
7593
  "require-dev": {
7594
  "roave/security-advisories": "dev-master",
@@ -7613,20 +7051,20 @@
7613
  "cli",
7614
  "wordpress"
7615
  ],
7616
- "time": "2019-04-25T06:30:44+00:00"
7617
  },
7618
  {
7619
  "name": "wp-cli/wp-config-transformer",
7620
- "version": "v1.2.5",
7621
  "source": {
7622
  "type": "git",
7623
  "url": "https://github.com/wp-cli/wp-config-transformer.git",
7624
- "reference": "46c6c3622196c55ea9b94e735e8c408425de8944"
7625
  },
7626
  "dist": {
7627
  "type": "zip",
7628
- "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/46c6c3622196c55ea9b94e735e8c408425de8944",
7629
- "reference": "46c6c3622196c55ea9b94e735e8c408425de8944",
7630
  "shasum": ""
7631
  },
7632
  "require": {
@@ -7635,7 +7073,7 @@
7635
  "require-dev": {
7636
  "composer/composer": "^1.5.6",
7637
  "phpunit/phpunit": "^6.5.5",
7638
- "wp-coding-standards/wpcs": "^0.14.0"
7639
  },
7640
  "type": "library",
7641
  "autoload": {
@@ -7654,7 +7092,7 @@
7654
  }
7655
  ],
7656
  "description": "Programmatically edit a wp-config.php file.",
7657
- "time": "2019-04-01T15:03:00+00:00"
7658
  },
7659
  {
7660
  "name": "wp-coding-standards/wpcs",
@@ -7703,16 +7141,16 @@
7703
  },
7704
  {
7705
  "name": "wpdesk/wp-codeception",
7706
- "version": "1.1.7",
7707
  "source": {
7708
  "type": "git",
7709
  "url": "https://gitlab.com/wpdesk/wp-codeception.git",
7710
- "reference": "9bc07d2a96c0858b25bfeae2d549c5e8c09a6abb"
7711
  },
7712
  "dist": {
7713
  "type": "zip",
7714
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-codeception/repository/archive.zip?sha=9bc07d2a96c0858b25bfeae2d549c5e8c09a6abb",
7715
- "reference": "9bc07d2a96c0858b25bfeae2d549c5e8c09a6abb",
7716
  "shasum": ""
7717
  },
7718
  "require": {
@@ -7758,26 +7196,26 @@
7758
  "codeception",
7759
  "wordpress"
7760
  ],
7761
- "time": "2019-08-05T07:31:09+00:00"
7762
  },
7763
  {
7764
  "name": "wpdesk/wp-wpdesk-composer",
7765
- "version": "1.2.0",
7766
  "source": {
7767
  "type": "git",
7768
  "url": "https://gitlab.com/wpdesk/wp-wpdesk-composer.git",
7769
- "reference": "52f5977e2809ed676c68120356f364d53bfd7482"
7770
  },
7771
  "dist": {
7772
  "type": "zip",
7773
- "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-composer/repository/archive.zip?sha=52f5977e2809ed676c68120356f364d53bfd7482",
7774
- "reference": "52f5977e2809ed676c68120356f364d53bfd7482",
7775
  "shasum": ""
7776
  },
7777
  "require": {
7778
  "composer-plugin-api": "^1.1",
7779
  "ext-json": "*",
7780
- "php": ">=5.5"
7781
  },
7782
  "require-dev": {
7783
  "composer/composer": "^1.8"
@@ -7798,7 +7236,7 @@
7798
  "email": "krzysiek@wpdesk.pl"
7799
  }
7800
  ],
7801
- "time": "2019-07-19T12:22:56+00:00"
7802
  },
7803
  {
7804
  "name": "xamin/handlebars.php",
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": "bfa44d53fb65bc95fe4722791c8ae93b",
8
  "packages": [
9
  {
10
  "name": "moneyphp/money",
1062
  },
1063
  {
1064
  "name": "codeception/codeception",
1065
+ "version": "2.5.6",
1066
  "source": {
1067
  "type": "git",
1068
  "url": "https://github.com/Codeception/Codeception.git",
1069
+ "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98"
1070
  },
1071
  "dist": {
1072
  "type": "zip",
1073
+ "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b83a9338296e706fab2ceb49de8a352fbca3dc98",
1074
+ "reference": "b83a9338296e706fab2ceb49de8a352fbca3dc98",
1075
  "shasum": ""
1076
  },
1077
  "require": {
1078
  "behat/gherkin": "^4.4.0",
1079
+ "codeception/phpunit-wrapper": "^6.0.9|^7.0.6",
1080
  "codeception/stub": "^2.0",
1081
  "ext-curl": "*",
1082
  "ext-json": "*",
1083
  "ext-mbstring": "*",
1084
+ "facebook/webdriver": ">=1.1.3 <2.0",
1085
+ "guzzlehttp/guzzle": ">=4.1.4 <7.0",
1086
+ "guzzlehttp/psr7": "~1.0",
 
1087
  "php": ">=5.6.0 <8.0",
1088
  "symfony/browser-kit": ">=2.7 <5.0",
1089
  "symfony/console": ">=2.7 <5.0",
1095
  },
1096
  "require-dev": {
1097
  "codeception/specify": "~0.3",
1098
+ "facebook/graph-sdk": "~5.3",
 
1099
  "flow/jsonpath": "~0.2",
1100
  "monolog/monolog": "~1.8",
1101
  "pda/pheanstalk": "~3.0",
1150
  "functional testing",
1151
  "unit testing"
1152
  ],
1153
+ "time": "2019-04-24T11:28:19+00:00"
1154
  },
1155
  {
1156
  "name": "codeception/phpunit-wrapper",
1157
+ "version": "6.0.17",
1158
  "source": {
1159
  "type": "git",
1160
  "url": "https://github.com/Codeception/phpunit-wrapper.git",
1161
+ "reference": "4394f87d6f2b18bf67cc9984845d0a3e257ccc9f"
1162
  },
1163
  "dist": {
1164
  "type": "zip",
1165
+ "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/4394f87d6f2b18bf67cc9984845d0a3e257ccc9f",
1166
+ "reference": "4394f87d6f2b18bf67cc9984845d0a3e257ccc9f",
1167
  "shasum": ""
1168
  },
1169
  "require": {
1196
  }
1197
  ],
1198
  "description": "PHPUnit classes used by Codeception",
1199
+ "time": "2019-08-18T15:48:56+00:00"
1200
  },
1201
  {
1202
  "name": "codeception/stub",
1570
  "authors": [
1571
  {
1572
  "name": "Franck Nijhof",
 
1573
  "email": "franck.nijhof@dealerdirect.com",
1574
+ "homepage": "http://www.frenck.nl",
1575
+ "role": "Developer / IT Manager"
1576
  }
1577
  ],
1578
  "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
1759
  },
1760
  {
1761
  "name": "facebook/webdriver",
1762
+ "version": "1.3.0",
1763
  "source": {
1764
  "type": "git",
1765
  "url": "https://github.com/facebook/php-webdriver.git",
1766
+ "reference": "77300c4ab2025d4316635f592ec849ca7323bd8c"
1767
  },
1768
  "dist": {
1769
  "type": "zip",
1770
+ "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/77300c4ab2025d4316635f592ec849ca7323bd8c",
1771
+ "reference": "77300c4ab2025d4316635f592ec849ca7323bd8c",
1772
  "shasum": ""
1773
  },
1774
  "require": {
1775
  "ext-curl": "*",
1776
+ "php": "^5.5 || ~7.0",
1777
+ "symfony/process": "^2.8 || ^3.1"
 
 
 
1778
  },
1779
  "require-dev": {
1780
+ "friendsofphp/php-cs-fixer": "^1.11",
 
 
1781
  "php-mock/php-mock-phpunit": "^1.1",
1782
+ "phpunit/phpunit": "4.6.* || ~5.0",
1783
+ "satooshi/php-coveralls": "^1.0",
1784
+ "squizlabs/php_codesniffer": "^2.6"
 
1785
  },
1786
  "suggest": {
1787
+ "phpdocumentor/phpdocumentor": "2.*"
1788
  },
1789
  "type": "library",
 
 
 
 
 
1790
  "autoload": {
1791
  "psr-4": {
1792
  "Facebook\\WebDriver\\": "lib/"
1796
  "license": [
1797
  "Apache-2.0"
1798
  ],
1799
+ "description": "A PHP client for WebDriver",
1800
  "homepage": "https://github.com/facebook/php-webdriver",
1801
  "keywords": [
1802
  "facebook",
1804
  "selenium",
1805
  "webdriver"
1806
  ],
1807
+ "time": "2017-01-13T15:48:08+00:00"
1808
  },
1809
  {
1810
  "name": "gettext/gettext",
2260
  ],
2261
  "time": "2012-08-31T00:00:00+00:00"
2262
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2263
  {
2264
  "name": "illuminate/contracts",
2265
  "version": "v5.2.45",
2429
  },
2430
  {
2431
  "name": "lucatume/wp-browser",
2432
+ "version": "2.2.19",
2433
  "source": {
2434
  "type": "git",
2435
  "url": "https://github.com/lucatume/wp-browser.git",
2436
+ "reference": "abfeaf3c66ebe5a0d9c8ff6c2ac19f36e43e62e9"
2437
  },
2438
  "dist": {
2439
  "type": "zip",
2440
+ "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/abfeaf3c66ebe5a0d9c8ff6c2ac19f36e43e62e9",
2441
+ "reference": "abfeaf3c66ebe5a0d9c8ff6c2ac19f36e43e62e9",
2442
  "shasum": ""
2443
  },
2444
  "require": {
2493
  "codeception",
2494
  "wordpress"
2495
  ],
2496
+ "time": "2019-08-16T16:13:50+00:00"
2497
  },
2498
  {
2499
  "name": "mck89/peast",
2889
  },
2890
  {
2891
  "name": "Wim Godden",
2892
+ "homepage": "https://github.com/wimg",
2893
+ "role": "lead"
2894
  },
2895
  {
2896
  "name": "Juliette Reinders Folmer",
2897
+ "homepage": "https://github.com/jrfnl",
2898
+ "role": "lead"
2899
  }
2900
  ],
2901
  "description": "A set of sniffs for PHP_CodeSniffer that checks for PHP cross-version compatibility.",
3216
  "authors": [
3217
  {
3218
  "name": "Sebastian Bergmann",
3219
+ "email": "sb@sebastian-bergmann.de",
3220
+ "role": "lead"
3221
  }
3222
  ],
3223
  "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
3264
  "authors": [
3265
  {
3266
  "name": "Sebastian Bergmann",
3267
+ "email": "sb@sebastian-bergmann.de",
3268
+ "role": "lead"
3269
  }
3270
  ],
3271
  "description": "FilterIterator implementation that filters files based on a list of suffixes.",
3306
  "authors": [
3307
  {
3308
  "name": "Sebastian Bergmann",
3309
+ "email": "sebastian@phpunit.de",
3310
+ "role": "lead"
3311
  }
3312
  ],
3313
  "description": "Simple template engine.",
3355
  "authors": [
3356
  {
3357
  "name": "Sebastian Bergmann",
3358
+ "email": "sb@sebastian-bergmann.de",
3359
+ "role": "lead"
3360
  }
3361
  ],
3362
  "description": "Utility class for timing",
3484
  "authors": [
3485
  {
3486
  "name": "Sebastian Bergmann",
3487
+ "email": "sebastian@phpunit.de",
3488
+ "role": "lead"
3489
  }
3490
  ],
3491
  "description": "The PHP Unit Testing framework.",
4201
  "authors": [
4202
  {
4203
  "name": "Sebastian Bergmann",
4204
+ "email": "sebastian@phpunit.de",
4205
+ "role": "lead"
4206
  }
4207
  ],
4208
  "description": "Library that helps with managing the version number of Git-hosted PHP projects",
4812
  },
4813
  {
4814
  "name": "symfony/polyfill-ctype",
4815
+ "version": "v1.12.0",
4816
  "source": {
4817
  "type": "git",
4818
  "url": "https://github.com/symfony/polyfill-ctype.git",
4819
+ "reference": "550ebaac289296ce228a706d0867afc34687e3f4"
4820
  },
4821
  "dist": {
4822
  "type": "zip",
4823
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4",
4824
+ "reference": "550ebaac289296ce228a706d0867afc34687e3f4",
4825
  "shasum": ""
4826
  },
4827
  "require": {
4833
  "type": "library",
4834
  "extra": {
4835
  "branch-alias": {
4836
+ "dev-master": "1.12-dev"
4837
  }
4838
  },
4839
  "autoload": {
4849
  "MIT"
4850
  ],
4851
  "authors": [
 
 
 
 
4852
  {
4853
  "name": "Gert de Pagter",
4854
  "email": "BackEndTea@gmail.com"
4855
+ },
4856
+ {
4857
+ "name": "Symfony Community",
4858
+ "homepage": "https://symfony.com/contributors"
4859
  }
4860
  ],
4861
  "description": "Symfony polyfill for ctype functions",
4866
  "polyfill",
4867
  "portable"
4868
  ],
4869
+ "time": "2019-08-06T08:03:45+00:00"
4870
  },
4871
  {
4872
  "name": "symfony/polyfill-mbstring",
4873
+ "version": "v1.12.0",
4874
  "source": {
4875
  "type": "git",
4876
  "url": "https://github.com/symfony/polyfill-mbstring.git",
4877
+ "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17"
4878
  },
4879
  "dist": {
4880
  "type": "zip",
4881
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17",
4882
+ "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17",
4883
  "shasum": ""
4884
  },
4885
  "require": {
4891
  "type": "library",
4892
  "extra": {
4893
  "branch-alias": {
4894
+ "dev-master": "1.12-dev"
4895
  }
4896
  },
4897
  "autoload": {
4925
  "portable",
4926
  "shim"
4927
  ],
4928
+ "time": "2019-08-06T08:03:45+00:00"
4929
  },
4930
  {
4931
  "name": "symfony/process",
6000
  },
6001
  {
6002
  "name": "wp-cli/i18n-command",
6003
+ "version": "v2.2.0",
6004
  "source": {
6005
  "type": "git",
6006
  "url": "https://github.com/wp-cli/i18n-command.git",
6007
+ "reference": "379d2b07e8555efb2a6ccd94ef3d75414aa03a88"
6008
  },
6009
  "dist": {
6010
  "type": "zip",
6011
+ "url": "https://api.github.com/repos/wp-cli/i18n-command/zipball/379d2b07e8555efb2a6ccd94ef3d75414aa03a88",
6012
+ "reference": "379d2b07e8555efb2a6ccd94ef3d75414aa03a88",
6013
  "shasum": ""
6014
  },
6015
  "require": {
6016
+ "gettext/gettext": "^4.6.3",
6017
  "mck89/peast": "^1.8",
6018
  "wp-cli/wp-cli": "^2"
6019
  },
6020
  "require-dev": {
6021
  "wp-cli/scaffold-command": "^1.2 || ^2",
6022
+ "wp-cli/wp-cli-tests": "^2.1.3"
6023
  },
6024
  "type": "wp-cli-package",
6025
  "extra": {
6053
  ],
6054
  "description": "Provides internationalization tools for WordPress projects.",
6055
  "homepage": "https://github.com/wp-cli/i18n-command",
6056
+ "time": "2019-08-13T16:32:54+00:00"
6057
  },
6058
  {
6059
  "name": "wp-cli/import-command",
6245
  },
6246
  {
6247
  "name": "wp-cli/media-command",
6248
+ "version": "v2.0.4",
6249
  "source": {
6250
  "type": "git",
6251
  "url": "https://github.com/wp-cli/media-command.git",
6252
+ "reference": "29050e15fc985da54fd1ad109760aefd6a220316"
6253
  },
6254
  "dist": {
6255
  "type": "zip",
6256
+ "url": "https://api.github.com/repos/wp-cli/media-command/zipball/29050e15fc985da54fd1ad109760aefd6a220316",
6257
+ "reference": "29050e15fc985da54fd1ad109760aefd6a220316",
6258
  "shasum": ""
6259
  },
6260
  "require": {
6298
  ],
6299
  "description": "Imports files as attachments, regenerates thumbnails, or lists registered image sizes.",
6300
  "homepage": "https://github.com/wp-cli/media-command",
6301
+ "time": "2019-08-13T13:11:27+00:00"
6302
  },
6303
  {
6304
  "name": "wp-cli/mustangostang-spyc",
6642
  },
6643
  {
6644
  "name": "wp-cli/search-replace-command",
6645
+ "version": "v2.0.4",
6646
  "source": {
6647
  "type": "git",
6648
  "url": "https://github.com/wp-cli/search-replace-command.git",
6649
+ "reference": "2872f04c3600fbbaa5227f2ff54b32379044a35b"
6650
  },
6651
  "dist": {
6652
  "type": "zip",
6653
+ "url": "https://api.github.com/repos/wp-cli/search-replace-command/zipball/2872f04c3600fbbaa5227f2ff54b32379044a35b",
6654
+ "reference": "2872f04c3600fbbaa5227f2ff54b32379044a35b",
6655
  "shasum": ""
6656
  },
6657
  "require": {
6694
  ],
6695
  "description": "Searches/replaces strings in the database.",
6696
  "homepage": "https://github.com/wp-cli/search-replace-command",
6697
+ "time": "2019-07-24T21:42:27+00:00"
6698
  },
6699
  {
6700
  "name": "wp-cli/server-command",
6701
+ "version": "v2.0.3",
6702
  "source": {
6703
  "type": "git",
6704
  "url": "https://github.com/wp-cli/server-command.git",
6705
+ "reference": "fa5487926906903d0a466c2c672057bdf79b4b10"
6706
  },
6707
  "dist": {
6708
  "type": "zip",
6709
+ "url": "https://api.github.com/repos/wp-cli/server-command/zipball/fa5487926906903d0a466c2c672057bdf79b4b10",
6710
+ "reference": "fa5487926906903d0a466c2c672057bdf79b4b10",
6711
  "shasum": ""
6712
  },
6713
  "require": {
6747
  ],
6748
  "description": "Launches PHP's built-in web server for a specific WordPress installation.",
6749
  "homepage": "https://github.com/wp-cli/server-command",
6750
+ "time": "2019-07-16T15:10:07+00:00"
6751
  },
6752
  {
6753
  "name": "wp-cli/shell-command",
6925
  },
6926
  {
6927
  "name": "wp-cli/wp-cli",
6928
+ "version": "v2.3.0",
6929
  "source": {
6930
  "type": "git",
6931
  "url": "https://github.com/wp-cli/wp-cli.git",
6932
+ "reference": "538d9be5ad490bd07b946dcd3b52b4d1c34dc193"
6933
  },
6934
  "dist": {
6935
  "type": "zip",
6936
+ "url": "https://api.github.com/repos/wp-cli/wp-cli/zipball/538d9be5ad490bd07b946dcd3b52b4d1c34dc193",
6937
+ "reference": "538d9be5ad490bd07b946dcd3b52b4d1c34dc193",
6938
  "shasum": ""
6939
  },
6940
  "require": {
6965
  "type": "library",
6966
  "extra": {
6967
  "branch-alias": {
6968
+ "dev-master": "2.3.x-dev"
6969
  }
6970
  },
6971
  "autoload": {
6983
  "cli",
6984
  "wordpress"
6985
  ],
6986
+ "time": "2019-08-13T23:12:27+00:00"
6987
  },
6988
  {
6989
  "name": "wp-cli/wp-cli-bundle",
6990
+ "version": "v2.3.0",
6991
  "source": {
6992
  "type": "git",
6993
  "url": "https://github.com/wp-cli/wp-cli-bundle.git",
6994
+ "reference": "808f58066ee7d1b750d7e2ddbad877e1c118cd8a"
6995
  },
6996
  "dist": {
6997
  "type": "zip",
6998
+ "url": "https://api.github.com/repos/wp-cli/wp-cli-bundle/zipball/808f58066ee7d1b750d7e2ddbad877e1c118cd8a",
6999
+ "reference": "808f58066ee7d1b750d7e2ddbad877e1c118cd8a",
7000
  "shasum": ""
7001
  },
7002
  "require": {
7026
  "wp-cli/shell-command": "^2",
7027
  "wp-cli/super-admin-command": "^2",
7028
  "wp-cli/widget-command": "^2",
7029
+ "wp-cli/wp-cli": "^2.3.0"
7030
  },
7031
  "require-dev": {
7032
  "roave/security-advisories": "dev-master",
7051
  "cli",
7052
  "wordpress"
7053
  ],
7054
+ "time": "2019-08-14T00:12:46+00:00"
7055
  },
7056
  {
7057
  "name": "wp-cli/wp-config-transformer",
7058
+ "version": "v1.2.6",
7059
  "source": {
7060
  "type": "git",
7061
  "url": "https://github.com/wp-cli/wp-config-transformer.git",
7062
+ "reference": "1ca98343443a8e4585865db5f50e8e6121fee70b"
7063
  },
7064
  "dist": {
7065
  "type": "zip",
7066
+ "url": "https://api.github.com/repos/wp-cli/wp-config-transformer/zipball/1ca98343443a8e4585865db5f50e8e6121fee70b",
7067
+ "reference": "1ca98343443a8e4585865db5f50e8e6121fee70b",
7068
  "shasum": ""
7069
  },
7070
  "require": {
7073
  "require-dev": {
7074
  "composer/composer": "^1.5.6",
7075
  "phpunit/phpunit": "^6.5.5",
7076
+ "wp-coding-standards/wpcs": "^0.14.0 || ^1.0.0 || ^2.0.0"
7077
  },
7078
  "type": "library",
7079
  "autoload": {
7092
  }
7093
  ],
7094
  "description": "Programmatically edit a wp-config.php file.",
7095
+ "time": "2019-07-23T17:24:43+00:00"
7096
  },
7097
  {
7098
  "name": "wp-coding-standards/wpcs",
7141
  },
7142
  {
7143
  "name": "wpdesk/wp-codeception",
7144
+ "version": "1.1.9",
7145
  "source": {
7146
  "type": "git",
7147
  "url": "https://gitlab.com/wpdesk/wp-codeception.git",
7148
+ "reference": "391fd89ba8a3c9921f26169888374fda239ad11d"
7149
  },
7150
  "dist": {
7151
  "type": "zip",
7152
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-codeception/repository/archive.zip?sha=391fd89ba8a3c9921f26169888374fda239ad11d",
7153
+ "reference": "391fd89ba8a3c9921f26169888374fda239ad11d",
7154
  "shasum": ""
7155
  },
7156
  "require": {
7196
  "codeception",
7197
  "wordpress"
7198
  ],
7199
+ "time": "2019-08-09T08:33:34+00:00"
7200
  },
7201
  {
7202
  "name": "wpdesk/wp-wpdesk-composer",
7203
+ "version": "2.2.1",
7204
  "source": {
7205
  "type": "git",
7206
  "url": "https://gitlab.com/wpdesk/wp-wpdesk-composer.git",
7207
+ "reference": "792701649029b4bb3cbb0c31ca60208de27f0fec"
7208
  },
7209
  "dist": {
7210
  "type": "zip",
7211
+ "url": "https://gitlab.com/api/v4/projects/wpdesk%2Fwp-wpdesk-composer/repository/archive.zip?sha=792701649029b4bb3cbb0c31ca60208de27f0fec",
7212
+ "reference": "792701649029b4bb3cbb0c31ca60208de27f0fec",
7213
  "shasum": ""
7214
  },
7215
  "require": {
7216
  "composer-plugin-api": "^1.1",
7217
  "ext-json": "*",
7218
+ "php": ">=5.6"
7219
  },
7220
  "require-dev": {
7221
  "composer/composer": "^1.8"
7236
  "email": "krzysiek@wpdesk.pl"
7237
  }
7238
  ],
7239
+ "time": "2019-08-19T10:44:01+00:00"
7240
  },
7241
  {
7242
  "name": "xamin/handlebars.php",
flexible-shipping.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Flexible Shipping
4
  Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
- Version: 3.6.3
7
  Author: WP Desk
8
  Author URI: https://www.wpdesk.net/
9
  Text Domain: flexible-shipping
@@ -11,7 +11,7 @@
11
  Requires at least: 4.5
12
  Tested up to: 5.2.2
13
  WC requires at least: 3.1.0
14
- WC tested up to: 3.7
15
  Requires PHP: 5.6
16
 
17
  Copyright 2017 WP Desk Ltd.
@@ -43,8 +43,8 @@ if ( ! class_exists( 'WPDesk_Basic_Requirement_Checker' ) ) {
43
  }
44
 
45
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
46
- $plugin_version = '3.6.3';
47
- $plugin_release_timestamp = '2019-08-12 11:01';
48
 
49
  $plugin_name = 'Flexible Shipping';
50
  $plugin_class_name = 'Flexible_Shipping_Plugin';
3
  Plugin Name: Flexible Shipping
4
  Plugin URI: https://wordpress.org/plugins/flexible-shipping/
5
  Description: Create additional shipment methods in WooCommerce and enable pricing based on cart weight or total.
6
+ Version: 3.6.4
7
  Author: WP Desk
8
  Author URI: https://www.wpdesk.net/
9
  Text Domain: flexible-shipping
11
  Requires at least: 4.5
12
  Tested up to: 5.2.2
13
  WC requires at least: 3.1.0
14
+ WC tested up to: 3.7.0
15
  Requires PHP: 5.6
16
 
17
  Copyright 2017 WP Desk Ltd.
43
  }
44
 
45
  /* THESE TWO VARIABLES CAN BE CHANGED AUTOMATICALLY */
46
+ $plugin_version = '3.6.4';
47
+ $plugin_release_timestamp = '2019-08-21 13:32';
48
 
49
  $plugin_name = 'Flexible Shipping';
50
  $plugin_class_name = 'Flexible_Shipping_Plugin';
lang/flexible-shipping-pl_PL.mo CHANGED
Binary file
lang/flexible-shipping-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Flexible Shipping\n"
4
- "POT-Creation-Date: 2019-07-26 10:43+0200\n"
5
- "PO-Revision-Date: 2019-07-26 10:44+0200\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
8
  "Language: pl_PL\n"
@@ -22,13 +22,13 @@ msgstr ""
22
  "X-Poedit-SearchPath-1: vendor/wpdesk/wp-wpdesk-fs-shipment\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
- #: classes/class-flexible-shipping-plugin.php:140
26
  #, php-format
27
  msgid ""
28
  "Notice! We will shut down Connect on 22 August 2019! %1$sRead more →%2$s"
29
  msgstr "Uwaga! Zamkniemy Connect 22 sierpnia 2019! %1$sPrzeczytaj więcej →%2$s"
30
 
31
- #: classes/class-flexible-shipping-plugin.php:486
32
  #, fuzzy, php-format
33
  #| msgid ""
34
  #| "How can We make Flexible Shipping better for you? %sJust write to us.%s"
@@ -37,22 +37,22 @@ msgid ""
37
  msgstr ""
38
  "Jak możemy sprawić, aby Flexible Shipping był lepszy? %sNapisz do nas.%s"
39
 
40
- #: classes/class-flexible-shipping-plugin.php:546
41
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:147
42
  msgid "Settings"
43
  msgstr "Ustawienia"
44
 
45
- #: classes/class-flexible-shipping-plugin.php:549
46
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:140
47
  msgid "Docs"
48
  msgstr "Docs"
49
 
50
- #: classes/class-flexible-shipping-plugin.php:550
51
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:134
52
  msgid "Support"
53
  msgstr "Wsparcie"
54
 
55
- #: classes/class-flexible-shipping-plugin.php:557
56
  msgid "Upgrade"
57
  msgstr "Kup PRO"
58
 
@@ -415,8 +415,8 @@ msgstr ""
415
  "Wpisz dodatkową etykietę, która zostanie wyświetlona dla darmowej wysyłki."
416
 
417
  #: classes/table-rate/settings/shipping-method-form.php:117
418
- msgid "Calculation Method"
419
- msgstr "Metoda obliczania"
420
 
421
  #: classes/table-rate/settings/shipping-method-form.php:119
422
  msgid ""
@@ -741,6 +741,303 @@ msgstr "Test"
741
  msgid "Input"
742
  msgstr "Input"
743
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
744
  #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:168
745
  #, php-format
746
  msgid ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Flexible Shipping\n"
4
+ "POT-Creation-Date: 2019-08-19 09:52+0200\n"
5
+ "PO-Revision-Date: 2019-08-19 09:52+0200\n"
6
  "Last-Translator: Piotr Jabłonowski <piotr.jablonowski@wpdesk.net>\n"
7
  "Language-Team: Maciej Swoboda <maciej.swoboda@gmail.com>\n"
8
  "Language: pl_PL\n"
22
  "X-Poedit-SearchPath-1: vendor/wpdesk/wp-wpdesk-fs-shipment\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
 
25
+ #: classes/class-flexible-shipping-connect-shutdown-notice.php:47
26
  #, php-format
27
  msgid ""
28
  "Notice! We will shut down Connect on 22 August 2019! %1$sRead more →%2$s"
29
  msgstr "Uwaga! Zamkniemy Connect 22 sierpnia 2019! %1$sPrzeczytaj więcej →%2$s"
30
 
31
+ #: classes/class-flexible-shipping-plugin.php:476
32
  #, fuzzy, php-format
33
  #| msgid ""
34
  #| "How can We make Flexible Shipping better for you? %sJust write to us.%s"
37
  msgstr ""
38
  "Jak możemy sprawić, aby Flexible Shipping był lepszy? %sNapisz do nas.%s"
39
 
40
+ #: classes/class-flexible-shipping-plugin.php:536
41
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:147
42
  msgid "Settings"
43
  msgstr "Ustawienia"
44
 
45
+ #: classes/class-flexible-shipping-plugin.php:539
46
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:140
47
  msgid "Docs"
48
  msgstr "Docs"
49
 
50
+ #: classes/class-flexible-shipping-plugin.php:540
51
  #: vendor/wpdesk/wp-builder/src/Plugin/AbstractPlugin.php:134
52
  msgid "Support"
53
  msgstr "Wsparcie"
54
 
55
+ #: classes/class-flexible-shipping-plugin.php:547
56
  msgid "Upgrade"
57
  msgstr "Kup PRO"
58
 
415
  "Wpisz dodatkową etykietę, która zostanie wyświetlona dla darmowej wysyłki."
416
 
417
  #: classes/table-rate/settings/shipping-method-form.php:117
418
+ msgid "Rules Calculation"
419
+ msgstr "Kalkulacja reguł"
420
 
421
  #: classes/table-rate/settings/shipping-method-form.php:119
422
  msgid ""
741
  msgid "Input"
742
  msgstr "Input"
743
 
744
+ #: vendor/lucatume/wp-browser/src/data/plugins/internationalized-plugin.php:11
745
+ msgid "This is a dummy plugin"
746
+ msgstr ""
747
+
748
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:42
749
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:72
750
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:80
751
+ msgid "There was an error when reading this WXR file"
752
+ msgstr ""
753
+
754
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:43
755
+ msgid ""
756
+ "Details are shown above. The importer will now try again with a different "
757
+ "parser..."
758
+ msgstr ""
759
+
760
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:84
761
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:89
762
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:306
763
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/parsers.php:495
764
+ msgid ""
765
+ "This does not appear to be a WXR file, missing/invalid WXR version number"
766
+ msgstr ""
767
+
768
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:132
769
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:141
770
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:192
771
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:196
772
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:205
773
+ msgid "Sorry, there has been an error."
774
+ msgstr ""
775
+
776
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:133
777
+ msgid "The file does not exist, please try again."
778
+ msgstr ""
779
+
780
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:176
781
+ msgid "All done."
782
+ msgstr ""
783
+
784
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:176
785
+ msgid "Have fun!"
786
+ msgstr ""
787
+
788
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:177
789
+ msgid "Remember to update the passwords and roles of imported users."
790
+ msgstr ""
791
+
792
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:197
793
+ #, php-format
794
+ msgid ""
795
+ "The export file could not be found at <code>%s</code>. It is likely that "
796
+ "this was caused by a permissions problem."
797
+ msgstr ""
798
+
799
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:213
800
+ #, php-format
801
+ msgid ""
802
+ "This WXR file (version %s) may not be supported by this version of the "
803
+ "importer. Please consider updating."
804
+ msgstr ""
805
+
806
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:238
807
+ #, php-format
808
+ msgid ""
809
+ "Failed to import author %s. Their posts will be attributed to the current "
810
+ "user."
811
+ msgstr ""
812
+
813
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:264
814
+ msgid "Assign Authors"
815
+ msgstr ""
816
+
817
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:265
818
+ msgid ""
819
+ "To make it easier for you to edit and save the imported content, you may "
820
+ "want to reassign the author of the imported item to an existing user of this "
821
+ "site. For example, you may want to import all the entries as <code>admin</"
822
+ "code>s entries."
823
+ msgstr ""
824
+
825
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:267
826
+ #, php-format
827
+ msgid ""
828
+ "If a new user is created by WordPress, a new password will be randomly "
829
+ "generated and the new user&#8217;s role will be set as %s. Manually changing "
830
+ "the new user&#8217;s details will be necessary."
831
+ msgstr ""
832
+
833
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:277
834
+ #, fuzzy
835
+ #| msgid "Attachments"
836
+ msgid "Import Attachments"
837
+ msgstr "Załączniki"
838
+
839
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:280
840
+ msgid "Download and import file attachments"
841
+ msgstr ""
842
+
843
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:284
844
+ msgid "Submit"
845
+ msgstr ""
846
+
847
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:297
848
+ #, fuzzy
849
+ #| msgid "Import"
850
+ msgid "Import author:"
851
+ msgstr "Importuj"
852
+
853
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:308
854
+ msgid "or create new user with login name:"
855
+ msgstr ""
856
+
857
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:311
858
+ msgid "as a new user:"
859
+ msgstr ""
860
+
861
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:319
862
+ msgid "assign posts to an existing user:"
863
+ msgstr ""
864
+
865
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:321
866
+ msgid "or assign posts to an existing user:"
867
+ msgstr ""
868
+
869
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:322
870
+ #, fuzzy
871
+ #| msgid "Select"
872
+ msgid "- Select -"
873
+ msgstr "Wybierz"
874
+
875
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:372
876
+ #, php-format
877
+ msgid ""
878
+ "Failed to create new user for %s. Their posts will be attributed to the "
879
+ "current user."
880
+ msgstr ""
881
+
882
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:424
883
+ #, php-format
884
+ msgid "Failed to import category %s"
885
+ msgstr ""
886
+
887
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:467
888
+ #, php-format
889
+ msgid "Failed to import post tag %s"
890
+ msgstr ""
891
+
892
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:516
893
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:738
894
+ #, fuzzy, php-format
895
+ #| msgid "Select file to import"
896
+ msgid "Failed to import %s %s"
897
+ msgstr "Wybierz plik do importu"
898
+
899
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:605
900
+ #, php-format
901
+ msgid "Failed to import &#8220;%s&#8221;: Invalid post type %s"
902
+ msgstr ""
903
+
904
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:642
905
+ #, php-format
906
+ msgid "%s &#8220;%s&#8221; already exists."
907
+ msgstr ""
908
+
909
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:704
910
+ #, php-format
911
+ msgid "Failed to import %s &#8220;%s&#8221;"
912
+ msgstr ""
913
+
914
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:869
915
+ msgid "Menu item skipped due to missing menu slug"
916
+ msgstr ""
917
+
918
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:876
919
+ #, php-format
920
+ msgid "Menu item skipped due to invalid menu slug: %s"
921
+ msgstr ""
922
+
923
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:939
924
+ msgid "Fetching attachments is not enabled"
925
+ msgstr ""
926
+
927
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:952
928
+ msgid "Invalid file type"
929
+ msgstr ""
930
+
931
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:996
932
+ msgid "Remote server did not respond"
933
+ msgstr ""
934
+
935
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1002
936
+ #, php-format
937
+ msgid "Remote server returned error response %1$d %2$s"
938
+ msgstr ""
939
+
940
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1009
941
+ msgid "Remote file is incorrect size"
942
+ msgstr ""
943
+
944
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1014
945
+ #, fuzzy
946
+ #| msgid "Label downloaded."
947
+ msgid "Zero size file downloaded"
948
+ msgstr "Etykieta została pobrana."
949
+
950
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1020
951
+ #, php-format
952
+ msgid "Remote file is too large, limit is %s"
953
+ msgstr ""
954
+
955
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1119
956
+ msgid "Import WordPress"
957
+ msgstr ""
958
+
959
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1126
960
+ #, php-format
961
+ msgid ""
962
+ "A new version of this importer is available. Please update to version %s to "
963
+ "ensure compatibility with newer export files."
964
+ msgstr ""
965
+
966
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1141
967
+ msgid ""
968
+ "Howdy! Upload your WordPress eXtended RSS (WXR) file and we&#8217;ll import "
969
+ "the posts, pages, comments, custom fields, categories, and tags into this "
970
+ "site."
971
+ msgstr ""
972
+
973
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1142
974
+ msgid "Choose a WXR (.xml) file to upload, then click Upload file and import."
975
+ msgstr ""
976
+
977
+ #: vendor/lucatume/wp-browser/src/data/plugins/wordpress-importer/wordpress-importer.php:1216
978
+ msgid ""
979
+ "Import <strong>posts, pages, comments, custom fields, categories, and tags</"
980
+ "strong> from a WordPress export file."
981
+ msgstr ""
982
+
983
+ #: vendor/lucatume/wp-browser/src/data/themedir1/internationalized-theme/functions.php:7
984
+ msgid "This is a dummy theme"
985
+ msgstr ""
986
+
987
+ #: vendor/wp-cli/core-command/src/Core_Command.php:441
988
+ #: vendor/wp-cli/core-command/src/Core_Command.php:515
989
+ #, php-format
990
+ msgctxt "Default network name"
991
+ msgid "%s Sites"
992
+ msgstr ""
993
+
994
+ #: vendor/wp-cli/core-command/src/Core_Command.php:673
995
+ msgid "Wildcard DNS may not be configured correctly."
996
+ msgstr ""
997
+
998
+ #: vendor/wp-cli/entity-command/src/Site_Command.php:125
999
+ msgid "Uncategorized"
1000
+ msgstr ""
1001
+
1002
+ #: vendor/wp-cli/entity-command/src/Site_Command.php:128
1003
+ msgctxt "Default category slug"
1004
+ msgid "Uncategorized"
1005
+ msgstr ""
1006
+
1007
+ #: vendor/wp-cli/export-command/src/WP_Export_File_Writer.php:32
1008
+ #: vendor/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php:51
1009
+ msgid "WP Export: error writing to export file."
1010
+ msgstr ""
1011
+
1012
+ #: vendor/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php:20
1013
+ #: vendor/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php:25
1014
+ msgid "Export Error"
1015
+ msgstr ""
1016
+
1017
+ #: vendor/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php:639
1018
+ msgid " Try again"
1019
+ msgstr ""
1020
+
1021
+ #: vendor/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php:645
1022
+ msgid "API error. Try Again."
1023
+ msgstr ""
1024
+
1025
+ #: vendor/wp-cli/media-command/src/Media_Command.php:145
1026
+ msgid "image"
1027
+ msgid_plural "images"
1028
+ msgstr[0] ""
1029
+ msgstr[1] ""
1030
+ msgstr[2] ""
1031
+
1032
+ #: vendor/wp-cli/wp-cli/php/utils-wp.php:196
1033
+ msgid "Inactive Widgets"
1034
+ msgstr ""
1035
+
1036
+ #: vendor/wp-cli/wp-cli/php/utils-wp.php:199
1037
+ msgid ""
1038
+ "Drag widgets here to remove them from the sidebar but keep their settings."
1039
+ msgstr ""
1040
+
1041
  #: vendor/wpdesk/wp-basic-requirements/src/Basic_Requirement_Checker.php:168
1042
  #, php-format
1043
  msgid ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://flexibleshipping.com/table-rate/
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
  Tested up to: 5.2.2
7
- Stable tag: 3.6.3
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
@@ -175,6 +175,11 @@ If you are upgrading from the old Flexible Shipping version (1.3.2, woo-flexible
175
 
176
  == Changelog ==
177
 
 
 
 
 
 
178
  = 3.6.3 - 2019-08-12 =
179
  * Added support for WooCommerce 3.7
180
 
4
  Tags: table rate, table rate shipping, woocommerce shipping, flexible shipping, woocommerce table rate shipping, cart based shipping, weight shipping, weight based shipping, totals based shipping, order based shipping, shipping zones, shipping classes
5
  Requires at least: 4.5
6
  Tested up to: 5.2.2
7
+ Stable tag: 3.6.4
8
  Requires PHP: 5.6
9
  License: GPLv3 or later
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
175
 
176
  == Changelog ==
177
 
178
+ = 3.6.4 - 2019-08-21 =
179
+ * Remove connect shutdown notice
180
+ * Removed Connect Sign up ability in shipping method settings
181
+ * Changed label for Calculation Method to Rules Calculation on shipping method settings
182
+
183
  = 3.6.3 - 2019-08-12 =
184
  * Added support for WooCommerce 3.7
185
 
vendor/autoload.php CHANGED
@@ -4,4 +4,4 @@
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540::getLoader();
4
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
+ return ComposerAutoloaderInit944579f5165f615ad6f418376061726e::getLoader();
vendor/composer/autoload_classmap.php CHANGED
@@ -6,7 +6,6 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
- 'Flexible_Shipping_Connect_Shutdown_Notice' => $baseDir . '/classes/class-flexible-shipping-connect-shutdown-notice.php',
10
  'Flexible_Shipping_Plugin' => $baseDir . '/classes/class-flexible-shipping-plugin.php',
11
  'Money\\Calculator' => $vendorDir . '/moneyphp/money/src/Calculator.php',
12
  'Money\\Calculator\\BcMathCalculator' => $vendorDir . '/moneyphp/money/src/Calculator/BcMathCalculator.php',
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
9
  'Flexible_Shipping_Plugin' => $baseDir . '/classes/class-flexible-shipping-plugin.php',
10
  'Money\\Calculator' => $vendorDir . '/moneyphp/money/src/Calculator.php',
11
  'Money\\Calculator\\BcMathCalculator' => $vendorDir . '/moneyphp/money/src/Calculator/BcMathCalculator.php',
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540
6
  {
7
  private static $loader;
8
 
@@ -19,15 +19,15 @@ class ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540
19
  return self::$loader;
20
  }
21
 
22
- spl_autoload_register(array('ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
- spl_autoload_unregister(array('ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
- call_user_func(\Composer\Autoload\ComposerStaticInitc4b7a1b365668175bb161dcd8889a540::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
@@ -48,19 +48,19 @@ class ComposerAutoloaderInitc4b7a1b365668175bb161dcd8889a540
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
- $includeFiles = Composer\Autoload\ComposerStaticInitc4b7a1b365668175bb161dcd8889a540::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
- composerRequirec4b7a1b365668175bb161dcd8889a540($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
- function composerRequirec4b7a1b365668175bb161dcd8889a540($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit944579f5165f615ad6f418376061726e
6
  {
7
  private static $loader;
8
 
19
  return self::$loader;
20
  }
21
 
22
+ spl_autoload_register(array('ComposerAutoloaderInit944579f5165f615ad6f418376061726e', 'loadClassLoader'), true, true);
23
  self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit944579f5165f615ad6f418376061726e', 'loadClassLoader'));
25
 
26
  $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
27
  if ($useStaticLoader) {
28
  require_once __DIR__ . '/autoload_static.php';
29
 
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit944579f5165f615ad6f418376061726e::getInitializer($loader));
31
  } else {
32
  $map = require __DIR__ . '/autoload_namespaces.php';
33
  foreach ($map as $namespace => $path) {
48
  $loader->register(true);
49
 
50
  if ($useStaticLoader) {
51
+ $includeFiles = Composer\Autoload\ComposerStaticInit944579f5165f615ad6f418376061726e::$files;
52
  } else {
53
  $includeFiles = require __DIR__ . '/autoload_files.php';
54
  }
55
  foreach ($includeFiles as $fileIdentifier => $file) {
56
+ composerRequire944579f5165f615ad6f418376061726e($fileIdentifier, $file);
57
  }
58
 
59
  return $loader;
60
  }
61
  }
62
 
63
+ function composerRequire944579f5165f615ad6f418376061726e($fileIdentifier, $file)
64
  {
65
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
66
  require $file;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInitc4b7a1b365668175bb161dcd8889a540
8
  {
9
  public static $files = array (
10
  '0509b34a4bd7aebefeac629c9dc8a978' => __DIR__ . '/..' . '/wpdesk/wp-notice/src/WPDesk/notice-functions.php',
@@ -92,7 +92,6 @@ class ComposerStaticInitc4b7a1b365668175bb161dcd8889a540
92
  );
93
 
94
  public static $classMap = array (
95
- 'Flexible_Shipping_Connect_Shutdown_Notice' => __DIR__ . '/../..' . '/classes/class-flexible-shipping-connect-shutdown-notice.php',
96
  'Flexible_Shipping_Plugin' => __DIR__ . '/../..' . '/classes/class-flexible-shipping-plugin.php',
97
  'Money\\Calculator' => __DIR__ . '/..' . '/moneyphp/money/src/Calculator.php',
98
  'Money\\Calculator\\BcMathCalculator' => __DIR__ . '/..' . '/moneyphp/money/src/Calculator/BcMathCalculator.php',
@@ -576,9 +575,9 @@ class ComposerStaticInitc4b7a1b365668175bb161dcd8889a540
576
  public static function getInitializer(ClassLoader $loader)
577
  {
578
  return \Closure::bind(function () use ($loader) {
579
- $loader->prefixLengthsPsr4 = ComposerStaticInitc4b7a1b365668175bb161dcd8889a540::$prefixLengthsPsr4;
580
- $loader->prefixDirsPsr4 = ComposerStaticInitc4b7a1b365668175bb161dcd8889a540::$prefixDirsPsr4;
581
- $loader->classMap = ComposerStaticInitc4b7a1b365668175bb161dcd8889a540::$classMap;
582
 
583
  }, null, ClassLoader::class);
584
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit944579f5165f615ad6f418376061726e
8
  {
9
  public static $files = array (
10
  '0509b34a4bd7aebefeac629c9dc8a978' => __DIR__ . '/..' . '/wpdesk/wp-notice/src/WPDesk/notice-functions.php',
92
  );
93
 
94
  public static $classMap = array (
 
95
  'Flexible_Shipping_Plugin' => __DIR__ . '/../..' . '/classes/class-flexible-shipping-plugin.php',
96
  'Money\\Calculator' => __DIR__ . '/..' . '/moneyphp/money/src/Calculator.php',
97
  'Money\\Calculator\\BcMathCalculator' => __DIR__ . '/..' . '/moneyphp/money/src/Calculator/BcMathCalculator.php',
575
  public static function getInitializer(ClassLoader $loader)
576
  {
577
  return \Closure::bind(function () use ($loader) {
578
+ $loader->prefixLengthsPsr4 = ComposerStaticInit944579f5165f615ad6f418376061726e::$prefixLengthsPsr4;
579
+ $loader->prefixDirsPsr4 = ComposerStaticInit944579f5165f615ad6f418376061726e::$prefixDirsPsr4;
580
+ $loader->classMap = ComposerStaticInit944579f5165f615ad6f418376061726e::$classMap;
581
 
582
  }, null, ClassLoader::class);
583
  }