Italy Cookie Choices (for EU Cookie Law) - Version 2.5.3

Version Description

Release Date: Sep 29th, 2021

Dev time: 2h

LATEST VERSION FOR PHP 5.3

  • This fixes issue #212
  • And it's time to start a refactoring for this plugin, too much legacy code and too much shitty code
Download this release

Release Info

Developer overclokk
Plugin Icon Italy Cookie Choices (for EU Cookie Law)
Version 2.5.3
Comparing to
See all releases

Code changes from version 2.5.2 to 2.5.3

Files changed (62) hide show
  1. admin/Settings.php +8 -2
  2. admin/css/src/sass/admin.scss +0 -64
  3. admin/css/src/sass/index.php +0 -1
  4. admin/js/src/script.js +1 -1
  5. core/Cookie_Choices.php +33 -20
  6. debug/debug.php +0 -41
  7. functions/general-functions.php +50 -0
  8. init.php +24 -1
  9. italy-cookie-choices.php +2 -2
  10. js/cookiechoices.bak +0 -1
  11. js/cookiechoices.bak2 +0 -279
  12. readme.txt +14 -4
  13. vendor/autoload.php +1 -1
  14. vendor/autoload_commands.php +7 -0
  15. vendor/autoload_framework.php +7 -0
  16. vendor/composer/ClassLoader.php +181 -24
  17. vendor/composer/InstalledVersions.php +337 -0
  18. vendor/composer/LICENSE +1 -1
  19. vendor/composer/autoload_classmap.php +1 -0
  20. vendor/composer/autoload_commands_classmap.php +90 -0
  21. vendor/composer/autoload_commands_real.php +34 -0
  22. vendor/composer/autoload_framework_classmap.php +2473 -0
  23. vendor/composer/autoload_framework_real.php +34 -0
  24. vendor/composer/autoload_psr4.php +1 -0
  25. vendor/composer/autoload_real.php +8 -3
  26. vendor/composer/autoload_static.php +13 -0
  27. vendor/composer/installed.json +0 -47
  28. vendor/composer/installed.php +43 -0
  29. vendor/composer/platform_check.php +26 -0
  30. vendor/overclokk/cookie/LICENSE.md +339 -0
  31. vendor/overclokk/cookie/cookie.php +46 -0
  32. vendor/overclokk/cookie/readme.md +69 -0
  33. vendor/overclokk/cookie/src/Cookie.php +138 -0
  34. vendor/overclokk/cookie/src/Cookie_Interface.php +59 -0
  35. vendor/overclokk/minimum-requirements/README.md +1 -1
  36. vendor/overclokk/minimum-requirements/codeception.dist.yml +0 -59
  37. vendor/overclokk/minimum-requirements/composer.json +0 -23
  38. vendor/overclokk/minimum-requirements/composer.lock +0 -2460
  39. vendor/overclokk/minimum-requirements/minimum-requirements.php +5 -5
  40. vendor/overclokk/minimum-requirements/tests/_bootstrap.php +0 -3
  41. vendor/overclokk/minimum-requirements/tests/_data/dump.sql +0 -1
  42. vendor/overclokk/minimum-requirements/tests/_support/AcceptanceTester.php +0 -26
  43. vendor/overclokk/minimum-requirements/tests/_support/FunctionalTester.php +0 -26
  44. vendor/overclokk/minimum-requirements/tests/_support/Helper/Acceptance.php +0 -10
  45. vendor/overclokk/minimum-requirements/tests/_support/Helper/Functional.php +0 -10
  46. vendor/overclokk/minimum-requirements/tests/_support/Helper/Unit.php +0 -10
  47. vendor/overclokk/minimum-requirements/tests/_support/Helper/Wpunit.php +0 -10
  48. vendor/overclokk/minimum-requirements/tests/_support/UnitTester.php +0 -26
  49. vendor/overclokk/minimum-requirements/tests/_support/WpunitTester.php +0 -26
  50. vendor/overclokk/minimum-requirements/tests/_support/_generated/AcceptanceTesterActions.php +0 -2560
  51. vendor/overclokk/minimum-requirements/tests/_support/_generated/FunctionalTesterActions.php +0 -438
  52. vendor/overclokk/minimum-requirements/tests/_support/_generated/UnitTesterActions.php +0 -344
  53. vendor/overclokk/minimum-requirements/tests/_support/_generated/WpunitTesterActions.php +0 -61
  54. vendor/overclokk/minimum-requirements/tests/acceptance.suite.yml +0 -9
  55. vendor/overclokk/minimum-requirements/tests/acceptance/_bootstrap.php +0 -2
  56. vendor/overclokk/minimum-requirements/tests/functional.suite.yml +0 -7
  57. vendor/overclokk/minimum-requirements/tests/functional/_bootstrap.php +0 -2
  58. vendor/overclokk/minimum-requirements/tests/unit.suite.yml +0 -9
  59. vendor/overclokk/minimum-requirements/tests/unit/_bootstrap.php +0 -2
  60. vendor/overclokk/minimum-requirements/tests/wpunit.suite.yml +0 -7
  61. vendor/overclokk/minimum-requirements/tests/wpunit/Minimum_RequirementsTest.php +0 -143
  62. vendor/overclokk/minimum-requirements/tests/wpunit/_bootstrap.php +0 -2
admin/Settings.php CHANGED
@@ -1514,7 +1514,7 @@ class Settings {
1514
 
1515
  $select = '<select>';
1516
 
1517
- foreach ($arr_key as $key => $value)
1518
  $select .= '<option value="' . $value . '">' . $key . '</option>';
1519
 
1520
  $select .= '</select>';
@@ -1524,7 +1524,13 @@ class Settings {
1524
  $i = 0;
1525
  foreach ( $array as $key => $value ){
1526
 
1527
- $input .= '<div class="italy-cookie-choices-clone-div"><input type="text" class="regular-text" data-type="' . $arr_name . '" value="' . esc_attr( $value ) .'" name="italy_cookie_choices[' . $arr_name . '][' . esc_attr( $value ) .']" id="italy_cookie_choices[' . $arr_name . '][' . esc_attr( $value ) .']"/> ' . $select . ' <span><a class="button add" style="font-size:22px"> + </a> ' . ( $i === 0 ? '<a class="button cancel" style="font-size:22px"> x </a>' : '<a class=" button remove" style="font-size:22px"> × </a>' ) . '</span></div>';
 
 
 
 
 
 
1528
 
1529
  $i++;
1530
 
1514
 
1515
  $select = '<select>';
1516
 
1517
+ foreach ( $arr_key as $key => $value )
1518
  $select .= '<option value="' . $value . '">' . $key . '</option>';
1519
 
1520
  $select .= '</select>';
1524
  $i = 0;
1525
  foreach ( $array as $key => $value ){
1526
 
1527
+ $input .= sprintf(
1528
+ '<div class="italy-cookie-choices-clone-div"><input type="text" class="regular-text" data-type="%1$s" value="%2$s" name="italy_cookie_choices[%1$s][%2$s]" id="italy_cookie_choices[%1$s][%2$s]"/>%3$s<span><a class="button add" style="font-size:22px"> + </a>%4$s</span></div>',
1529
+ $arr_name,
1530
+ esc_attr( $value ),
1531
+ $select,
1532
+ 0 === $i ? '<a class="button cancel" style="font-size:22px"> × </a>' : '<a class=" button remove" style="font-size:22px"> × </a>'
1533
+ );
1534
 
1535
  $i++;
1536
 
admin/css/src/sass/admin.scss DELETED
@@ -1,64 +0,0 @@
1
- // This stylesheet is used to style the admin option form of the plugin.
2
-
3
- // Tabs
4
-
5
- // .ui-state-default {
6
- // display: inline;
7
- // border-color: rgb(204, 204, 204) rgb(204, 204, 204) rgb(241, 241, 241);
8
- // border-width: 1px;
9
- // border-style:solid;
10
- // padding: 10px;
11
- // background: none repeat scroll 0% 0% rgb(228, 228, 228);
12
- // }
13
-
14
- // .ui-tabs-nav {
15
- // padding-bottom: 7px;
16
- // padding-left: 10px;
17
- // border-bottom: 1px solid rgb(204, 204, 204);
18
- // }
19
-
20
- // .ui-tabs-anchor {
21
- // text-decoration: none;
22
- // color:black;
23
- // font-weight: 700;
24
- // font-size: 15px;
25
- // line-height: 24px;
26
- // color: rgb(127, 127, 127);
27
- // }
28
-
29
- // .ui-tabs-anchor:hover,.ui-state-active a {
30
- // color:black;
31
- // }
32
-
33
- // .ui-tabs-active, .ui-tabs-active:hover, .ui-tabs-active:active {
34
- // color: rgb(0, 0, 0);
35
- // background: rgb(239, 239, 239) !important;
36
- // }
37
-
38
- // .postbox h3 {
39
- // padding-left: 10px;
40
- // }
41
-
42
- // #dashboard_right_now a.demo-count:before {
43
- // content: "\f115";
44
- // }
45
-
46
- /*#editor {
47
- font-size: 14px;
48
- height: 260px;
49
- position: relative;
50
- width: 520px;
51
- }
52
- .ace_gutter-cell.ace_error{
53
- background-image: none;
54
- }*/
55
-
56
- .wp-admin select {
57
- min-width: 190px;
58
- vertical-align: unset;
59
- }
60
-
61
- .custom-script-title{
62
- font-weight:bold;
63
- margin:10px 0 15px;
64
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/css/src/sass/index.php DELETED
@@ -1 +0,0 @@
1
- <?php // Silence is golden
 
admin/js/src/script.js CHANGED
@@ -128,7 +128,7 @@
128
 
129
  var select = container.children('select').get(0).innerHTML;
130
 
131
- $('<div class="italy-cookie-choices-clone-div"><input type="text" class="regular-text" data-type="' + arr_name + '" value="" name="italy_cookie_choices[' + arr_name + '][]"/> <select>' + select + '</select> <span><a class="button add" style="font-size:22px"> + </a> <a class=" button remove" style="font-size:22px"> × </a></span></div>').appendTo(container.parent());
132
 
133
  });
134
 
128
 
129
  var select = container.children('select').get(0).innerHTML;
130
 
131
+ $('<div class="italy-cookie-choices-clone-div"><input type="text" class="regular-text" data-type="' + arr_name + '" value="" name="italy_cookie_choices[' + arr_name + '][]"/><select>' + select + '</select><span><a class="button add" style="font-size:22px"> + </a><a class=" button remove" style="font-size:22px"> × </a></span></div>').appendTo( container.parent() );
132
 
133
  });
134
 
core/Cookie_Choices.php CHANGED
@@ -5,13 +5,15 @@
5
 
6
  namespace Italy_Cookie_Choices\Core;
7
 
 
 
8
  class Cookie_Choices{
9
 
10
  /**
11
  * Option
12
  * @var array
13
  */
14
- private $options = array();
15
 
16
  /**
17
  * Default Cookie name
@@ -74,11 +76,18 @@ class Cookie_Choices{
74
  private $block_script = array();
75
 
76
  /**
77
- * [__construct description]
78
  */
79
- public function __construct(){
 
 
 
 
 
 
 
80
 
81
- $this->options = get_option( 'italy_cookie_choices' );
82
 
83
  /**
84
  * Check for second view option
@@ -227,16 +236,8 @@ class Cookie_Choices{
227
  */
228
  add_action( 'wp_footer', array( $this, 'print_script_inline'), -99999 );
229
  }
230
-
231
- /**
232
- * Only for debug
233
- */
234
- // var_dump($_COOKIE);
235
- // var_dump(headers_list());
236
-
237
  }
238
-
239
- }//__construct
240
 
241
  /**
242
  * Disable W3TC Page Cache.
@@ -633,7 +634,6 @@ class Cookie_Choices{
633
 
634
  /**
635
  * Print script inline before </body>
636
- * @return string Print script inline
637
  * @link https://www.cookiechoices.org/
638
  */
639
  public function print_script_inline() {
@@ -853,7 +853,13 @@ class Cookie_Choices{
853
  * function get_string return multilanguage $value
854
  * if isn't installed any language plugin return $value
855
  */
856
- $text = $this->wp_json_encode( wp_kses_post( get_string( 'Italy Cookie Choices', 'Banner text', $this->options['text'] ) ) );
 
 
 
 
 
 
857
 
858
  $url = esc_url( get_string( 'Italy Cookie Choices', 'Banner url', $this->options['url'] ) );
859
 
@@ -863,12 +869,19 @@ class Cookie_Choices{
863
 
864
  /**
865
  * Snippet for display banner
866
- * @uses json_encode Funzione usate per il testo del messaggio.
867
- * Ricordarsi che aggiunge già
868
- * le doppie virgolette "" alla stringa
869
  * @var string
870
  */
871
- $banner = 'document.addEventListener("DOMContentLoaded", function(event) {cookieChoices.showCookieConsent' . $banner . '(' . $text . ', "' . $button_text . '", "' . $anchor_text . '", "' . $url . '");});';
 
 
 
 
 
 
 
872
 
873
  /**
874
  * Noscript snippet in case browser has JavaScript disabled
@@ -934,4 +947,4 @@ class Cookie_Choices{
934
  return $cookie_list;
935
 
936
  }
937
- } // class
5
 
6
  namespace Italy_Cookie_Choices\Core;
7
 
8
+ use Overclokk\Cookie\Cookie;
9
+
10
  class Cookie_Choices{
11
 
12
  /**
13
  * Option
14
  * @var array
15
  */
16
+ private $options;
17
 
18
  /**
19
  * Default Cookie name
76
  private $block_script = array();
77
 
78
  /**
79
+ * @var Cookie
80
  */
81
+ private $cookie;
82
+
83
+
84
+ public function __construct( array $options, Cookie $cookie ) {
85
+ $this->cookie = $cookie;
86
+ $this->options = $options;
87
+ }
88
+
89
 
90
+ public function run(){
91
 
92
  /**
93
  * Check for second view option
236
  */
237
  add_action( 'wp_footer', array( $this, 'print_script_inline'), -99999 );
238
  }
 
 
 
 
 
 
 
239
  }
240
+ }
 
241
 
242
  /**
243
  * Disable W3TC Page Cache.
634
 
635
  /**
636
  * Print script inline before </body>
 
637
  * @link https://www.cookiechoices.org/
638
  */
639
  public function print_script_inline() {
853
  * function get_string return multilanguage $value
854
  * if isn't installed any language plugin return $value
855
  */
856
+ $text = \wp_kses_post(
857
+ \get_string(
858
+ 'Italy Cookie Choices',
859
+ 'Banner text',
860
+ $this->options['text']
861
+ )
862
+ );
863
 
864
  $url = esc_url( get_string( 'Italy Cookie Choices', 'Banner url', $this->options['url'] ) );
865
 
869
 
870
  /**
871
  * Snippet for display banner
872
+ * Il testo se contiene il singolo apice '
873
+ * viene filtrato aggiungendo \' solo nel testo
874
+ * essendo i singoli apici usati per wrappare il testo stesso
875
  * @var string
876
  */
877
+ $banner = \sprintf(
878
+ 'document.addEventListener("DOMContentLoaded", function(event) {cookieChoices.showCookieConsent%s(\'%s\', "%s", "%s", "%s");});',
879
+ $banner,
880
+ addcslashes( $text, '\'' ),
881
+ $button_text,
882
+ $anchor_text,
883
+ $url
884
+ );
885
 
886
  /**
887
  * Noscript snippet in case browser has JavaScript disabled
947
  return $cookie_list;
948
 
949
  }
950
+ }
debug/debug.php DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * This will make shure the plugin files can't be accessed within the web browser directly.
4
- */
5
- if ( !defined( 'WPINC' ) )
6
- die;
7
- /**
8
- * This file is only for internal use
9
- */
10
-
11
-
12
- /**
13
- * @link http://wordpress.stackexchange.com/questions/162862/wordpress-hooks-run-sequence
14
- * @link http://codex.wordpress.org/Plugin_API/Action_Reference
15
- * wp_footer (1)
16
- * wp_print_footer_scripts (1)
17
- * shutdown (1)
18
- */
19
- add_action( 'shutdown', function(){
20
- var_dump($GLOBALS['wp_actions']);
21
- foreach( $GLOBALS['wp_actions'] as $action => $count )
22
- printf( '%s (%d) <br/>' . PHP_EOL, $action, $count );
23
- });
24
-
25
-
26
- /**
27
- * Sperimentale, aggingereattributo style con altezza minima per quando
28
- * si attiva il lazyloading sulle immagini
29
- */
30
- // function kia_attachment_attributes( $attr ) {
31
- /**
32
- * @todo $attr è un array con 3 valori
33
- * aggiungere un attributo style e dare min-height
34
- * con altezza presa dalla misura dell'immagine
35
- * Per esempio se è la misura media deve prendere il valore di 300px
36
- * Se questo sistema funziona ricordarsi di togliere lo stile dentro il carousel
37
- */
38
- // // var_dump($attr);
39
- // return $attr;
40
- // }
41
- // add_filter('wp_get_attachment_image_attributes', 'kia_attachment_attributes', 10, 1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
functions/general-functions.php CHANGED
@@ -99,3 +99,53 @@ function is_bot() {
99
  return false;
100
  }
101
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  return false;
100
  }
101
  }
102
+
103
+ /**
104
+ * Function for debugging purpose
105
+ *
106
+ * @param string $value [description]
107
+ * @return string [description]
108
+ */
109
+ function is_debug() {
110
+
111
+ return defined( 'WP_DEBUG' ) && WP_DEBUG;
112
+ // return false;
113
+ }
114
+
115
+ if ( ! function_exists( 'wp_json_encode' ) ) {
116
+
117
+ /**
118
+ * Encode a variable into JSON, with some sanity checks.
119
+ *
120
+ * @since 4.1.0
121
+ *
122
+ * @param mixed $data Variable (usually an array or object) to encode as JSON.
123
+ * @param int $options Optional. Options to be passed to json_encode(). Default 0.
124
+ * @param int $depth Optional. Maximum depth to walk through $data. Must be
125
+ * greater than 0. Default 512.
126
+ * @return bool|string The JSON encoded string, or false if it cannot be encoded.
127
+ */
128
+ function wp_json_encode( $data, $options = 0, $depth = 512 ) {
129
+
130
+ /**
131
+ * json_encode() has had extra params added over the years.
132
+ * $options was added in 5.3, and $depth in 5.5.
133
+ * We need to make sure we call it with the correct arguments.
134
+ */
135
+ if ( version_compare( PHP_VERSION, '5.5', '>=' ) )
136
+ $args = array( $data, $options, $depth );
137
+ elseif ( version_compare( PHP_VERSION, '5.3', '>=' ) )
138
+ $args = array( $data, $options );
139
+ else $args = array( $data );
140
+
141
+ $json = call_user_func_array( 'json_encode', $args );
142
+
143
+ // If json_encode() was successful, no need to do more sanity checking.
144
+ // ... unless we're in an old version of PHP, and json_encode() returned
145
+ // a string containing 'null'. Then we need to do more sanity checking.
146
+ if ( false !== $json && ( version_compare( PHP_VERSION, '5.5', '>=' ) || false === strpos( $json, 'null' ) ) )
147
+ return $json;
148
+
149
+ return call_user_func_array( 'json_encode', $args );
150
+ }
151
+ }
init.php CHANGED
@@ -11,6 +11,8 @@
11
 
12
  namespace Italy_Cookie_Choices\Core;
13
 
 
 
14
  if ( is_admin() ) {
15
  return;
16
  }
@@ -23,4 +25,25 @@ if ( is_sitemaps_xml() ) {
23
  return;
24
  }
25
 
26
- $icc_cookie_choices = new Cookie_Choices();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  namespace Italy_Cookie_Choices\Core;
13
 
14
+ use Overclokk\Cookie\Cookie;
15
+
16
  if ( is_admin() ) {
17
  return;
18
  }
25
  return;
26
  }
27
 
28
+ $options = (array) \get_option( 'italy_cookie_choices' );
29
+
30
+ if ( empty( $options['active'] ) ) {
31
+ return;
32
+ }
33
+
34
+ if ( 'wp-login.php' === $GLOBALS['pagenow'] ) {
35
+ return;
36
+ }
37
+ // if ( isset( $_COOKIE[ $options['cookie_name'] ] ) ) {
38
+ // return;
39
+ // }
40
+
41
+ $cookie = new Cookie();
42
+
43
+ /**
44
+ * @todo https://wordpress.org/support/topic/disattivazione-testo-embed-bloccati/
45
+ */
46
+
47
+ $icc_cookie_choices = new Cookie_Choices( $options, $cookie );
48
+ //$icc_cookie_choices = new Cookie_Choices();
49
+ $icc_cookie_choices->run();
italy-cookie-choices.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
- * Plugin Name: Italy Cookie Choices (for EU Cookie Law)
4
  * Plugin URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
5
  * Description: Italy Cookie Choices allows you to easily comply with the european cookie law and block third part cookie in your page.
6
- * Version: 2.5.2
7
  * Author: Enea Overclokk, Andrea Pernici, Andrea Cardinale
8
  * Author URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
9
  * Text Domain: italy-cookie-choices
1
  <?php
2
  /**
3
+ * Plugin Name: Italy Cookie Choices (for EU Cookie Law & Cookie Notice)
4
  * Plugin URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
5
  * Description: Italy Cookie Choices allows you to easily comply with the european cookie law and block third part cookie in your page.
6
+ * Version: 2.5.3
7
  * Author: Enea Overclokk, Andrea Pernici, Andrea Cardinale
8
  * Author URI: https://github.com/ItalyCookieChoices/italy-cookie-choices
9
  * Text Domain: italy-cookie-choices
js/cookiechoices.bak DELETED
@@ -1 +0,0 @@
1
- !function(e){if(e.cookieChoices)return e.cookieChoices;var t=e.document,n="textContent"in t.body,i=function(){function e(e,n,i,o){var d="position:fixed;width:100%;background-color:#eee;margin:0; left:0; top:0;padding:4px;z-index:9999;text-align:center;",l=t.createElement("div");return l.id=C,l.style.cssText=d,l.appendChild(r(e)),i&&o&&l.appendChild(c(i,o)),l.appendChild(a(n)),l}function i(e,n,i,o){var d="position:fixed;width:100%;height:100%;z-index:999;top:0;left:0;opacity:0.5;filter:alpha(opacity=50);background-color:#ccc;",l="z-index:1000;position:fixed;left:50%;top:50%",p="position:relative;left:-50%;margin-top:-25%;background-color:#fff;padding:20px;box-shadow:4px 4px 25px #888;",s=t.createElement("div");s.id=C;var f=t.createElement("div");f.style.cssText=d;var u=t.createElement("div");u.style.cssText=p;var h=t.createElement("div");h.style.cssText=l;var x=a(n);return x.style.display="block",x.style.textAlign="right",x.style.marginTop="8px",u.appendChild(r(e)),i&&o&&u.appendChild(c(i,o)),u.appendChild(x),h.appendChild(u),s.appendChild(f),s.appendChild(h),s}function o(e,t){n?e.textContent=t:e.innerText=t}function r(e){var n=t.createElement("span");return o(n,e),n}function a(e){var n=t.createElement("a");return o(n,e),n.id=g,n.href="#",n.style.marginLeft="24px",n}function c(e,n){var i=t.createElement("a");return o(i,e),i.href=n,i.target="_blank",i.style.marginLeft="8px",i}function d(){return u(),f(),!1}function l(n,o,r,a,c){if(h()){f();var l=c?i(n,o,r,a):e(n,o,r,a),p=t.createDocumentFragment();p.appendChild(l),t.body.appendChild(p.cloneNode(!0)),t.getElementById(g).onclick=d}}function p(e,t,n,i){l(e,t,n,i,!1)}function s(e,t,n,i){l(e,t,n,i,!0)}function f(){var e=t.getElementById(C);null!=e&&e.parentNode.removeChild(e)}function u(){var e=new Date;e.setFullYear(e.getFullYear()+1),t.cookie=x+"=y; expires="+e.toGMTString()}function h(){return!t.cookie.match(new RegExp(x+"=([^;]+)"))}var x="displayCookieConsent",C="cookieChoiceInfo",g="cookieChoiceDismiss",m={};return m.showCookieConsentBar=p,m.showCookieConsentDialog=s,m}();return e.cookieChoices=i,i}(this);
 
js/cookiechoices.bak2 DELETED
@@ -1,279 +0,0 @@
1
- /*
2
- Copyright 2014 Google Inc. All rights reserved.
3
-
4
- Licensed under the Apache License, Version 2.0 (the "License");
5
- you may not use this file except in compliance with the License.
6
- You may obtain a copy of the License at
7
-
8
- http://www.apache.org/licenses/LICENSE-2.0
9
-
10
- Unless required by applicable law or agreed to in writing, software
11
- distributed under the License is distributed on an "AS IS" BASIS,
12
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- See the License for the specific language governing permissions and
14
- limitations under the License.
15
- */
16
-
17
- function allowCookie() {
18
-
19
- cookieChoices.removeCookieConsent();
20
-
21
- var x=document.getElementsByClassName("el");
22
-
23
- // var patt = new RegExp("<script.*?\/script>");
24
- var patt = new RegExp("<script.*?");
25
-
26
- var i;
27
- for (i = 0; i < x.length; i++) {
28
-
29
- x[i].removeChild(x[i].childNodes[0]);
30
-
31
- // console.log(jsArr[i]);
32
-
33
- var res = patt.test(jsArr[i]);
34
- // console.log(res);
35
-
36
- if (res) {
37
- // console.log(jsArr[i]);
38
-
39
-
40
- var regexURL = /<script.*?src="(.*?)"/;
41
-
42
- var URL = regexURL.test(jsArr[i]);
43
-
44
- if (URL) {
45
- URL = regexURL.exec(jsArr[i]);
46
- loadJS(URL[1]);
47
- }
48
-
49
-
50
- var regex = /<script\b[^>]*>([\s\S]*?)<\/script>/gm;
51
-
52
- var code = regex.exec(jsArr[i]);
53
-
54
- if ( code[1] ) appendJS(code[1]);
55
-
56
-
57
-
58
-
59
- } else {
60
-
61
- var str = x[i].innerHTML;
62
- // var res = str.replace(/<!--(.*?)-->/g, "$1");
63
- // Prendo l\'array creato e all\'accettazione ogni valore è messo al suo posto
64
- res = str.replace(/<cookie>/g, jsArr[i]);
65
- x[i].innerHTML = res;
66
- }
67
-
68
- // var cookieName=coNA;var expiryDate=new Date();expiryDate.setFullYear(expiryDate.getFullYear()+1);document.cookie=cookieName+"=; expires="+expiryDate.toGMTString()+"; path=/";
69
-
70
- // var cookieName=coNA;var expiryDate=new Date();expiryDate.setFullYear(expiryDate.getFullYear() + 1);
71
- // document.cookie = cookieName + '=y; expires=' + expiryDate.toGMTString();
72
- // document.cookie = cookieName + '=' + coVA + '; expires=' + expiryDate.toGMTString() + ';path=/';
73
-
74
- }
75
- }
76
-
77
- function loadJS(file) {
78
- // DOM: Create the script element
79
- var jsElm = document.createElement("script");
80
- // set the type attribute
81
- jsElm.type = "application/javascript";
82
- // make the script element load file
83
- jsElm.src = file;
84
- // finally insert the element to the body element in order to load the script
85
- document.body.appendChild(jsElm);
86
- }
87
-
88
- function appendJS(script){
89
- var s = document.createElement("script");
90
- s.type = "text/javascript";
91
- var code = script;
92
- try {
93
- s.appendChild(document.createTextNode(code));
94
- document.body.appendChild(s);
95
- } catch (e) {
96
- s.text = code;
97
- document.body.appendChild(s);
98
- }
99
- }
100
-
101
-
102
-
103
-
104
-
105
-
106
-
107
- (function(window) {
108
-
109
- if (!!window.cookieChoices) {
110
- return window.cookieChoices;
111
- }
112
-
113
- var document = window.document;
114
- var html = document.documentElement;//Per aggiungere un margin-top al tag HTML
115
- // IE8 does not support textContent, so we should fallback to innerText.
116
- var supportsTextContent = 'textContent' in document.body;
117
-
118
- var cookieChoices = (function() {
119
-
120
- // var cookieName = 'displayCookieConsent';
121
- var cookieName = coNA;
122
- var cookieConsentId = 'cookieChoiceInfo';
123
- var dismissLinkId = 'cookieChoiceDismiss';
124
-
125
- function _createHeaderElement(cookieText, dismissText, linkText, linkHref) {
126
-
127
- if( htmlM ) html.className += ' icc';
128
-
129
- var butterBarStyles = 'position:' + elPos + ';width:100%;background-color:' + bgB + ';' +
130
- 'margin:0; left:0; top:0;padding:4px;z-index:9999;text-align:center;';
131
-
132
- var cookieConsentElement = document.createElement('div');
133
- cookieConsentElement.id = cookieConsentId;
134
- cookieConsentElement.style.cssText = butterBarStyles;
135
- cookieConsentElement.appendChild(_createConsentText(cookieText));
136
-
137
- if (!!linkText && !!linkHref) {
138
- cookieConsentElement.appendChild(_createInformationLink(linkText, linkHref));
139
- }
140
- cookieConsentElement.appendChild(_createDismissLink(dismissText));
141
- return cookieConsentElement;
142
- }
143
-
144
- function _createDialogElement(cookieText, dismissText, linkText, linkHref) {
145
- var glassStyle = 'position:fixed;width:100%;height:100%;z-index:999;' +
146
- 'top:0;left:0;opacity:0.5;filter:alpha(opacity=50);' +
147
- 'background-color:#ccc;';
148
- var dialogStyle = 'z-index:9999;position:fixed;left:50%;top:50%;bottom:0%;';
149
- var contentStyle = 'position:relative;left:-50%;margin-top:-25%;' +
150
- 'background-color:' + bgB + ';padding:20px;box-shadow:4px 4px 25px #888;';
151
-
152
- var cookieConsentElement = document.createElement('div');
153
- cookieConsentElement.id = cookieConsentId;
154
-
155
- var glassPanel = document.createElement('div');
156
- glassPanel.style.cssText = glassStyle;
157
-
158
- var content = document.createElement('div');
159
- content.style.cssText = contentStyle;
160
-
161
- var dialog = document.createElement('div');
162
- dialog.style.cssText = dialogStyle;
163
-
164
- var dismissLink = _createDismissLink(dismissText);
165
- dismissLink.style.display = 'block';
166
- dismissLink.style.textAlign = 'right';
167
- dismissLink.style.marginTop = '8px';
168
-
169
- content.appendChild(_createConsentText(cookieText));
170
- if (!!linkText && !!linkHref) {
171
- content.appendChild(_createInformationLink(linkText, linkHref));
172
- }
173
- content.appendChild(dismissLink);
174
- dialog.appendChild(content);
175
- cookieConsentElement.appendChild(glassPanel);
176
- cookieConsentElement.appendChild(dialog);
177
- return cookieConsentElement;
178
- }
179
-
180
- function _setElementText(element, text) {
181
- if (supportsTextContent) {
182
- element.textContent = text;
183
- } else {
184
- element.innerText = text;
185
- }
186
- }
187
-
188
- function _createConsentText(cookieText) {
189
- var consentText = document.createElement('span');
190
- _setElementText(consentText, cookieText);
191
- return consentText;
192
- }
193
-
194
- function _createDismissLink(dismissText) {
195
- var dismissLink = document.createElement('a');
196
- _setElementText(dismissLink, dismissText);
197
- dismissLink.id = dismissLinkId;
198
- dismissLink.className = closeClass;
199
- dismissLink.href = '#';
200
- dismissLink.style.marginLeft = '24px';
201
- return dismissLink;
202
- }
203
-
204
- function _createInformationLink(linkText, linkHref) {
205
- var infoLink = document.createElement('a');
206
- _setElementText(infoLink, linkText);
207
- infoLink.className = infoClass;
208
- infoLink.href = linkHref;
209
- if (tar) infoLink.target = '_blank';
210
- infoLink.style.marginLeft = '8px';
211
- return infoLink;
212
- }
213
-
214
- function _dismissLinkClick() {
215
- if ( htmlM ) html.classList.remove("icc");
216
- _saveUserPreference();
217
- _removeCookieConsent();
218
- if ( rel ) document.location.reload();
219
- return false;
220
- }
221
-
222
- function _showCookieConsent(cookieText, dismissText, linkText, linkHref, isDialog) {
223
- if (_shouldDisplayConsent()) {
224
- _removeCookieConsent();
225
- var consentElement = (isDialog) ?
226
- _createDialogElement(cookieText, dismissText, linkText, linkHref) :
227
- _createHeaderElement(cookieText, dismissText, linkText, linkHref);
228
- var fragment = document.createDocumentFragment();
229
- fragment.appendChild(consentElement);
230
- document.body.appendChild(fragment.cloneNode(true));
231
- document.getElementById(dismissLinkId).onclick = _dismissLinkClick;
232
- // document.onclick = _dismissLinkClick;
233
- if (scroll) document.onscroll = _dismissLinkClick;
234
- }
235
- }
236
-
237
- function showCookieConsentBar(cookieText, dismissText, linkText, linkHref) {
238
- _showCookieConsent(cookieText, dismissText, linkText, linkHref, false);
239
- }
240
-
241
- function showCookieConsentDialog(cookieText, dismissText, linkText, linkHref) {
242
- _showCookieConsent(cookieText, dismissText, linkText, linkHref, true);
243
- }
244
-
245
- function _removeCookieConsent() {
246
- var cookieChoiceElement = document.getElementById(cookieConsentId);
247
- if (cookieChoiceElement !== null) {
248
- cookieChoiceElement.parentNode.removeChild(cookieChoiceElement);
249
- }
250
- }
251
-
252
- function removeCookieConsent(){
253
- // _removeCookieConsent();
254
- _dismissLinkClick();
255
- }
256
-
257
- function _saveUserPreference() {
258
- // Set the cookie expiry to one year after today.
259
- var expiryDate = new Date();
260
- expiryDate.setFullYear(expiryDate.getFullYear() + 1);
261
- // document.cookie = cookieName + '=y; expires=' + expiryDate.toGMTString();
262
- document.cookie = cookieName + '=' + coVA + '; expires=' + expiryDate.toGMTString() + ';path=/';
263
- }
264
-
265
- function _shouldDisplayConsent() {
266
- // Display the header only if the cookie has not been set.
267
- return !document.cookie.match(new RegExp(cookieName + '=([^;]+)'));
268
- }
269
-
270
- var exports = {};
271
- exports.showCookieConsentBar = showCookieConsentBar;
272
- exports.showCookieConsentDialog = showCookieConsentDialog;
273
- exports.removeCookieConsent = removeCookieConsent;
274
- return exports;
275
- })();
276
-
277
- window.cookieChoices = cookieChoices;
278
- return cookieChoices;
279
- })(this);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -1,15 +1,15 @@
1
- === Italy Cookie Choices (for EU Cookie Law) ===
2
  Contributors: overclokk, andreapernici, cardinaleandrea
3
  Donate link:
4
- Tags: compliance, cookie law, cookies, eu cookie law, eu law, eu privacy directive, privacy, privacy directive, notification, privacy law, cookie law banner, implied consent, third party script, third party cookie
5
  Requires at least: 3.5
6
  Requires PHP: 5.3
7
  Tested up to: 6.0
8
- Stable tag: 2.5.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
12
- Italy Cookie Choices allows you to easily comply with the european cookie law and block third part cookie in your page.
13
 
14
  Italy Cookie Choices allows you to easily comply with the european cookie law, showing
15
  a notice to the user only the very first time that visits your website without degrading website performance and remove all the occurence of third party embed inside your site until consent, fully customizable also with your custom css.
@@ -116,6 +116,16 @@ if it doesn't work activate standard theme and try
116
 
117
  == Changelog ==
118
 
 
 
 
 
 
 
 
 
 
 
119
  = 2.5.2 =
120
  Release Date: November 13rd, 2018
121
 
1
+ === Italy Cookie Choices (for EU Cookie Law & Cookie Notice) ===
2
  Contributors: overclokk, andreapernici, cardinaleandrea
3
  Donate link:
4
+ Tags: cookie notice, cookie law, cookie choices, cookies, eu cookie law, eu law, eu privacy directive, privacy, privacy directive, notification, privacy law, cookie law banner, implied consent, third party script, third party cookie, compliance
5
  Requires at least: 3.5
6
  Requires PHP: 5.3
7
  Tested up to: 6.0
8
+ Stable tag: 2.5.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
12
+ The most complete cookie consent to easily comply with the european cookie law, display cookie notice and block third party cookie without degrading website performance.
13
 
14
  Italy Cookie Choices allows you to easily comply with the european cookie law, showing
15
  a notice to the user only the very first time that visits your website without degrading website performance and remove all the occurence of third party embed inside your site until consent, fully customizable also with your custom css.
116
 
117
  == Changelog ==
118
 
119
+ = 2.5.3 =
120
+ Release Date: Sep 29th, 2021
121
+
122
+ Dev time: 2h
123
+
124
+ LATEST VERSION FOR PHP 5.3
125
+
126
+ * [This fixes issue #212](https://github.com/ItalyCookieChoices/italy-cookie-choices/issues/212)
127
+ * And it's time to start a refactoring for this plugin, too much legacy code and too much shitty code
128
+
129
  = 2.5.2 =
130
  Release Date: November 13rd, 2018
131
 
vendor/autoload.php CHANGED
@@ -2,6 +2,6 @@
2
 
3
  // autoload.php @generated by Composer
4
 
5
- require_once __DIR__ . '/composer' . '/autoload_real.php';
6
 
7
  return ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70::getLoader();
2
 
3
  // autoload.php @generated by Composer
4
 
5
+ require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
  return ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70::getLoader();
vendor/autoload_commands.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_commands.php @generated by Composer
4
+
5
+ require_once __DIR__ . '/composer/autoload_commands_real.php';
6
+
7
+ return ComposerAutoloaderInit02ced3cab243146ae94748c93c012e94::getLoader();
vendor/autoload_framework.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_framework.php @generated by Composer
4
+
5
+ require_once __DIR__ . '/composer/autoload_framework_real.php';
6
+
7
+ return ComposerAutoloaderInit8a8d6394d3ecdc487d7f24364cd1b9cc::getLoader();
vendor/composer/ClassLoader.php CHANGED
@@ -37,56 +37,130 @@ namespace Composer\Autoload;
37
  *
38
  * @author Fabien Potencier <fabien@symfony.com>
39
  * @author Jordi Boggiano <j.boggiano@seld.be>
40
- * @see http://www.php-fig.org/psr/psr-0/
41
- * @see http://www.php-fig.org/psr/psr-4/
42
  */
43
  class ClassLoader
44
  {
 
 
 
45
  // PSR-4
 
 
 
 
46
  private $prefixLengthsPsr4 = array();
 
 
 
 
47
  private $prefixDirsPsr4 = array();
 
 
 
 
48
  private $fallbackDirsPsr4 = array();
49
 
50
  // PSR-0
 
 
 
 
51
  private $prefixesPsr0 = array();
 
 
 
 
52
  private $fallbackDirsPsr0 = array();
53
 
 
54
  private $useIncludePath = false;
 
 
 
 
 
55
  private $classMap = array();
 
 
56
  private $classMapAuthoritative = false;
 
 
 
 
 
57
  private $missingClasses = array();
58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
  public function getPrefixes()
60
  {
61
  if (!empty($this->prefixesPsr0)) {
62
- return call_user_func_array('array_merge', $this->prefixesPsr0);
63
  }
64
 
65
  return array();
66
  }
67
 
 
 
 
 
68
  public function getPrefixesPsr4()
69
  {
70
  return $this->prefixDirsPsr4;
71
  }
72
 
 
 
 
 
73
  public function getFallbackDirs()
74
  {
75
  return $this->fallbackDirsPsr0;
76
  }
77
 
 
 
 
 
78
  public function getFallbackDirsPsr4()
79
  {
80
  return $this->fallbackDirsPsr4;
81
  }
82
 
 
 
 
 
83
  public function getClassMap()
84
  {
85
  return $this->classMap;
86
  }
87
 
88
  /**
89
- * @param array $classMap Class to filename map
 
 
 
90
  */
91
  public function addClassMap(array $classMap)
92
  {
@@ -101,9 +175,11 @@ class ClassLoader
101
  * Registers a set of PSR-0 directories for a given prefix, either
102
  * appending or prepending to the ones previously set for this prefix.
103
  *
104
- * @param string $prefix The prefix
105
- * @param array|string $paths The PSR-0 root directories
106
- * @param bool $prepend Whether to prepend the directories
 
 
107
  */
108
  public function add($prefix, $paths, $prepend = false)
109
  {
@@ -146,11 +222,13 @@ class ClassLoader
146
  * Registers a set of PSR-4 directories for a given namespace, either
147
  * appending or prepending to the ones previously set for this namespace.
148
  *
149
- * @param string $prefix The prefix/namespace, with trailing '\\'
150
- * @param array|string $paths The PSR-4 base directories
151
- * @param bool $prepend Whether to prepend the directories
152
  *
153
  * @throws \InvalidArgumentException
 
 
154
  */
155
  public function addPsr4($prefix, $paths, $prepend = false)
156
  {
@@ -194,8 +272,10 @@ class ClassLoader
194
  * Registers a set of PSR-0 directories for a given prefix,
195
  * replacing any others previously set for this prefix.
196
  *
197
- * @param string $prefix The prefix
198
- * @param array|string $paths The PSR-0 base directories
 
 
199
  */
200
  public function set($prefix, $paths)
201
  {
@@ -210,10 +290,12 @@ class ClassLoader
210
  * Registers a set of PSR-4 directories for a given namespace,
211
  * replacing any others previously set for this namespace.
212
  *
213
- * @param string $prefix The prefix/namespace, with trailing '\\'
214
- * @param array|string $paths The PSR-4 base directories
215
  *
216
  * @throws \InvalidArgumentException
 
 
217
  */
218
  public function setPsr4($prefix, $paths)
219
  {
@@ -233,6 +315,8 @@ class ClassLoader
233
  * Turns on searching the include path for class files.
234
  *
235
  * @param bool $useIncludePath
 
 
236
  */
237
  public function setUseIncludePath($useIncludePath)
238
  {
@@ -255,6 +339,8 @@ class ClassLoader
255
  * that have not been registered with the class map.
256
  *
257
  * @param bool $classMapAuthoritative
 
 
258
  */
259
  public function setClassMapAuthoritative($classMapAuthoritative)
260
  {
@@ -271,29 +357,70 @@ class ClassLoader
271
  return $this->classMapAuthoritative;
272
  }
273
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  /**
275
  * Registers this instance as an autoloader.
276
  *
277
  * @param bool $prepend Whether to prepend the autoloader or not
 
 
278
  */
279
  public function register($prepend = false)
280
  {
281
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
 
 
 
 
 
 
 
 
 
 
 
282
  }
283
 
284
  /**
285
  * Unregisters this instance as an autoloader.
 
 
286
  */
287
  public function unregister()
288
  {
289
  spl_autoload_unregister(array($this, 'loadClass'));
 
 
 
 
290
  }
291
 
292
  /**
293
  * Loads the given class or interface.
294
  *
295
  * @param string $class The name of the class
296
- * @return bool|null True if loaded, null otherwise
297
  */
298
  public function loadClass($class)
299
  {
@@ -302,6 +429,8 @@ class ClassLoader
302
 
303
  return true;
304
  }
 
 
305
  }
306
 
307
  /**
@@ -313,11 +442,6 @@ class ClassLoader
313
  */
314
  public function findFile($class)
315
  {
316
- // work around for PHP 5.3.0 - 5.3.2 https://bugs.php.net/50731
317
- if ('\\' == $class[0]) {
318
- $class = substr($class, 1);
319
- }
320
-
321
  // class map lookup
322
  if (isset($this->classMap[$class])) {
323
  return $this->classMap[$class];
@@ -325,6 +449,12 @@ class ClassLoader
325
  if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
326
  return false;
327
  }
 
 
 
 
 
 
328
 
329
  $file = $this->findFileWithExtension($class, '.php');
330
 
@@ -333,6 +463,10 @@ class ClassLoader
333
  $file = $this->findFileWithExtension($class, '.hh');
334
  }
335
 
 
 
 
 
336
  if (false === $file) {
337
  // Remember that this class does not exist.
338
  $this->missingClasses[$class] = true;
@@ -341,6 +475,21 @@ class ClassLoader
341
  return $file;
342
  }
343
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
344
  private function findFileWithExtension($class, $ext)
345
  {
346
  // PSR-4 lookup
@@ -348,10 +497,14 @@ class ClassLoader
348
 
349
  $first = $class[0];
350
  if (isset($this->prefixLengthsPsr4[$first])) {
351
- foreach ($this->prefixLengthsPsr4[$first] as $prefix => $length) {
352
- if (0 === strpos($class, $prefix)) {
353
- foreach ($this->prefixDirsPsr4[$prefix] as $dir) {
354
- if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) {
 
 
 
 
355
  return $file;
356
  }
357
  }
@@ -408,6 +561,10 @@ class ClassLoader
408
  * Scope isolated include.
409
  *
410
  * Prevents access to $this/self from included files.
 
 
 
 
411
  */
412
  function includeFile($file)
413
  {
37
  *
38
  * @author Fabien Potencier <fabien@symfony.com>
39
  * @author Jordi Boggiano <j.boggiano@seld.be>
40
+ * @see https://www.php-fig.org/psr/psr-0/
41
+ * @see https://www.php-fig.org/psr/psr-4/
42
  */
43
  class ClassLoader
44
  {
45
+ /** @var ?string */
46
+ private $vendorDir;
47
+
48
  // PSR-4
49
+ /**
50
+ * @var array[]
51
+ * @psalm-var array<string, array<string, int>>
52
+ */
53
  private $prefixLengthsPsr4 = array();
54
+ /**
55
+ * @var array[]
56
+ * @psalm-var array<string, array<int, string>>
57
+ */
58
  private $prefixDirsPsr4 = array();
59
+ /**
60
+ * @var array[]
61
+ * @psalm-var array<string, string>
62
+ */
63
  private $fallbackDirsPsr4 = array();
64
 
65
  // PSR-0
66
+ /**
67
+ * @var array[]
68
+ * @psalm-var array<string, array<string, string[]>>
69
+ */
70
  private $prefixesPsr0 = array();
71
+ /**
72
+ * @var array[]
73
+ * @psalm-var array<string, string>
74
+ */
75
  private $fallbackDirsPsr0 = array();
76
 
77
+ /** @var bool */
78
  private $useIncludePath = false;
79
+
80
+ /**
81
+ * @var string[]
82
+ * @psalm-var array<string, string>
83
+ */
84
  private $classMap = array();
85
+
86
+ /** @var bool */
87
  private $classMapAuthoritative = false;
88
+
89
+ /**
90
+ * @var bool[]
91
+ * @psalm-var array<string, bool>
92
+ */
93
  private $missingClasses = array();
94
 
95
+ /** @var ?string */
96
+ private $apcuPrefix;
97
+
98
+ /**
99
+ * @var self[]
100
+ */
101
+ private static $registeredLoaders = array();
102
+
103
+ /**
104
+ * @param ?string $vendorDir
105
+ */
106
+ public function __construct($vendorDir = null)
107
+ {
108
+ $this->vendorDir = $vendorDir;
109
+ }
110
+
111
+ /**
112
+ * @return string[]
113
+ */
114
  public function getPrefixes()
115
  {
116
  if (!empty($this->prefixesPsr0)) {
117
+ return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
118
  }
119
 
120
  return array();
121
  }
122
 
123
+ /**
124
+ * @return array[]
125
+ * @psalm-return array<string, array<int, string>>
126
+ */
127
  public function getPrefixesPsr4()
128
  {
129
  return $this->prefixDirsPsr4;
130
  }
131
 
132
+ /**
133
+ * @return array[]
134
+ * @psalm-return array<string, string>
135
+ */
136
  public function getFallbackDirs()
137
  {
138
  return $this->fallbackDirsPsr0;
139
  }
140
 
141
+ /**
142
+ * @return array[]
143
+ * @psalm-return array<string, string>
144
+ */
145
  public function getFallbackDirsPsr4()
146
  {
147
  return $this->fallbackDirsPsr4;
148
  }
149
 
150
+ /**
151
+ * @return string[] Array of classname => path
152
+ * @psalm-var array<string, string>
153
+ */
154
  public function getClassMap()
155
  {
156
  return $this->classMap;
157
  }
158
 
159
  /**
160
+ * @param string[] $classMap Class to filename map
161
+ * @psalm-param array<string, string> $classMap
162
+ *
163
+ * @return void
164
  */
165
  public function addClassMap(array $classMap)
166
  {
175
  * Registers a set of PSR-0 directories for a given prefix, either
176
  * appending or prepending to the ones previously set for this prefix.
177
  *
178
+ * @param string $prefix The prefix
179
+ * @param string[]|string $paths The PSR-0 root directories
180
+ * @param bool $prepend Whether to prepend the directories
181
+ *
182
+ * @return void
183
  */
184
  public function add($prefix, $paths, $prepend = false)
185
  {
222
  * Registers a set of PSR-4 directories for a given namespace, either
223
  * appending or prepending to the ones previously set for this namespace.
224
  *
225
+ * @param string $prefix The prefix/namespace, with trailing '\\'
226
+ * @param string[]|string $paths The PSR-4 base directories
227
+ * @param bool $prepend Whether to prepend the directories
228
  *
229
  * @throws \InvalidArgumentException
230
+ *
231
+ * @return void
232
  */
233
  public function addPsr4($prefix, $paths, $prepend = false)
234
  {
272
  * Registers a set of PSR-0 directories for a given prefix,
273
  * replacing any others previously set for this prefix.
274
  *
275
+ * @param string $prefix The prefix
276
+ * @param string[]|string $paths The PSR-0 base directories
277
+ *
278
+ * @return void
279
  */
280
  public function set($prefix, $paths)
281
  {
290
  * Registers a set of PSR-4 directories for a given namespace,
291
  * replacing any others previously set for this namespace.
292
  *
293
+ * @param string $prefix The prefix/namespace, with trailing '\\'
294
+ * @param string[]|string $paths The PSR-4 base directories
295
  *
296
  * @throws \InvalidArgumentException
297
+ *
298
+ * @return void
299
  */
300
  public function setPsr4($prefix, $paths)
301
  {
315
  * Turns on searching the include path for class files.
316
  *
317
  * @param bool $useIncludePath
318
+ *
319
+ * @return void
320
  */
321
  public function setUseIncludePath($useIncludePath)
322
  {
339
  * that have not been registered with the class map.
340
  *
341
  * @param bool $classMapAuthoritative
342
+ *
343
+ * @return void
344
  */
345
  public function setClassMapAuthoritative($classMapAuthoritative)
346
  {
357
  return $this->classMapAuthoritative;
358
  }
359
 
360
+ /**
361
+ * APCu prefix to use to cache found/not-found classes, if the extension is enabled.
362
+ *
363
+ * @param string|null $apcuPrefix
364
+ *
365
+ * @return void
366
+ */
367
+ public function setApcuPrefix($apcuPrefix)
368
+ {
369
+ $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
370
+ }
371
+
372
+ /**
373
+ * The APCu prefix in use, or null if APCu caching is not enabled.
374
+ *
375
+ * @return string|null
376
+ */
377
+ public function getApcuPrefix()
378
+ {
379
+ return $this->apcuPrefix;
380
+ }
381
+
382
  /**
383
  * Registers this instance as an autoloader.
384
  *
385
  * @param bool $prepend Whether to prepend the autoloader or not
386
+ *
387
+ * @return void
388
  */
389
  public function register($prepend = false)
390
  {
391
  spl_autoload_register(array($this, 'loadClass'), true, $prepend);
392
+
393
+ if (null === $this->vendorDir) {
394
+ return;
395
+ }
396
+
397
+ if ($prepend) {
398
+ self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
399
+ } else {
400
+ unset(self::$registeredLoaders[$this->vendorDir]);
401
+ self::$registeredLoaders[$this->vendorDir] = $this;
402
+ }
403
  }
404
 
405
  /**
406
  * Unregisters this instance as an autoloader.
407
+ *
408
+ * @return void
409
  */
410
  public function unregister()
411
  {
412
  spl_autoload_unregister(array($this, 'loadClass'));
413
+
414
+ if (null !== $this->vendorDir) {
415
+ unset(self::$registeredLoaders[$this->vendorDir]);
416
+ }
417
  }
418
 
419
  /**
420
  * Loads the given class or interface.
421
  *
422
  * @param string $class The name of the class
423
+ * @return true|null True if loaded, null otherwise
424
  */
425
  public function loadClass($class)
426
  {
429
 
430
  return true;
431
  }
432
+
433
+ return null;
434
  }
435
 
436
  /**
442
  */
443
  public function findFile($class)
444
  {
 
 
 
 
 
445
  // class map lookup
446
  if (isset($this->classMap[$class])) {
447
  return $this->classMap[$class];
449
  if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
450
  return false;
451
  }
452
+ if (null !== $this->apcuPrefix) {
453
+ $file = apcu_fetch($this->apcuPrefix.$class, $hit);
454
+ if ($hit) {
455
+ return $file;
456
+ }
457
+ }
458
 
459
  $file = $this->findFileWithExtension($class, '.php');
460
 
463
  $file = $this->findFileWithExtension($class, '.hh');
464
  }
465
 
466
+ if (null !== $this->apcuPrefix) {
467
+ apcu_add($this->apcuPrefix.$class, $file);
468
+ }
469
+
470
  if (false === $file) {
471
  // Remember that this class does not exist.
472
  $this->missingClasses[$class] = true;
475
  return $file;
476
  }
477
 
478
+ /**
479
+ * Returns the currently registered loaders indexed by their corresponding vendor directories.
480
+ *
481
+ * @return self[]
482
+ */
483
+ public static function getRegisteredLoaders()
484
+ {
485
+ return self::$registeredLoaders;
486
+ }
487
+
488
+ /**
489
+ * @param string $class
490
+ * @param string $ext
491
+ * @return string|false
492
+ */
493
  private function findFileWithExtension($class, $ext)
494
  {
495
  // PSR-4 lookup
497
 
498
  $first = $class[0];
499
  if (isset($this->prefixLengthsPsr4[$first])) {
500
+ $subPath = $class;
501
+ while (false !== $lastPos = strrpos($subPath, '\\')) {
502
+ $subPath = substr($subPath, 0, $lastPos);
503
+ $search = $subPath . '\\';
504
+ if (isset($this->prefixDirsPsr4[$search])) {
505
+ $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
506
+ foreach ($this->prefixDirsPsr4[$search] as $dir) {
507
+ if (file_exists($file = $dir . $pathEnd)) {
508
  return $file;
509
  }
510
  }
561
  * Scope isolated include.
562
  *
563
  * Prevents access to $this/self from included files.
564
+ *
565
+ * @param string $file
566
+ * @return void
567
+ * @private
568
  */
569
  function includeFile($file)
570
  {
vendor/composer/InstalledVersions.php ADDED
@@ -0,0 +1,337 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * This file is part of Composer.
5
+ *
6
+ * (c) Nils Adermann <naderman@naderman.de>
7
+ * Jordi Boggiano <j.boggiano@seld.be>
8
+ *
9
+ * For the full copyright and license information, please view the LICENSE
10
+ * file that was distributed with this source code.
11
+ */
12
+
13
+ namespace Composer;
14
+
15
+ use Composer\Autoload\ClassLoader;
16
+ use Composer\Semver\VersionParser;
17
+
18
+ /**
19
+ * This class is copied in every Composer installed project and available to all
20
+ *
21
+ * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22
+ *
23
+ * To require its presence, you can require `composer-runtime-api ^2.0`
24
+ */
25
+ class InstalledVersions
26
+ {
27
+ private static $installed;
28
+ private static $canGetVendors;
29
+ private static $installedByVendor = array();
30
+
31
+ /**
32
+ * Returns a list of all package names which are present, either by being installed, replaced or provided
33
+ *
34
+ * @return string[]
35
+ * @psalm-return list<string>
36
+ */
37
+ public static function getInstalledPackages()
38
+ {
39
+ $packages = array();
40
+ foreach (self::getInstalled() as $installed) {
41
+ $packages[] = array_keys($installed['versions']);
42
+ }
43
+
44
+ if (1 === \count($packages)) {
45
+ return $packages[0];
46
+ }
47
+
48
+ return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
49
+ }
50
+
51
+ /**
52
+ * Returns a list of all package names with a specific type e.g. 'library'
53
+ *
54
+ * @param string $type
55
+ * @return string[]
56
+ * @psalm-return list<string>
57
+ */
58
+ public static function getInstalledPackagesByType($type)
59
+ {
60
+ $packagesByType = array();
61
+
62
+ foreach (self::getInstalled() as $installed) {
63
+ foreach ($installed['versions'] as $name => $package) {
64
+ if (isset($package['type']) && $package['type'] === $type) {
65
+ $packagesByType[] = $name;
66
+ }
67
+ }
68
+ }
69
+
70
+ return $packagesByType;
71
+ }
72
+
73
+ /**
74
+ * Checks whether the given package is installed
75
+ *
76
+ * This also returns true if the package name is provided or replaced by another package
77
+ *
78
+ * @param string $packageName
79
+ * @param bool $includeDevRequirements
80
+ * @return bool
81
+ */
82
+ public static function isInstalled($packageName, $includeDevRequirements = true)
83
+ {
84
+ foreach (self::getInstalled() as $installed) {
85
+ if (isset($installed['versions'][$packageName])) {
86
+ return $includeDevRequirements || empty($installed['versions'][$packageName]['dev_requirement']);
87
+ }
88
+ }
89
+
90
+ return false;
91
+ }
92
+
93
+ /**
94
+ * Checks whether the given package satisfies a version constraint
95
+ *
96
+ * e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
97
+ *
98
+ * Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
99
+ *
100
+ * @param VersionParser $parser Install composer/semver to have access to this class and functionality
101
+ * @param string $packageName
102
+ * @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
103
+ * @return bool
104
+ */
105
+ public static function satisfies(VersionParser $parser, $packageName, $constraint)
106
+ {
107
+ $constraint = $parser->parseConstraints($constraint);
108
+ $provided = $parser->parseConstraints(self::getVersionRanges($packageName));
109
+
110
+ return $provided->matches($constraint);
111
+ }
112
+
113
+ /**
114
+ * Returns a version constraint representing all the range(s) which are installed for a given package
115
+ *
116
+ * It is easier to use this via isInstalled() with the $constraint argument if you need to check
117
+ * whether a given version of a package is installed, and not just whether it exists
118
+ *
119
+ * @param string $packageName
120
+ * @return string Version constraint usable with composer/semver
121
+ */
122
+ public static function getVersionRanges($packageName)
123
+ {
124
+ foreach (self::getInstalled() as $installed) {
125
+ if (!isset($installed['versions'][$packageName])) {
126
+ continue;
127
+ }
128
+
129
+ $ranges = array();
130
+ if (isset($installed['versions'][$packageName]['pretty_version'])) {
131
+ $ranges[] = $installed['versions'][$packageName]['pretty_version'];
132
+ }
133
+ if (array_key_exists('aliases', $installed['versions'][$packageName])) {
134
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
135
+ }
136
+ if (array_key_exists('replaced', $installed['versions'][$packageName])) {
137
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
138
+ }
139
+ if (array_key_exists('provided', $installed['versions'][$packageName])) {
140
+ $ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
141
+ }
142
+
143
+ return implode(' || ', $ranges);
144
+ }
145
+
146
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
147
+ }
148
+
149
+ /**
150
+ * @param string $packageName
151
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
152
+ */
153
+ public static function getVersion($packageName)
154
+ {
155
+ foreach (self::getInstalled() as $installed) {
156
+ if (!isset($installed['versions'][$packageName])) {
157
+ continue;
158
+ }
159
+
160
+ if (!isset($installed['versions'][$packageName]['version'])) {
161
+ return null;
162
+ }
163
+
164
+ return $installed['versions'][$packageName]['version'];
165
+ }
166
+
167
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
168
+ }
169
+
170
+ /**
171
+ * @param string $packageName
172
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
173
+ */
174
+ public static function getPrettyVersion($packageName)
175
+ {
176
+ foreach (self::getInstalled() as $installed) {
177
+ if (!isset($installed['versions'][$packageName])) {
178
+ continue;
179
+ }
180
+
181
+ if (!isset($installed['versions'][$packageName]['pretty_version'])) {
182
+ return null;
183
+ }
184
+
185
+ return $installed['versions'][$packageName]['pretty_version'];
186
+ }
187
+
188
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
189
+ }
190
+
191
+ /**
192
+ * @param string $packageName
193
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
194
+ */
195
+ public static function getReference($packageName)
196
+ {
197
+ foreach (self::getInstalled() as $installed) {
198
+ if (!isset($installed['versions'][$packageName])) {
199
+ continue;
200
+ }
201
+
202
+ if (!isset($installed['versions'][$packageName]['reference'])) {
203
+ return null;
204
+ }
205
+
206
+ return $installed['versions'][$packageName]['reference'];
207
+ }
208
+
209
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
210
+ }
211
+
212
+ /**
213
+ * @param string $packageName
214
+ * @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
215
+ */
216
+ public static function getInstallPath($packageName)
217
+ {
218
+ foreach (self::getInstalled() as $installed) {
219
+ if (!isset($installed['versions'][$packageName])) {
220
+ continue;
221
+ }
222
+
223
+ return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
224
+ }
225
+
226
+ throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
227
+ }
228
+
229
+ /**
230
+ * @return array
231
+ * @psalm-return array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}
232
+ */
233
+ public static function getRootPackage()
234
+ {
235
+ $installed = self::getInstalled();
236
+
237
+ return $installed[0]['root'];
238
+ }
239
+
240
+ /**
241
+ * Returns the raw installed.php data for custom implementations
242
+ *
243
+ * @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
244
+ * @return array[]
245
+ * @psalm-return array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}
246
+ */
247
+ public static function getRawData()
248
+ {
249
+ @trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
250
+
251
+ if (null === self::$installed) {
252
+ // only require the installed.php file if this file is loaded from its dumped location,
253
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
254
+ if (substr(__DIR__, -8, 1) !== 'C') {
255
+ self::$installed = include __DIR__ . '/installed.php';
256
+ } else {
257
+ self::$installed = array();
258
+ }
259
+ }
260
+
261
+ return self::$installed;
262
+ }
263
+
264
+ /**
265
+ * Returns the raw data of all installed.php which are currently loaded for custom implementations
266
+ *
267
+ * @return array[]
268
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
269
+ */
270
+ public static function getAllRawData()
271
+ {
272
+ return self::getInstalled();
273
+ }
274
+
275
+ /**
276
+ * Lets you reload the static array from another file
277
+ *
278
+ * This is only useful for complex integrations in which a project needs to use
279
+ * this class but then also needs to execute another project's autoloader in process,
280
+ * and wants to ensure both projects have access to their version of installed.php.
281
+ *
282
+ * A typical case would be PHPUnit, where it would need to make sure it reads all
283
+ * the data it needs from this class, then call reload() with
284
+ * `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
285
+ * the project in which it runs can then also use this class safely, without
286
+ * interference between PHPUnit's dependencies and the project's dependencies.
287
+ *
288
+ * @param array[] $data A vendor/composer/installed.php data set
289
+ * @return void
290
+ *
291
+ * @psalm-param array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>} $data
292
+ */
293
+ public static function reload($data)
294
+ {
295
+ self::$installed = $data;
296
+ self::$installedByVendor = array();
297
+ }
298
+
299
+ /**
300
+ * @return array[]
301
+ * @psalm-return list<array{root: array{name: string, version: string, reference: string, pretty_version: string, aliases: string[], dev: bool, install_path: string, type: string}, versions: array<string, array{dev_requirement: bool, pretty_version?: string, version?: string, aliases?: string[], reference?: string, replaced?: string[], provided?: string[], install_path?: string, type?: string}>}>
302
+ */
303
+ private static function getInstalled()
304
+ {
305
+ if (null === self::$canGetVendors) {
306
+ self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
307
+ }
308
+
309
+ $installed = array();
310
+
311
+ if (self::$canGetVendors) {
312
+ foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
313
+ if (isset(self::$installedByVendor[$vendorDir])) {
314
+ $installed[] = self::$installedByVendor[$vendorDir];
315
+ } elseif (is_file($vendorDir.'/composer/installed.php')) {
316
+ $installed[] = self::$installedByVendor[$vendorDir] = require $vendorDir.'/composer/installed.php';
317
+ if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
318
+ self::$installed = $installed[count($installed) - 1];
319
+ }
320
+ }
321
+ }
322
+ }
323
+
324
+ if (null === self::$installed) {
325
+ // only require the installed.php file if this file is loaded from its dumped location,
326
+ // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
327
+ if (substr(__DIR__, -8, 1) !== 'C') {
328
+ self::$installed = require __DIR__ . '/installed.php';
329
+ } else {
330
+ self::$installed = array();
331
+ }
332
+ }
333
+ $installed[] = self::$installed;
334
+
335
+ return $installed;
336
+ }
337
+ }
vendor/composer/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
 
2
- Copyright (c) 2016 Nils Adermann, Jordi Boggiano
3
 
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
5
  of this software and associated documentation files (the "Software"), to deal
1
 
2
+ Copyright (c) Nils Adermann, Jordi Boggiano
3
 
4
  Permission is hereby granted, free of charge, to any person obtaining a copy
5
  of this software and associated documentation files (the "Software"), to deal
vendor/composer/autoload_classmap.php CHANGED
@@ -6,4 +6,5 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
9
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
10
  );
vendor/composer/autoload_commands_classmap.php ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_commands_classmap.php @generated by Composer
4
+
5
+ $vendorDir = dirname(dirname(__FILE__));
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ 'CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/commands/src/CLI_Command.php',
10
+ 'Cache_Command' => $vendorDir . '/wp-cli/cache-command/src/Cache_Command.php',
11
+ 'Capabilities_Command' => $vendorDir . '/wp-cli/role-command/src/Capabilities_Command.php',
12
+ 'Checksum_Command' => $vendorDir . '/wp-cli/checksum-command/src/Checksum_Command.php',
13
+ 'Comment_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Command.php',
14
+ 'Comment_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Comment_Meta_Command.php',
15
+ 'Config_Command' => $vendorDir . '/wp-cli/config-command/src/Config_Command.php',
16
+ 'Core_Command' => $vendorDir . '/wp-cli/core-command/src/Core_Command.php',
17
+ 'Core_Language_Command' => $vendorDir . '/wp-cli/language-command/src/Core_Language_Command.php',
18
+ 'Cron_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Command.php',
19
+ 'Cron_Event_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Event_Command.php',
20
+ 'Cron_Schedule_Command' => $vendorDir . '/wp-cli/cron-command/src/Cron_Schedule_Command.php',
21
+ 'DB_Command' => $vendorDir . '/wp-cli/db-command/src/DB_Command.php',
22
+ 'EvalFile_Command' => $vendorDir . '/wp-cli/eval-command/src/EvalFile_Command.php',
23
+ 'Eval_Command' => $vendorDir . '/wp-cli/eval-command/src/Eval_Command.php',
24
+ 'Export_Command' => $vendorDir . '/wp-cli/export-command/src/Export_Command.php',
25
+ 'Import_Command' => $vendorDir . '/wp-cli/import-command/src/Import_Command.php',
26
+ 'Media_Command' => $vendorDir . '/wp-cli/media-command/src/Media_Command.php',
27
+ 'Menu_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Command.php',
28
+ 'Menu_Item_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Item_Command.php',
29
+ 'Menu_Location_Command' => $vendorDir . '/wp-cli/entity-command/src/Menu_Location_Command.php',
30
+ 'Network_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Network_Meta_Command.php',
31
+ 'Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Option_Command.php',
32
+ 'Package_Command' => $vendorDir . '/wp-cli/package-command/src/Package_Command.php',
33
+ 'Plugin_Command' => $vendorDir . '/wp-cli/extension-command/src/Plugin_Command.php',
34
+ 'Post_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Command.php',
35
+ 'Post_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Meta_Command.php',
36
+ 'Post_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Term_Command.php',
37
+ 'Post_Type_Command' => $vendorDir . '/wp-cli/entity-command/src/Post_Type_Command.php',
38
+ 'Rewrite_Command' => $vendorDir . '/wp-cli/rewrite-command/src/Rewrite_Command.php',
39
+ 'Role_Command' => $vendorDir . '/wp-cli/role-command/src/Role_Command.php',
40
+ 'Scaffold_Command' => $vendorDir . '/wp-cli/scaffold-command/src/Scaffold_Command.php',
41
+ 'Search_Replace_Command' => $vendorDir . '/wp-cli/search-replace-command/src/Search_Replace_Command.php',
42
+ 'Server_Command' => $vendorDir . '/wp-cli/server-command/src/Server_Command.php',
43
+ 'Shell_Command' => $vendorDir . '/wp-cli/shell-command/src/Shell_Command.php',
44
+ 'Sidebar_Command' => $vendorDir . '/wp-cli/widget-command/src/Sidebar_Command.php',
45
+ 'Site_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Command.php',
46
+ 'Site_Option_Command' => $vendorDir . '/wp-cli/entity-command/src/Site_Option_Command.php',
47
+ 'Super_Admin_Command' => $vendorDir . '/wp-cli/super-admin-command/src/Super_Admin_Command.php',
48
+ 'Taxonomy_Command' => $vendorDir . '/wp-cli/entity-command/src/Taxonomy_Command.php',
49
+ 'Term_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Command.php',
50
+ 'Term_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/Term_Meta_Command.php',
51
+ 'Theme_Command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Command.php',
52
+ 'Theme_Mod_command' => $vendorDir . '/wp-cli/extension-command/src/Theme_Mod_Command.php',
53
+ 'Transient_Command' => $vendorDir . '/wp-cli/cache-command/src/Transient_Command.php',
54
+ 'User_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Command.php',
55
+ 'User_Meta_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Meta_Command.php',
56
+ 'User_Session_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Session_Command.php',
57
+ 'User_Term_Command' => $vendorDir . '/wp-cli/entity-command/src/User_Term_Command.php',
58
+ 'WP_CLI\\CommandWithDBObject' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithDBObject.php',
59
+ 'WP_CLI\\CommandWithMeta' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithMeta.php',
60
+ 'WP_CLI\\CommandWithTerms' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/CommandWithTerms.php',
61
+ 'WP_CLI\\CommandWithTranslation' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/CommandWithTranslation.php',
62
+ 'WP_CLI\\CommandWithUpgrade' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/CommandWithUpgrade.php',
63
+ 'WP_CLI\\CoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/CoreUpgrader.php',
64
+ 'WP_CLI\\DestructivePluginUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructivePluginUpgrader.php',
65
+ 'WP_CLI\\DestructiveThemeUpgrader' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/DestructiveThemeUpgrader.php',
66
+ 'WP_CLI\\Fetchers\\Comment' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Comment.php',
67
+ 'WP_CLI\\Fetchers\\Plugin' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Plugin.php',
68
+ 'WP_CLI\\Fetchers\\Post' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Post.php',
69
+ 'WP_CLI\\Fetchers\\Site' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/Site.php',
70
+ 'WP_CLI\\Fetchers\\Theme' => $vendorDir . '/wp-cli/extension-command/src/WP_CLI/Fetchers/Theme.php',
71
+ 'WP_CLI\\Fetchers\\User' => $vendorDir . '/wp-cli/entity-command/src/WP_CLI/Fetchers/User.php',
72
+ 'WP_CLI\\LanguagePackUpgrader' => $vendorDir . '/wp-cli/language-command/src/WP_CLI/LanguagePackUpgrader.php',
73
+ 'WP_CLI\\NonDestructiveCoreUpgrader' => $vendorDir . '/wp-cli/core-command/src/WP_CLI/NonDestructiveCoreUpgrader.php',
74
+ 'WP_CLI\\REPL' => $vendorDir . '/wp-cli/shell-command/src/WP_CLI/REPL.php',
75
+ 'WP_CLI\\SearchReplacer' => $vendorDir . '/wp-cli/search-replace-command/src/WP_CLI/SearchReplacer.php',
76
+ 'WP_Export_Base_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Base_Writer.php',
77
+ 'WP_Export_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Exception.php',
78
+ 'WP_Export_File_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_File_Writer.php',
79
+ 'WP_Export_Oxymel' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Oxymel.php',
80
+ 'WP_Export_Query' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Query.php',
81
+ 'WP_Export_Returner' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Returner.php',
82
+ 'WP_Export_Split_Files_Writer' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Split_Files_Writer.php',
83
+ 'WP_Export_Term_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Export_Term_Exception.php',
84
+ 'WP_Export_WXR_Formatter' => $vendorDir . '/wp-cli/export-command/src/WP_Export_WXR_Formatter.php',
85
+ 'WP_Export_XML_Over_HTTP' => $vendorDir . '/wp-cli/export-command/src/WP_Export_XML_Over_HTTP.php',
86
+ 'WP_Iterator_Exception' => $vendorDir . '/wp-cli/export-command/src/WP_Iterator_Exception.php',
87
+ 'WP_Map_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Map_Iterator.php',
88
+ 'WP_Post_IDs_Iterator' => $vendorDir . '/wp-cli/export-command/src/WP_Post_IDs_Iterator.php',
89
+ 'Widget_Command' => $vendorDir . '/wp-cli/widget-command/src/Widget_Command.php',
90
+ );
vendor/composer/autoload_commands_real.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_commands_real.php @generated by Composer
4
+
5
+ class ComposerAutoloaderInit02ced3cab243146ae94748c93c012e94
6
+ {
7
+ private static $loader;
8
+
9
+ public static function loadClassLoader($class)
10
+ {
11
+ if ('Composer\Autoload\ClassLoader' === $class) {
12
+ require __DIR__ . '/ClassLoader.php';
13
+ }
14
+ }
15
+
16
+ public static function getLoader()
17
+ {
18
+ if (null !== self::$loader) {
19
+ return self::$loader;
20
+ }
21
+
22
+ spl_autoload_register(array('ComposerAutoloaderInit02ced3cab243146ae94748c93c012e94', 'loadClassLoader'), true, true);
23
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit02ced3cab243146ae94748c93c012e94', 'loadClassLoader'));
25
+
26
+ $classMap = require __DIR__ . '/autoload_commands_classmap.php';
27
+ if ($classMap) {
28
+ $loader->addClassMap($classMap);
29
+ }
30
+ $loader->register(true);
31
+
32
+ return $loader;
33
+ }
34
+ }
vendor/composer/autoload_framework_classmap.php ADDED
@@ -0,0 +1,2473 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_framework_classmap.php @generated by Composer
4
+
5
+ $vendorDir = dirname(dirname(__FILE__));
6
+ $baseDir = dirname($vendorDir);
7
+
8
+ return array(
9
+ 'BaconStringUtils\\Filter\\Slugify' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/Slugify.php',
10
+ 'BaconStringUtils\\Filter\\SlugifyFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Filter/SlugifyFactory.php',
11
+ 'BaconStringUtils\\Module' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Module.php',
12
+ 'BaconStringUtils\\Slugifier' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/Slugifier.php',
13
+ 'BaconStringUtils\\SlugifierFactory' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/SlugifierFactory.php',
14
+ 'BaconStringUtils\\UniDecoder' => $vendorDir . '/bacon/bacon-string-utils/src/BaconStringUtils/UniDecoder.php',
15
+ 'Behat\\Gherkin\\Cache\\CacheInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/CacheInterface.php',
16
+ 'Behat\\Gherkin\\Cache\\FileCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/FileCache.php',
17
+ 'Behat\\Gherkin\\Cache\\MemoryCache' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Cache/MemoryCache.php',
18
+ 'Behat\\Gherkin\\Exception\\CacheException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/CacheException.php',
19
+ 'Behat\\Gherkin\\Exception\\Exception' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/Exception.php',
20
+ 'Behat\\Gherkin\\Exception\\LexerException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/LexerException.php',
21
+ 'Behat\\Gherkin\\Exception\\NodeException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/NodeException.php',
22
+ 'Behat\\Gherkin\\Exception\\ParserException' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Exception/ParserException.php',
23
+ 'Behat\\Gherkin\\Filter\\ComplexFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilter.php',
24
+ 'Behat\\Gherkin\\Filter\\ComplexFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/ComplexFilterInterface.php',
25
+ 'Behat\\Gherkin\\Filter\\FeatureFilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FeatureFilterInterface.php',
26
+ 'Behat\\Gherkin\\Filter\\FilterInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/FilterInterface.php',
27
+ 'Behat\\Gherkin\\Filter\\LineFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineFilter.php',
28
+ 'Behat\\Gherkin\\Filter\\LineRangeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/LineRangeFilter.php',
29
+ 'Behat\\Gherkin\\Filter\\NameFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NameFilter.php',
30
+ 'Behat\\Gherkin\\Filter\\NarrativeFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/NarrativeFilter.php',
31
+ 'Behat\\Gherkin\\Filter\\PathsFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/PathsFilter.php',
32
+ 'Behat\\Gherkin\\Filter\\RoleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/RoleFilter.php',
33
+ 'Behat\\Gherkin\\Filter\\SimpleFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/SimpleFilter.php',
34
+ 'Behat\\Gherkin\\Filter\\TagFilter' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Filter/TagFilter.php',
35
+ 'Behat\\Gherkin\\Gherkin' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Gherkin.php',
36
+ 'Behat\\Gherkin\\Keywords\\ArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/ArrayKeywords.php',
37
+ 'Behat\\Gherkin\\Keywords\\CachedArrayKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CachedArrayKeywords.php',
38
+ 'Behat\\Gherkin\\Keywords\\CucumberKeywords' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/CucumberKeywords.php',
39
+ 'Behat\\Gherkin\\Keywords\\KeywordsDumper' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsDumper.php',
40
+ 'Behat\\Gherkin\\Keywords\\KeywordsInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Keywords/KeywordsInterface.php',
41
+ 'Behat\\Gherkin\\Lexer' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Lexer.php',
42
+ 'Behat\\Gherkin\\Loader\\AbstractFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/AbstractFileLoader.php',
43
+ 'Behat\\Gherkin\\Loader\\ArrayLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/ArrayLoader.php',
44
+ 'Behat\\Gherkin\\Loader\\DirectoryLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/DirectoryLoader.php',
45
+ 'Behat\\Gherkin\\Loader\\FileLoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/FileLoaderInterface.php',
46
+ 'Behat\\Gherkin\\Loader\\GherkinFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/GherkinFileLoader.php',
47
+ 'Behat\\Gherkin\\Loader\\LoaderInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/LoaderInterface.php',
48
+ 'Behat\\Gherkin\\Loader\\YamlFileLoader' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Loader/YamlFileLoader.php',
49
+ 'Behat\\Gherkin\\Node\\ArgumentInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ArgumentInterface.php',
50
+ 'Behat\\Gherkin\\Node\\BackgroundNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/BackgroundNode.php',
51
+ 'Behat\\Gherkin\\Node\\ExampleNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleNode.php',
52
+ 'Behat\\Gherkin\\Node\\ExampleTableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ExampleTableNode.php',
53
+ 'Behat\\Gherkin\\Node\\FeatureNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/FeatureNode.php',
54
+ 'Behat\\Gherkin\\Node\\KeywordNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/KeywordNodeInterface.php',
55
+ 'Behat\\Gherkin\\Node\\NodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/NodeInterface.php',
56
+ 'Behat\\Gherkin\\Node\\OutlineNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/OutlineNode.php',
57
+ 'Behat\\Gherkin\\Node\\PyStringNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/PyStringNode.php',
58
+ 'Behat\\Gherkin\\Node\\ScenarioInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioInterface.php',
59
+ 'Behat\\Gherkin\\Node\\ScenarioLikeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioLikeInterface.php',
60
+ 'Behat\\Gherkin\\Node\\ScenarioNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/ScenarioNode.php',
61
+ 'Behat\\Gherkin\\Node\\StepContainerInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepContainerInterface.php',
62
+ 'Behat\\Gherkin\\Node\\StepNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/StepNode.php',
63
+ 'Behat\\Gherkin\\Node\\TableNode' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TableNode.php',
64
+ 'Behat\\Gherkin\\Node\\TaggedNodeInterface' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Node/TaggedNodeInterface.php',
65
+ 'Behat\\Gherkin\\Parser' => $vendorDir . '/behat/gherkin/src/Behat/Gherkin/Parser.php',
66
+ 'Codeception\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Actor.php',
67
+ 'Codeception\\Application' => $vendorDir . '/codeception/codeception/src/Codeception/Application.php',
68
+ 'Codeception\\Codecept' => $vendorDir . '/codeception/codeception/src/Codeception/Codecept.php',
69
+ 'Codeception\\Command\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Bootstrap.php',
70
+ 'Codeception\\Command\\Build' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Build.php',
71
+ 'Codeception\\Command\\Clean' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Clean.php',
72
+ 'Codeception\\Command\\Completion' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Completion.php',
73
+ 'Codeception\\Command\\ConfigValidate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/ConfigValidate.php',
74
+ 'Codeception\\Command\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Console.php',
75
+ 'Codeception\\Command\\DbSnapshot' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/DbSnapshot.php',
76
+ 'Codeception\\Command\\DryRun' => $vendorDir . '/codeception/codeception/src/Codeception/Command/DryRun.php',
77
+ 'Codeception\\Command\\GenerateCept' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCept.php',
78
+ 'Codeception\\Command\\GenerateCest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateCest.php',
79
+ 'Codeception\\Command\\GenerateEnvironment' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateEnvironment.php',
80
+ 'Codeception\\Command\\GenerateFeature' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateFeature.php',
81
+ 'Codeception\\Command\\GenerateGroup' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateGroup.php',
82
+ 'Codeception\\Command\\GenerateHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateHelper.php',
83
+ 'Codeception\\Command\\GeneratePageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GeneratePageObject.php',
84
+ 'Codeception\\Command\\GenerateScenarios' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateScenarios.php',
85
+ 'Codeception\\Command\\GenerateStepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateStepObject.php',
86
+ 'Codeception\\Command\\GenerateSuite' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateSuite.php',
87
+ 'Codeception\\Command\\GenerateTest' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GenerateTest.php',
88
+ 'Codeception\\Command\\GenerateWPAjax' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPAjax.php',
89
+ 'Codeception\\Command\\GenerateWPCanonical' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPCanonical.php',
90
+ 'Codeception\\Command\\GenerateWPRestApi' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestApi.php',
91
+ 'Codeception\\Command\\GenerateWPRestController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestController.php',
92
+ 'Codeception\\Command\\GenerateWPRestPostTypeController' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPRestPostTypeController.php',
93
+ 'Codeception\\Command\\GenerateWPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPUnit.php',
94
+ 'Codeception\\Command\\GenerateWPXMLRPC' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Command/GenerateWPXMLRPC.php',
95
+ 'Codeception\\Command\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSnippets.php',
96
+ 'Codeception\\Command\\GherkinSteps' => $vendorDir . '/codeception/codeception/src/Codeception/Command/GherkinSteps.php',
97
+ 'Codeception\\Command\\Init' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Init.php',
98
+ 'Codeception\\Command\\Run' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Run.php',
99
+ 'Codeception\\Command\\SelfUpdate' => $vendorDir . '/codeception/codeception/src/Codeception/Command/SelfUpdate.php',
100
+ 'Codeception\\Command\\Shared\\Config' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Config.php',
101
+ 'Codeception\\Command\\Shared\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/FileSystem.php',
102
+ 'Codeception\\Command\\Shared\\Style' => $vendorDir . '/codeception/codeception/src/Codeception/Command/Shared/Style.php',
103
+ 'Codeception\\Configuration' => $vendorDir . '/codeception/codeception/src/Codeception/Configuration.php',
104
+ 'Codeception\\Coverage\\DummyCodeCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/DummyCodeCoverage.php',
105
+ 'Codeception\\Coverage\\Filter' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Filter.php',
106
+ 'Codeception\\Coverage\\Subscriber\\Local' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Local.php',
107
+ 'Codeception\\Coverage\\Subscriber\\LocalServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/LocalServer.php',
108
+ 'Codeception\\Coverage\\Subscriber\\Printer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/Printer.php',
109
+ 'Codeception\\Coverage\\Subscriber\\RemoteServer' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/Subscriber/RemoteServer.php',
110
+ 'Codeception\\Coverage\\SuiteSubscriber' => $vendorDir . '/codeception/codeception/src/Codeception/Coverage/SuiteSubscriber.php',
111
+ 'Codeception\\CustomCommandInterface' => $vendorDir . '/codeception/codeception/src/Codeception/CustomCommandInterface.php',
112
+ 'Codeception\\Event\\FailEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/FailEvent.php',
113
+ 'Codeception\\Event\\PrintResultEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/PrintResultEvent.php',
114
+ 'Codeception\\Event\\StepEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/StepEvent.php',
115
+ 'Codeception\\Event\\SuiteEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/SuiteEvent.php',
116
+ 'Codeception\\Event\\TestEvent' => $vendorDir . '/codeception/codeception/src/Codeception/Event/TestEvent.php',
117
+ 'Codeception\\Events' => $vendorDir . '/codeception/codeception/src/Codeception/Events.php',
118
+ 'Codeception\\Example' => $vendorDir . '/codeception/codeception/src/Codeception/Example.php',
119
+ 'Codeception\\Exception\\ConditionalAssertionFailed' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConditionalAssertionFailed.php',
120
+ 'Codeception\\Exception\\ConfigurationException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConfigurationException.php',
121
+ 'Codeception\\Exception\\ConnectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ConnectionException.php',
122
+ 'Codeception\\Exception\\ContentNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ContentNotFound.php',
123
+ 'Codeception\\Exception\\ElementNotFound' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ElementNotFound.php',
124
+ 'Codeception\\Exception\\ExtensionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExtensionException.php',
125
+ 'Codeception\\Exception\\ExternalUrlException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ExternalUrlException.php',
126
+ 'Codeception\\Exception\\Fail' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Fail.php',
127
+ 'Codeception\\Exception\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Incomplete.php',
128
+ 'Codeception\\Exception\\InjectionException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/InjectionException.php',
129
+ 'Codeception\\Exception\\MalformedLocatorException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/MalformedLocatorException.php',
130
+ 'Codeception\\Exception\\ModuleConfigException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConfigException.php',
131
+ 'Codeception\\Exception\\ModuleConflictException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleConflictException.php',
132
+ 'Codeception\\Exception\\ModuleException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleException.php',
133
+ 'Codeception\\Exception\\ModuleRequireException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ModuleRequireException.php',
134
+ 'Codeception\\Exception\\ParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/ParseException.php',
135
+ 'Codeception\\Exception\\RemoteException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/RemoteException.php',
136
+ 'Codeception\\Exception\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/Skip.php',
137
+ 'Codeception\\Exception\\TestParseException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestParseException.php',
138
+ 'Codeception\\Exception\\TestRuntimeException' => $vendorDir . '/codeception/codeception/src/Codeception/Exception/TestRuntimeException.php',
139
+ 'Codeception\\Extension' => $vendorDir . '/codeception/codeception/src/Codeception/Extension.php',
140
+ 'Codeception\\Extension\\DotReporter' => $vendorDir . '/codeception/codeception/ext/DotReporter.php',
141
+ 'Codeception\\Extension\\Logger' => $vendorDir . '/codeception/codeception/ext/Logger.php',
142
+ 'Codeception\\Extension\\Recorder' => $vendorDir . '/codeception/codeception/ext/Recorder.php',
143
+ 'Codeception\\Extension\\RunFailed' => $vendorDir . '/codeception/codeception/ext/RunFailed.php',
144
+ 'Codeception\\Extension\\SimpleReporter' => $vendorDir . '/codeception/codeception/ext/SimpleReporter.php',
145
+ 'Codeception\\GroupObject' => $vendorDir . '/codeception/codeception/src/Codeception/GroupObject.php',
146
+ 'Codeception\\InitTemplate' => $vendorDir . '/codeception/codeception/src/Codeception/InitTemplate.php',
147
+ 'Codeception\\Lib\\Actor\\Shared\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Comment.php',
148
+ 'Codeception\\Lib\\Actor\\Shared\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Actor/Shared/Friend.php',
149
+ 'Codeception\\Lib\\Connector\\Guzzle' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle.php',
150
+ 'Codeception\\Lib\\Connector\\Guzzle6' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Guzzle6.php',
151
+ 'Codeception\\Lib\\Connector\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5.php',
152
+ 'Codeception\\Lib\\Connector\\Laravel5\\ExceptionHandlerDecorator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Laravel5/ExceptionHandlerDecorator.php',
153
+ 'Codeception\\Lib\\Connector\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen.php',
154
+ 'Codeception\\Lib\\Connector\\Lumen\\DummyKernel' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Lumen/DummyKernel.php',
155
+ 'Codeception\\Lib\\Connector\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon.php',
156
+ 'Codeception\\Lib\\Connector\\Phalcon\\MemorySession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Phalcon/MemorySession.php',
157
+ 'Codeception\\Lib\\Connector\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/LaravelCommon.php',
158
+ 'Codeception\\Lib\\Connector\\Shared\\PhpSuperGlobalsConverter' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Shared/PhpSuperGlobalsConverter.php',
159
+ 'Codeception\\Lib\\Connector\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Symfony.php',
160
+ 'Codeception\\Lib\\Connector\\Universal' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Universal.php',
161
+ 'Codeception\\Lib\\Connector\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii1.php',
162
+ 'Codeception\\Lib\\Connector\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2.php',
163
+ 'Codeception\\Lib\\Connector\\Yii2\\FixturesStore' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/FixturesStore.php',
164
+ 'Codeception\\Lib\\Connector\\Yii2\\Logger' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/Logger.php',
165
+ 'Codeception\\Lib\\Connector\\Yii2\\TestMailer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/Yii2/TestMailer.php',
166
+ 'Codeception\\Lib\\Connector\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF1.php',
167
+ 'Codeception\\Lib\\Connector\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2.php',
168
+ 'Codeception\\Lib\\Connector\\ZF2\\PersistentServiceManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZF2/PersistentServiceManager.php',
169
+ 'Codeception\\Lib\\Connector\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive.php',
170
+ 'Codeception\\Lib\\Connector\\ZendExpressive\\ResponseCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Connector/ZendExpressive/ResponseCollector.php',
171
+ 'Codeception\\Lib\\Console\\Colorizer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Colorizer.php',
172
+ 'Codeception\\Lib\\Console\\DiffFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/DiffFactory.php',
173
+ 'Codeception\\Lib\\Console\\Message' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Message.php',
174
+ 'Codeception\\Lib\\Console\\MessageFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/MessageFactory.php',
175
+ 'Codeception\\Lib\\Console\\Output' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Console/Output.php',
176
+ 'Codeception\\Lib\\DbPopulator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/DbPopulator.php',
177
+ 'Codeception\\Lib\\Di' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Di.php',
178
+ 'Codeception\\Lib\\Driver\\AmazonSQS' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/AmazonSQS.php',
179
+ 'Codeception\\Lib\\Driver\\Beanstalk' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Beanstalk.php',
180
+ 'Codeception\\Lib\\Driver\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Db.php',
181
+ 'Codeception\\Lib\\Driver\\ExtendedDbDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedDbDriver.php',
182
+ 'Codeception\\Lib\\Driver\\ExtendedMySql' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Driver/ExtendedMySql.php',
183
+ 'Codeception\\Lib\\Driver\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Facebook.php',
184
+ 'Codeception\\Lib\\Driver\\Iron' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Iron.php',
185
+ 'Codeception\\Lib\\Driver\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MongoDb.php',
186
+ 'Codeception\\Lib\\Driver\\MySql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/MySql.php',
187
+ 'Codeception\\Lib\\Driver\\Oci' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Oci.php',
188
+ 'Codeception\\Lib\\Driver\\PostgreSql' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/PostgreSql.php',
189
+ 'Codeception\\Lib\\Driver\\SqlSrv' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/SqlSrv.php',
190
+ 'Codeception\\Lib\\Driver\\Sqlite' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Driver/Sqlite.php',
191
+ 'Codeception\\Lib\\Framework' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Framework.php',
192
+ 'Codeception\\Lib\\Friend' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Friend.php',
193
+ 'Codeception\\Lib\\Generator\\AbstractGenerator' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AbstractGenerator.php',
194
+ 'Codeception\\Lib\\Generator\\AcceptanceSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/AcceptanceSuiteConfig.php',
195
+ 'Codeception\\Lib\\Generator\\Actions' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actions.php',
196
+ 'Codeception\\Lib\\Generator\\Actor' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Actor.php',
197
+ 'Codeception\\Lib\\Generator\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cept.php',
198
+ 'Codeception\\Lib\\Generator\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Cest.php',
199
+ 'Codeception\\Lib\\Generator\\Feature' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Feature.php',
200
+ 'Codeception\\Lib\\Generator\\FunctionalSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/FunctionalSuiteConfig.php',
201
+ 'Codeception\\Lib\\Generator\\GeneratorInterface' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/GeneratorInterface.php',
202
+ 'Codeception\\Lib\\Generator\\GherkinSnippets' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/GherkinSnippets.php',
203
+ 'Codeception\\Lib\\Generator\\Group' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Group.php',
204
+ 'Codeception\\Lib\\Generator\\Helper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Helper.php',
205
+ 'Codeception\\Lib\\Generator\\IntegrationSuiteConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteConfig.php',
206
+ 'Codeception\\Lib\\Generator\\IntegrationSuiteThemeConfig' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/IntegrationSuiteThemeConfig.php',
207
+ 'Codeception\\Lib\\Generator\\PageObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/PageObject.php',
208
+ 'Codeception\\Lib\\Generator\\Shared\\Classname' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Shared/Classname.php',
209
+ 'Codeception\\Lib\\Generator\\StepObject' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/StepObject.php',
210
+ 'Codeception\\Lib\\Generator\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Generator/Test.php',
211
+ 'Codeception\\Lib\\Generator\\WPUnit' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Lib/Generator/WPUnit.php',
212
+ 'Codeception\\Lib\\GroupManager' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/GroupManager.php',
213
+ 'Codeception\\Lib\\InnerBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/InnerBrowser.php',
214
+ 'Codeception\\Lib\\Interfaces\\API' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/API.php',
215
+ 'Codeception\\Lib\\Interfaces\\ActiveRecord' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ActiveRecord.php',
216
+ 'Codeception\\Lib\\Interfaces\\ConflictsWithModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ConflictsWithModule.php',
217
+ 'Codeception\\Lib\\Interfaces\\DataMapper' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DataMapper.php',
218
+ 'Codeception\\Lib\\Interfaces\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Db.php',
219
+ 'Codeception\\Lib\\Interfaces\\DependsOnModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DependsOnModule.php',
220
+ 'Codeception\\Lib\\Interfaces\\DoctrineProvider' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/DoctrineProvider.php',
221
+ 'Codeception\\Lib\\Interfaces\\ElementLocator' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ElementLocator.php',
222
+ 'Codeception\\Lib\\Interfaces\\MultiSession' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/MultiSession.php',
223
+ 'Codeception\\Lib\\Interfaces\\ORM' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ORM.php',
224
+ 'Codeception\\Lib\\Interfaces\\PageSourceSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PageSourceSaver.php',
225
+ 'Codeception\\Lib\\Interfaces\\PartedModule' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/PartedModule.php',
226
+ 'Codeception\\Lib\\Interfaces\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Queue.php',
227
+ 'Codeception\\Lib\\Interfaces\\Remote' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Remote.php',
228
+ 'Codeception\\Lib\\Interfaces\\RequiresPackage' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/RequiresPackage.php',
229
+ 'Codeception\\Lib\\Interfaces\\ScreenshotSaver' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/ScreenshotSaver.php',
230
+ 'Codeception\\Lib\\Interfaces\\SessionSnapshot' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/SessionSnapshot.php',
231
+ 'Codeception\\Lib\\Interfaces\\Web' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Interfaces/Web.php',
232
+ 'Codeception\\Lib\\ModuleContainer' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ModuleContainer.php',
233
+ 'Codeception\\Lib\\Notification' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Notification.php',
234
+ 'Codeception\\Lib\\ParamsLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/ParamsLoader.php',
235
+ 'Codeception\\Lib\\Parser' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Parser.php',
236
+ 'Codeception\\Lib\\Shared\\LaravelCommon' => $vendorDir . '/codeception/codeception/src/Codeception/Lib/Shared/LaravelCommon.php',
237
+ 'Codeception\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Module.php',
238
+ 'Codeception\\Module\\AMQP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AMQP.php',
239
+ 'Codeception\\Module\\AngularJS' => $vendorDir . '/codeception/codeception/src/Codeception/Module/AngularJS.php',
240
+ 'Codeception\\Module\\Apc' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Apc.php',
241
+ 'Codeception\\Module\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Asserts.php',
242
+ 'Codeception\\Module\\Cli' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Cli.php',
243
+ 'Codeception\\Module\\DataFactory' => $vendorDir . '/codeception/codeception/src/Codeception/Module/DataFactory.php',
244
+ 'Codeception\\Module\\Db' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Db.php',
245
+ 'Codeception\\Module\\Doctrine2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Doctrine2.php',
246
+ 'Codeception\\Module\\ExtendedDb' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/ExtendedDb.php',
247
+ 'Codeception\\Module\\FTP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/FTP.php',
248
+ 'Codeception\\Module\\Facebook' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Facebook.php',
249
+ 'Codeception\\Module\\Filesystem' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Filesystem.php',
250
+ 'Codeception\\Module\\Laravel5' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Laravel5.php',
251
+ 'Codeception\\Module\\Lumen' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Lumen.php',
252
+ 'Codeception\\Module\\Memcache' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Memcache.php',
253
+ 'Codeception\\Module\\MongoDb' => $vendorDir . '/codeception/codeception/src/Codeception/Module/MongoDb.php',
254
+ 'Codeception\\Module\\Phalcon' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Phalcon.php',
255
+ 'Codeception\\Module\\PhpBrowser' => $vendorDir . '/codeception/codeception/src/Codeception/Module/PhpBrowser.php',
256
+ 'Codeception\\Module\\Queue' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Queue.php',
257
+ 'Codeception\\Module\\REST' => $vendorDir . '/codeception/codeception/src/Codeception/Module/REST.php',
258
+ 'Codeception\\Module\\Redis' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Redis.php',
259
+ 'Codeception\\Module\\SOAP' => $vendorDir . '/codeception/codeception/src/Codeception/Module/SOAP.php',
260
+ 'Codeception\\Module\\Sequence' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Sequence.php',
261
+ 'Codeception\\Module\\Silex' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Silex.php',
262
+ 'Codeception\\Module\\Symfony' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Symfony.php',
263
+ 'Codeception\\Module\\WPBootstrapper' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBootstrapper.php',
264
+ 'Codeception\\Module\\WPBrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowser.php',
265
+ 'Codeception\\Module\\WPBrowserMethods' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPBrowserMethods.php',
266
+ 'Codeception\\Module\\WPCLI' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPCLI.php',
267
+ 'Codeception\\Module\\WPDb' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPDb.php',
268
+ 'Codeception\\Module\\WPLoader' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPLoader.php',
269
+ 'Codeception\\Module\\WPQueries' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPQueries.php',
270
+ 'Codeception\\Module\\WPSugarMethods' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPSugarMethods.php',
271
+ 'Codeception\\Module\\WPWebDriver' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WPWebDriver.php',
272
+ 'Codeception\\Module\\WebDriver' => $vendorDir . '/codeception/codeception/src/Codeception/Module/WebDriver.php',
273
+ 'Codeception\\Module\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Module/WordPress.php',
274
+ 'Codeception\\Module\\XMLRPC' => $vendorDir . '/codeception/codeception/src/Codeception/Module/XMLRPC.php',
275
+ 'Codeception\\Module\\Yii1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii1.php',
276
+ 'Codeception\\Module\\Yii2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/Yii2.php',
277
+ 'Codeception\\Module\\ZF1' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF1.php',
278
+ 'Codeception\\Module\\ZF2' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZF2.php',
279
+ 'Codeception\\Module\\ZendExpressive' => $vendorDir . '/codeception/codeception/src/Codeception/Module/ZendExpressive.php',
280
+ 'Codeception\\PHPUnit\\ConsolePrinter' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/ConsolePrinter.php',
281
+ 'Codeception\\PHPUnit\\Constraint\\Crawler' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/Crawler.php',
282
+ 'Codeception\\PHPUnit\\Constraint\\CrawlerNot' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/CrawlerNot.php',
283
+ 'Codeception\\PHPUnit\\Constraint\\JsonContains' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/JsonContains.php',
284
+ 'Codeception\\PHPUnit\\Constraint\\JsonType' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/JsonType.php',
285
+ 'Codeception\\PHPUnit\\Constraint\\Page' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/Page.php',
286
+ 'Codeception\\PHPUnit\\Constraint\\WebDriver' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/WebDriver.php',
287
+ 'Codeception\\PHPUnit\\Constraint\\WebDriverNot' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Constraint/WebDriverNot.php',
288
+ 'Codeception\\PHPUnit\\FilterTest' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/FilterTest.php',
289
+ 'Codeception\\PHPUnit\\Listener' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Listener.php',
290
+ 'Codeception\\PHPUnit\\Log\\JUnit' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Log/JUnit.php',
291
+ 'Codeception\\PHPUnit\\ResultPrinter' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter.php',
292
+ 'Codeception\\PHPUnit\\ResultPrinter\\HTML' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter/HTML.php',
293
+ 'Codeception\\PHPUnit\\ResultPrinter\\Report' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter/Report.php',
294
+ 'Codeception\\PHPUnit\\ResultPrinter\\UI' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/ResultPrinter/UI.php',
295
+ 'Codeception\\PHPUnit\\Runner' => $vendorDir . '/codeception/codeception/src/Codeception/PHPUnit/Runner.php',
296
+ 'Codeception\\Scenario' => $vendorDir . '/codeception/codeception/src/Codeception/Scenario.php',
297
+ 'Codeception\\Step' => $vendorDir . '/codeception/codeception/src/Codeception/Step.php',
298
+ 'Codeception\\Step\\Action' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Action.php',
299
+ 'Codeception\\Step\\Assertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Assertion.php',
300
+ 'Codeception\\Step\\Comment' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Comment.php',
301
+ 'Codeception\\Step\\Condition' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Condition.php',
302
+ 'Codeception\\Step\\ConditionalAssertion' => $vendorDir . '/codeception/codeception/src/Codeception/Step/ConditionalAssertion.php',
303
+ 'Codeception\\Step\\Executor' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Executor.php',
304
+ 'Codeception\\Step\\Incomplete' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Incomplete.php',
305
+ 'Codeception\\Step\\Meta' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Meta.php',
306
+ 'Codeception\\Step\\Skip' => $vendorDir . '/codeception/codeception/src/Codeception/Step/Skip.php',
307
+ 'Codeception\\Subscriber\\AutoRebuild' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/AutoRebuild.php',
308
+ 'Codeception\\Subscriber\\BeforeAfterTest' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/BeforeAfterTest.php',
309
+ 'Codeception\\Subscriber\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Bootstrap.php',
310
+ 'Codeception\\Subscriber\\Console' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Console.php',
311
+ 'Codeception\\Subscriber\\Dependencies' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Dependencies.php',
312
+ 'Codeception\\Subscriber\\ErrorHandler' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ErrorHandler.php',
313
+ 'Codeception\\Subscriber\\ExtensionLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/ExtensionLoader.php',
314
+ 'Codeception\\Subscriber\\FailFast' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/FailFast.php',
315
+ 'Codeception\\Subscriber\\GracefulTermination' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/GracefulTermination.php',
316
+ 'Codeception\\Subscriber\\Module' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Module.php',
317
+ 'Codeception\\Subscriber\\Shared\\StaticEvents' => $vendorDir . '/codeception/codeception/src/Codeception/Subscriber/Shared/StaticEvents.php',
318
+ 'Codeception\\Suite' => $vendorDir . '/codeception/codeception/src/Codeception/Suite.php',
319
+ 'Codeception\\SuiteManager' => $vendorDir . '/codeception/codeception/src/Codeception/SuiteManager.php',
320
+ 'Codeception\\Template\\Acceptance' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Acceptance.php',
321
+ 'Codeception\\Template\\Api' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Api.php',
322
+ 'Codeception\\Template\\Bootstrap' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Bootstrap.php',
323
+ 'Codeception\\Template\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Template/Unit.php',
324
+ 'Codeception\\Template\\Wpbrowser' => $vendorDir . '/lucatume/wp-browser/src/Codeception/Template/Wpbrowser.php',
325
+ 'Codeception\\TestCase\\WPAjaxTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPAjaxTestCase.php',
326
+ 'Codeception\\TestCase\\WPCanonicalTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPCanonicalTestCase.php',
327
+ 'Codeception\\TestCase\\WPRestApiTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestApiTestCase.php',
328
+ 'Codeception\\TestCase\\WPRestControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestControllerTestCase.php',
329
+ 'Codeception\\TestCase\\WPRestPostTypeControllerTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPRestPostTypeControllerTestCase.php',
330
+ 'Codeception\\TestCase\\WPTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPTestCase.php',
331
+ 'Codeception\\TestCase\\WPXMLRPCTestCase' => $vendorDir . '/lucatume/wp-browser/src/Codeception/TestCase/WPXMLRPCTestCase.php',
332
+ 'Codeception\\TestInterface' => $vendorDir . '/codeception/codeception/src/Codeception/TestInterface.php',
333
+ 'Codeception\\Test\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cept.php',
334
+ 'Codeception\\Test\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Cest.php',
335
+ 'Codeception\\Test\\Descriptor' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Descriptor.php',
336
+ 'Codeception\\Test\\Feature\\AssertionCounter' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/AssertionCounter.php',
337
+ 'Codeception\\Test\\Feature\\CodeCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/CodeCoverage.php',
338
+ 'Codeception\\Test\\Feature\\ErrorLogger' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ErrorLogger.php',
339
+ 'Codeception\\Test\\Feature\\IgnoreIfMetadataBlocked' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/IgnoreIfMetadataBlocked.php',
340
+ 'Codeception\\Test\\Feature\\MetadataCollector' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/MetadataCollector.php',
341
+ 'Codeception\\Test\\Feature\\ScenarioLoader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Feature/ScenarioLoader.php',
342
+ 'Codeception\\Test\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Gherkin.php',
343
+ 'Codeception\\Test\\Interfaces\\Dependent' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Dependent.php',
344
+ 'Codeception\\Test\\Interfaces\\Descriptive' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Descriptive.php',
345
+ 'Codeception\\Test\\Interfaces\\Plain' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Plain.php',
346
+ 'Codeception\\Test\\Interfaces\\Reported' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/Reported.php',
347
+ 'Codeception\\Test\\Interfaces\\ScenarioDriven' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/ScenarioDriven.php',
348
+ 'Codeception\\Test\\Interfaces\\StrictCoverage' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Interfaces/StrictCoverage.php',
349
+ 'Codeception\\Test\\Loader' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader.php',
350
+ 'Codeception\\Test\\Loader\\Cept' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cept.php',
351
+ 'Codeception\\Test\\Loader\\Cest' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Cest.php',
352
+ 'Codeception\\Test\\Loader\\Gherkin' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Gherkin.php',
353
+ 'Codeception\\Test\\Loader\\LoaderInterface' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/LoaderInterface.php',
354
+ 'Codeception\\Test\\Loader\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Loader/Unit.php',
355
+ 'Codeception\\Test\\Metadata' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Metadata.php',
356
+ 'Codeception\\Test\\Test' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Test.php',
357
+ 'Codeception\\Test\\Unit' => $vendorDir . '/codeception/codeception/src/Codeception/Test/Unit.php',
358
+ 'Codeception\\Util\\ActionSequence' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ActionSequence.php',
359
+ 'Codeception\\Util\\Annotation' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Annotation.php',
360
+ 'Codeception\\Util\\ArrayContainsComparator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ArrayContainsComparator.php',
361
+ 'Codeception\\Util\\Autoload' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Autoload.php',
362
+ 'Codeception\\Util\\ConsecutiveMap' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ConsecutiveMap.php',
363
+ 'Codeception\\Util\\Debug' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Debug.php',
364
+ 'Codeception\\Util\\FileSystem' => $vendorDir . '/codeception/codeception/src/Codeception/Util/FileSystem.php',
365
+ 'Codeception\\Util\\Fixtures' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Fixtures.php',
366
+ 'Codeception\\Util\\HttpCode' => $vendorDir . '/codeception/codeception/src/Codeception/Util/HttpCode.php',
367
+ 'Codeception\\Util\\JsonArray' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonArray.php',
368
+ 'Codeception\\Util\\JsonType' => $vendorDir . '/codeception/codeception/src/Codeception/Util/JsonType.php',
369
+ 'Codeception\\Util\\Locator' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Locator.php',
370
+ 'Codeception\\Util\\Maybe' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Maybe.php',
371
+ 'Codeception\\Util\\PathResolver' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PathResolver.php',
372
+ 'Codeception\\Util\\PropertyAccess' => $vendorDir . '/codeception/codeception/src/Codeception/Util/PropertyAccess.php',
373
+ 'Codeception\\Util\\ReflectionHelper' => $vendorDir . '/codeception/codeception/src/Codeception/Util/ReflectionHelper.php',
374
+ 'Codeception\\Util\\Shared\\Asserts' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Asserts.php',
375
+ 'Codeception\\Util\\Shared\\Namespaces' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Shared/Namespaces.php',
376
+ 'Codeception\\Util\\Soap' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Soap.php',
377
+ 'Codeception\\Util\\Stub' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Stub.php',
378
+ 'Codeception\\Util\\StubMarshaler' => $vendorDir . '/codeception/codeception/src/Codeception/Util/StubMarshaler.php',
379
+ 'Codeception\\Util\\Template' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Template.php',
380
+ 'Codeception\\Util\\Uri' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Uri.php',
381
+ 'Codeception\\Util\\Xml' => $vendorDir . '/codeception/codeception/src/Codeception/Util/Xml.php',
382
+ 'Codeception\\Util\\XmlBuilder' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlBuilder.php',
383
+ 'Codeception\\Util\\XmlStructure' => $vendorDir . '/codeception/codeception/src/Codeception/Util/XmlStructure.php',
384
+ 'Composer\\Autoload\\AutoloadGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/AutoloadGenerator.php',
385
+ 'Composer\\Autoload\\ClassLoader' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassLoader.php',
386
+ 'Composer\\Autoload\\ClassMapGenerator' => $vendorDir . '/composer/composer/src/Composer/Autoload/ClassMapGenerator.php',
387
+ 'Composer\\CaBundle\\CaBundle' => $vendorDir . '/composer/ca-bundle/src/CaBundle.php',
388
+ 'Composer\\Cache' => $vendorDir . '/composer/composer/src/Composer/Cache.php',
389
+ 'Composer\\Command\\AboutCommand' => $vendorDir . '/composer/composer/src/Composer/Command/AboutCommand.php',
390
+ 'Composer\\Command\\ArchiveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ArchiveCommand.php',
391
+ 'Composer\\Command\\BaseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseCommand.php',
392
+ 'Composer\\Command\\BaseDependencyCommand' => $vendorDir . '/composer/composer/src/Composer/Command/BaseDependencyCommand.php',
393
+ 'Composer\\Command\\ClearCacheCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ClearCacheCommand.php',
394
+ 'Composer\\Command\\ConfigCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ConfigCommand.php',
395
+ 'Composer\\Command\\CreateProjectCommand' => $vendorDir . '/composer/composer/src/Composer/Command/CreateProjectCommand.php',
396
+ 'Composer\\Command\\DependsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DependsCommand.php',
397
+ 'Composer\\Command\\DiagnoseCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DiagnoseCommand.php',
398
+ 'Composer\\Command\\DumpAutoloadCommand' => $vendorDir . '/composer/composer/src/Composer/Command/DumpAutoloadCommand.php',
399
+ 'Composer\\Command\\ExecCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ExecCommand.php',
400
+ 'Composer\\Command\\GlobalCommand' => $vendorDir . '/composer/composer/src/Composer/Command/GlobalCommand.php',
401
+ 'Composer\\Command\\HomeCommand' => $vendorDir . '/composer/composer/src/Composer/Command/HomeCommand.php',
402
+ 'Composer\\Command\\InitCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InitCommand.php',
403
+ 'Composer\\Command\\InstallCommand' => $vendorDir . '/composer/composer/src/Composer/Command/InstallCommand.php',
404
+ 'Composer\\Command\\LicensesCommand' => $vendorDir . '/composer/composer/src/Composer/Command/LicensesCommand.php',
405
+ 'Composer\\Command\\OutdatedCommand' => $vendorDir . '/composer/composer/src/Composer/Command/OutdatedCommand.php',
406
+ 'Composer\\Command\\ProhibitsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ProhibitsCommand.php',
407
+ 'Composer\\Command\\RemoveCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RemoveCommand.php',
408
+ 'Composer\\Command\\RequireCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RequireCommand.php',
409
+ 'Composer\\Command\\RunScriptCommand' => $vendorDir . '/composer/composer/src/Composer/Command/RunScriptCommand.php',
410
+ 'Composer\\Command\\ScriptAliasCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ScriptAliasCommand.php',
411
+ 'Composer\\Command\\SearchCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SearchCommand.php',
412
+ 'Composer\\Command\\SelfUpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SelfUpdateCommand.php',
413
+ 'Composer\\Command\\ShowCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ShowCommand.php',
414
+ 'Composer\\Command\\StatusCommand' => $vendorDir . '/composer/composer/src/Composer/Command/StatusCommand.php',
415
+ 'Composer\\Command\\SuggestsCommand' => $vendorDir . '/composer/composer/src/Composer/Command/SuggestsCommand.php',
416
+ 'Composer\\Command\\UpdateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/UpdateCommand.php',
417
+ 'Composer\\Command\\ValidateCommand' => $vendorDir . '/composer/composer/src/Composer/Command/ValidateCommand.php',
418
+ 'Composer\\Compiler' => $vendorDir . '/composer/composer/src/Composer/Compiler.php',
419
+ 'Composer\\Composer' => $vendorDir . '/composer/composer/src/Composer/Composer.php',
420
+ 'Composer\\Config' => $vendorDir . '/composer/composer/src/Composer/Config.php',
421
+ 'Composer\\Config\\ConfigSourceInterface' => $vendorDir . '/composer/composer/src/Composer/Config/ConfigSourceInterface.php',
422
+ 'Composer\\Config\\JsonConfigSource' => $vendorDir . '/composer/composer/src/Composer/Config/JsonConfigSource.php',
423
+ 'Composer\\Console\\Application' => $vendorDir . '/composer/composer/src/Composer/Console/Application.php',
424
+ 'Composer\\Console\\HtmlOutputFormatter' => $vendorDir . '/composer/composer/src/Composer/Console/HtmlOutputFormatter.php',
425
+ 'Composer\\DependencyResolver\\Decisions' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Decisions.php',
426
+ 'Composer\\DependencyResolver\\DefaultPolicy' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/DefaultPolicy.php',
427
+ 'Composer\\DependencyResolver\\GenericRule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/GenericRule.php',
428
+ 'Composer\\DependencyResolver\\Operation\\InstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/InstallOperation.php',
429
+ 'Composer\\DependencyResolver\\Operation\\MarkAliasInstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasInstalledOperation.php',
430
+ 'Composer\\DependencyResolver\\Operation\\MarkAliasUninstalledOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/MarkAliasUninstalledOperation.php',
431
+ 'Composer\\DependencyResolver\\Operation\\OperationInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/OperationInterface.php',
432
+ 'Composer\\DependencyResolver\\Operation\\SolverOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/SolverOperation.php',
433
+ 'Composer\\DependencyResolver\\Operation\\UninstallOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UninstallOperation.php',
434
+ 'Composer\\DependencyResolver\\Operation\\UpdateOperation' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Operation/UpdateOperation.php',
435
+ 'Composer\\DependencyResolver\\PolicyInterface' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/PolicyInterface.php',
436
+ 'Composer\\DependencyResolver\\Pool' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Pool.php',
437
+ 'Composer\\DependencyResolver\\Problem' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Problem.php',
438
+ 'Composer\\DependencyResolver\\Request' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Request.php',
439
+ 'Composer\\DependencyResolver\\Rule' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule.php',
440
+ 'Composer\\DependencyResolver\\Rule2Literals' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Rule2Literals.php',
441
+ 'Composer\\DependencyResolver\\RuleSet' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSet.php',
442
+ 'Composer\\DependencyResolver\\RuleSetGenerator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetGenerator.php',
443
+ 'Composer\\DependencyResolver\\RuleSetIterator' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleSetIterator.php',
444
+ 'Composer\\DependencyResolver\\RuleWatchChain' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchChain.php',
445
+ 'Composer\\DependencyResolver\\RuleWatchGraph' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchGraph.php',
446
+ 'Composer\\DependencyResolver\\RuleWatchNode' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/RuleWatchNode.php',
447
+ 'Composer\\DependencyResolver\\Solver' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Solver.php',
448
+ 'Composer\\DependencyResolver\\SolverBugException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverBugException.php',
449
+ 'Composer\\DependencyResolver\\SolverProblemsException' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/SolverProblemsException.php',
450
+ 'Composer\\DependencyResolver\\Transaction' => $vendorDir . '/composer/composer/src/Composer/DependencyResolver/Transaction.php',
451
+ 'Composer\\Downloader\\ArchiveDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ArchiveDownloader.php',
452
+ 'Composer\\Downloader\\ChangeReportInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/ChangeReportInterface.php',
453
+ 'Composer\\Downloader\\DownloadManager' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloadManager.php',
454
+ 'Composer\\Downloader\\DownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DownloaderInterface.php',
455
+ 'Composer\\Downloader\\DvcsDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/DvcsDownloaderInterface.php',
456
+ 'Composer\\Downloader\\FileDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FileDownloader.php',
457
+ 'Composer\\Downloader\\FilesystemException' => $vendorDir . '/composer/composer/src/Composer/Downloader/FilesystemException.php',
458
+ 'Composer\\Downloader\\FossilDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/FossilDownloader.php',
459
+ 'Composer\\Downloader\\GitDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GitDownloader.php',
460
+ 'Composer\\Downloader\\GzipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/GzipDownloader.php',
461
+ 'Composer\\Downloader\\HgDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/HgDownloader.php',
462
+ 'Composer\\Downloader\\PathDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PathDownloader.php',
463
+ 'Composer\\Downloader\\PearPackageExtractor' => $vendorDir . '/composer/composer/src/Composer/Downloader/PearPackageExtractor.php',
464
+ 'Composer\\Downloader\\PerforceDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PerforceDownloader.php',
465
+ 'Composer\\Downloader\\PharDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/PharDownloader.php',
466
+ 'Composer\\Downloader\\RarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/RarDownloader.php',
467
+ 'Composer\\Downloader\\SvnDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/SvnDownloader.php',
468
+ 'Composer\\Downloader\\TarDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/TarDownloader.php',
469
+ 'Composer\\Downloader\\TransportException' => $vendorDir . '/composer/composer/src/Composer/Downloader/TransportException.php',
470
+ 'Composer\\Downloader\\VcsCapableDownloaderInterface' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsCapableDownloaderInterface.php',
471
+ 'Composer\\Downloader\\VcsDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/VcsDownloader.php',
472
+ 'Composer\\Downloader\\XzDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/XzDownloader.php',
473
+ 'Composer\\Downloader\\ZipDownloader' => $vendorDir . '/composer/composer/src/Composer/Downloader/ZipDownloader.php',
474
+ 'Composer\\EventDispatcher\\Event' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/Event.php',
475
+ 'Composer\\EventDispatcher\\EventDispatcher' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventDispatcher.php',
476
+ 'Composer\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/EventSubscriberInterface.php',
477
+ 'Composer\\EventDispatcher\\ScriptExecutionException' => $vendorDir . '/composer/composer/src/Composer/EventDispatcher/ScriptExecutionException.php',
478
+ 'Composer\\Exception\\NoSslException' => $vendorDir . '/composer/composer/src/Composer/Exception/NoSslException.php',
479
+ 'Composer\\Factory' => $vendorDir . '/composer/composer/src/Composer/Factory.php',
480
+ 'Composer\\IO\\BaseIO' => $vendorDir . '/composer/composer/src/Composer/IO/BaseIO.php',
481
+ 'Composer\\IO\\BufferIO' => $vendorDir . '/composer/composer/src/Composer/IO/BufferIO.php',
482
+ 'Composer\\IO\\ConsoleIO' => $vendorDir . '/composer/composer/src/Composer/IO/ConsoleIO.php',
483
+ 'Composer\\IO\\IOInterface' => $vendorDir . '/composer/composer/src/Composer/IO/IOInterface.php',
484
+ 'Composer\\IO\\NullIO' => $vendorDir . '/composer/composer/src/Composer/IO/NullIO.php',
485
+ 'Composer\\Installer' => $vendorDir . '/composer/composer/src/Composer/Installer.php',
486
+ 'Composer\\Installer\\BinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryInstaller.php',
487
+ 'Composer\\Installer\\BinaryPresenceInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/BinaryPresenceInterface.php',
488
+ 'Composer\\Installer\\InstallationManager' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallationManager.php',
489
+ 'Composer\\Installer\\InstallerEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvent.php',
490
+ 'Composer\\Installer\\InstallerEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerEvents.php',
491
+ 'Composer\\Installer\\InstallerInterface' => $vendorDir . '/composer/composer/src/Composer/Installer/InstallerInterface.php',
492
+ 'Composer\\Installer\\LibraryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/LibraryInstaller.php',
493
+ 'Composer\\Installer\\MetapackageInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/MetapackageInstaller.php',
494
+ 'Composer\\Installer\\NoopInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/NoopInstaller.php',
495
+ 'Composer\\Installer\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvent.php',
496
+ 'Composer\\Installer\\PackageEvents' => $vendorDir . '/composer/composer/src/Composer/Installer/PackageEvents.php',
497
+ 'Composer\\Installer\\PearBinaryInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearBinaryInstaller.php',
498
+ 'Composer\\Installer\\PearInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PearInstaller.php',
499
+ 'Composer\\Installer\\PluginInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/PluginInstaller.php',
500
+ 'Composer\\Installer\\ProjectInstaller' => $vendorDir . '/composer/composer/src/Composer/Installer/ProjectInstaller.php',
501
+ 'Composer\\Installer\\SuggestedPackagesReporter' => $vendorDir . '/composer/composer/src/Composer/Installer/SuggestedPackagesReporter.php',
502
+ 'Composer\\Json\\JsonFile' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFile.php',
503
+ 'Composer\\Json\\JsonFormatter' => $vendorDir . '/composer/composer/src/Composer/Json/JsonFormatter.php',
504
+ 'Composer\\Json\\JsonManipulator' => $vendorDir . '/composer/composer/src/Composer/Json/JsonManipulator.php',
505
+ 'Composer\\Json\\JsonValidationException' => $vendorDir . '/composer/composer/src/Composer/Json/JsonValidationException.php',
506
+ 'Composer\\Package\\AliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/AliasPackage.php',
507
+ 'Composer\\Package\\Archiver\\ArchivableFilesFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFilter.php',
508
+ 'Composer\\Package\\Archiver\\ArchivableFilesFinder' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchivableFilesFinder.php',
509
+ 'Composer\\Package\\Archiver\\ArchiveManager' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiveManager.php',
510
+ 'Composer\\Package\\Archiver\\ArchiverInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ArchiverInterface.php',
511
+ 'Composer\\Package\\Archiver\\BaseExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/BaseExcludeFilter.php',
512
+ 'Composer\\Package\\Archiver\\ComposerExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ComposerExcludeFilter.php',
513
+ 'Composer\\Package\\Archiver\\GitExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/GitExcludeFilter.php',
514
+ 'Composer\\Package\\Archiver\\HgExcludeFilter' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/HgExcludeFilter.php',
515
+ 'Composer\\Package\\Archiver\\PharArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/PharArchiver.php',
516
+ 'Composer\\Package\\Archiver\\ZipArchiver' => $vendorDir . '/composer/composer/src/Composer/Package/Archiver/ZipArchiver.php',
517
+ 'Composer\\Package\\BasePackage' => $vendorDir . '/composer/composer/src/Composer/Package/BasePackage.php',
518
+ 'Composer\\Package\\CompletePackage' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackage.php',
519
+ 'Composer\\Package\\CompletePackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/CompletePackageInterface.php',
520
+ 'Composer\\Package\\Dumper\\ArrayDumper' => $vendorDir . '/composer/composer/src/Composer/Package/Dumper/ArrayDumper.php',
521
+ 'Composer\\Package\\Link' => $vendorDir . '/composer/composer/src/Composer/Package/Link.php',
522
+ 'Composer\\Package\\LinkConstraint\\EmptyConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/EmptyConstraint.php',
523
+ 'Composer\\Package\\LinkConstraint\\LinkConstraintInterface' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/LinkConstraintInterface.php',
524
+ 'Composer\\Package\\LinkConstraint\\MultiConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/MultiConstraint.php',
525
+ 'Composer\\Package\\LinkConstraint\\SpecificConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/SpecificConstraint.php',
526
+ 'Composer\\Package\\LinkConstraint\\VersionConstraint' => $vendorDir . '/composer/composer/src/Composer/Package/LinkConstraint/VersionConstraint.php',
527
+ 'Composer\\Package\\Loader\\ArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ArrayLoader.php',
528
+ 'Composer\\Package\\Loader\\InvalidPackageException' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/InvalidPackageException.php',
529
+ 'Composer\\Package\\Loader\\JsonLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/JsonLoader.php',
530
+ 'Composer\\Package\\Loader\\LoaderInterface' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/LoaderInterface.php',
531
+ 'Composer\\Package\\Loader\\RootPackageLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/RootPackageLoader.php',
532
+ 'Composer\\Package\\Loader\\ValidatingArrayLoader' => $vendorDir . '/composer/composer/src/Composer/Package/Loader/ValidatingArrayLoader.php',
533
+ 'Composer\\Package\\Locker' => $vendorDir . '/composer/composer/src/Composer/Package/Locker.php',
534
+ 'Composer\\Package\\Package' => $vendorDir . '/composer/composer/src/Composer/Package/Package.php',
535
+ 'Composer\\Package\\PackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/PackageInterface.php',
536
+ 'Composer\\Package\\RootAliasPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootAliasPackage.php',
537
+ 'Composer\\Package\\RootPackage' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackage.php',
538
+ 'Composer\\Package\\RootPackageInterface' => $vendorDir . '/composer/composer/src/Composer/Package/RootPackageInterface.php',
539
+ 'Composer\\Package\\Version\\VersionGuesser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionGuesser.php',
540
+ 'Composer\\Package\\Version\\VersionParser' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionParser.php',
541
+ 'Composer\\Package\\Version\\VersionSelector' => $vendorDir . '/composer/composer/src/Composer/Package/Version/VersionSelector.php',
542
+ 'Composer\\Plugin\\Capability\\Capability' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/Capability.php',
543
+ 'Composer\\Plugin\\Capability\\CommandProvider' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capability/CommandProvider.php',
544
+ 'Composer\\Plugin\\Capable' => $vendorDir . '/composer/composer/src/Composer/Plugin/Capable.php',
545
+ 'Composer\\Plugin\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/CommandEvent.php',
546
+ 'Composer\\Plugin\\PluginEvents' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginEvents.php',
547
+ 'Composer\\Plugin\\PluginInterface' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginInterface.php',
548
+ 'Composer\\Plugin\\PluginManager' => $vendorDir . '/composer/composer/src/Composer/Plugin/PluginManager.php',
549
+ 'Composer\\Plugin\\PreFileDownloadEvent' => $vendorDir . '/composer/composer/src/Composer/Plugin/PreFileDownloadEvent.php',
550
+ 'Composer\\Question\\StrictConfirmationQuestion' => $vendorDir . '/composer/composer/src/Composer/Question/StrictConfirmationQuestion.php',
551
+ 'Composer\\Repository\\ArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArrayRepository.php',
552
+ 'Composer\\Repository\\ArtifactRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ArtifactRepository.php',
553
+ 'Composer\\Repository\\BaseRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/BaseRepository.php',
554
+ 'Composer\\Repository\\ComposerRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/ComposerRepository.php',
555
+ 'Composer\\Repository\\CompositeRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/CompositeRepository.php',
556
+ 'Composer\\Repository\\ConfigurableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/ConfigurableRepositoryInterface.php',
557
+ 'Composer\\Repository\\FilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/FilesystemRepository.php',
558
+ 'Composer\\Repository\\InstalledArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledArrayRepository.php',
559
+ 'Composer\\Repository\\InstalledFilesystemRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledFilesystemRepository.php',
560
+ 'Composer\\Repository\\InstalledRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/InstalledRepositoryInterface.php',
561
+ 'Composer\\Repository\\InvalidRepositoryException' => $vendorDir . '/composer/composer/src/Composer/Repository/InvalidRepositoryException.php',
562
+ 'Composer\\Repository\\PackageRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PackageRepository.php',
563
+ 'Composer\\Repository\\PathRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PathRepository.php',
564
+ 'Composer\\Repository\\PearRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PearRepository.php',
565
+ 'Composer\\Repository\\Pear\\BaseChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/BaseChannelReader.php',
566
+ 'Composer\\Repository\\Pear\\ChannelInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelInfo.php',
567
+ 'Composer\\Repository\\Pear\\ChannelReader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelReader.php',
568
+ 'Composer\\Repository\\Pear\\ChannelRest10Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest10Reader.php',
569
+ 'Composer\\Repository\\Pear\\ChannelRest11Reader' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ChannelRest11Reader.php',
570
+ 'Composer\\Repository\\Pear\\DependencyConstraint' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyConstraint.php',
571
+ 'Composer\\Repository\\Pear\\DependencyInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/DependencyInfo.php',
572
+ 'Composer\\Repository\\Pear\\PackageDependencyParser' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageDependencyParser.php',
573
+ 'Composer\\Repository\\Pear\\PackageInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/PackageInfo.php',
574
+ 'Composer\\Repository\\Pear\\ReleaseInfo' => $vendorDir . '/composer/composer/src/Composer/Repository/Pear/ReleaseInfo.php',
575
+ 'Composer\\Repository\\PlatformRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/PlatformRepository.php',
576
+ 'Composer\\Repository\\RepositoryFactory' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryFactory.php',
577
+ 'Composer\\Repository\\RepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryInterface.php',
578
+ 'Composer\\Repository\\RepositoryManager' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositoryManager.php',
579
+ 'Composer\\Repository\\RepositorySecurityException' => $vendorDir . '/composer/composer/src/Composer/Repository/RepositorySecurityException.php',
580
+ 'Composer\\Repository\\VcsRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/VcsRepository.php',
581
+ 'Composer\\Repository\\Vcs\\BitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/BitbucketDriver.php',
582
+ 'Composer\\Repository\\Vcs\\FossilDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/FossilDriver.php',
583
+ 'Composer\\Repository\\Vcs\\GitBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitBitbucketDriver.php',
584
+ 'Composer\\Repository\\Vcs\\GitDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitDriver.php',
585
+ 'Composer\\Repository\\Vcs\\GitHubDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitHubDriver.php',
586
+ 'Composer\\Repository\\Vcs\\GitLabDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php',
587
+ 'Composer\\Repository\\Vcs\\HgBitbucketDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgBitbucketDriver.php',
588
+ 'Composer\\Repository\\Vcs\\HgDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/HgDriver.php',
589
+ 'Composer\\Repository\\Vcs\\PerforceDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/PerforceDriver.php',
590
+ 'Composer\\Repository\\Vcs\\SvnDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/SvnDriver.php',
591
+ 'Composer\\Repository\\Vcs\\VcsDriver' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriver.php',
592
+ 'Composer\\Repository\\Vcs\\VcsDriverInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/Vcs/VcsDriverInterface.php',
593
+ 'Composer\\Repository\\WritableArrayRepository' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableArrayRepository.php',
594
+ 'Composer\\Repository\\WritableRepositoryInterface' => $vendorDir . '/composer/composer/src/Composer/Repository/WritableRepositoryInterface.php',
595
+ 'Composer\\Script\\CommandEvent' => $vendorDir . '/composer/composer/src/Composer/Script/CommandEvent.php',
596
+ 'Composer\\Script\\Event' => $vendorDir . '/composer/composer/src/Composer/Script/Event.php',
597
+ 'Composer\\Script\\PackageEvent' => $vendorDir . '/composer/composer/src/Composer/Script/PackageEvent.php',
598
+ 'Composer\\Script\\ScriptEvents' => $vendorDir . '/composer/composer/src/Composer/Script/ScriptEvents.php',
599
+ 'Composer\\SelfUpdate\\Keys' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Keys.php',
600
+ 'Composer\\SelfUpdate\\Versions' => $vendorDir . '/composer/composer/src/Composer/SelfUpdate/Versions.php',
601
+ 'Composer\\Semver\\Comparator' => $vendorDir . '/composer/semver/src/Comparator.php',
602
+ 'Composer\\Semver\\Constraint\\AbstractConstraint' => $vendorDir . '/composer/semver/src/Constraint/AbstractConstraint.php',
603
+ 'Composer\\Semver\\Constraint\\Constraint' => $vendorDir . '/composer/semver/src/Constraint/Constraint.php',
604
+ 'Composer\\Semver\\Constraint\\ConstraintInterface' => $vendorDir . '/composer/semver/src/Constraint/ConstraintInterface.php',
605
+ 'Composer\\Semver\\Constraint\\EmptyConstraint' => $vendorDir . '/composer/semver/src/Constraint/EmptyConstraint.php',
606
+ 'Composer\\Semver\\Constraint\\MultiConstraint' => $vendorDir . '/composer/semver/src/Constraint/MultiConstraint.php',
607
+ 'Composer\\Semver\\Semver' => $vendorDir . '/composer/semver/src/Semver.php',
608
+ 'Composer\\Semver\\VersionParser' => $vendorDir . '/composer/semver/src/VersionParser.php',
609
+ 'Composer\\Spdx\\SpdxLicenses' => $vendorDir . '/composer/spdx-licenses/src/SpdxLicenses.php',
610
+ 'Composer\\Util\\AuthHelper' => $vendorDir . '/composer/composer/src/Composer/Util/AuthHelper.php',
611
+ 'Composer\\Util\\Bitbucket' => $vendorDir . '/composer/composer/src/Composer/Util/Bitbucket.php',
612
+ 'Composer\\Util\\ComposerMirror' => $vendorDir . '/composer/composer/src/Composer/Util/ComposerMirror.php',
613
+ 'Composer\\Util\\ConfigValidator' => $vendorDir . '/composer/composer/src/Composer/Util/ConfigValidator.php',
614
+ 'Composer\\Util\\ErrorHandler' => $vendorDir . '/composer/composer/src/Composer/Util/ErrorHandler.php',
615
+ 'Composer\\Util\\Filesystem' => $vendorDir . '/composer/composer/src/Composer/Util/Filesystem.php',
616
+ 'Composer\\Util\\Git' => $vendorDir . '/composer/composer/src/Composer/Util/Git.php',
617
+ 'Composer\\Util\\GitHub' => $vendorDir . '/composer/composer/src/Composer/Util/GitHub.php',
618
+ 'Composer\\Util\\GitLab' => $vendorDir . '/composer/composer/src/Composer/Util/GitLab.php',
619
+ 'Composer\\Util\\IniHelper' => $vendorDir . '/composer/composer/src/Composer/Util/IniHelper.php',
620
+ 'Composer\\Util\\NoProxyPattern' => $vendorDir . '/composer/composer/src/Composer/Util/NoProxyPattern.php',
621
+ 'Composer\\Util\\Perforce' => $vendorDir . '/composer/composer/src/Composer/Util/Perforce.php',
622
+ 'Composer\\Util\\Platform' => $vendorDir . '/composer/composer/src/Composer/Util/Platform.php',
623
+ 'Composer\\Util\\ProcessExecutor' => $vendorDir . '/composer/composer/src/Composer/Util/ProcessExecutor.php',
624
+ 'Composer\\Util\\RemoteFilesystem' => $vendorDir . '/composer/composer/src/Composer/Util/RemoteFilesystem.php',
625
+ 'Composer\\Util\\Silencer' => $vendorDir . '/composer/composer/src/Composer/Util/Silencer.php',
626
+ 'Composer\\Util\\SpdxLicense' => $vendorDir . '/composer/composer/src/Composer/Util/SpdxLicense.php',
627
+ 'Composer\\Util\\StreamContextFactory' => $vendorDir . '/composer/composer/src/Composer/Util/StreamContextFactory.php',
628
+ 'Composer\\Util\\Svn' => $vendorDir . '/composer/composer/src/Composer/Util/Svn.php',
629
+ 'Composer\\Util\\TlsHelper' => $vendorDir . '/composer/composer/src/Composer/Util/TlsHelper.php',
630
+ 'Composer\\XdebugHandler' => $vendorDir . '/composer/composer/src/Composer/XdebugHandler.php',
631
+ 'DeepCopy\\DeepCopy' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/DeepCopy.php',
632
+ 'DeepCopy\\Exception\\CloneException' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Exception/CloneException.php',
633
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineCollectionFilter.php',
634
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineEmptyCollectionFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineEmptyCollectionFilter.php',
635
+ 'DeepCopy\\Filter\\Doctrine\\DoctrineProxyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Doctrine/DoctrineProxyFilter.php',
636
+ 'DeepCopy\\Filter\\Filter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php',
637
+ 'DeepCopy\\Filter\\KeepFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/KeepFilter.php',
638
+ 'DeepCopy\\Filter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/ReplaceFilter.php',
639
+ 'DeepCopy\\Filter\\SetNullFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Filter/SetNullFilter.php',
640
+ 'DeepCopy\\Matcher\\Doctrine\\DoctrineProxyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Doctrine/DoctrineProxyMatcher.php',
641
+ 'DeepCopy\\Matcher\\Matcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/Matcher.php',
642
+ 'DeepCopy\\Matcher\\PropertyMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyMatcher.php',
643
+ 'DeepCopy\\Matcher\\PropertyNameMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyNameMatcher.php',
644
+ 'DeepCopy\\Matcher\\PropertyTypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Matcher/PropertyTypeMatcher.php',
645
+ 'DeepCopy\\Reflection\\ReflectionHelper' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/Reflection/ReflectionHelper.php',
646
+ 'DeepCopy\\TypeFilter\\ReplaceFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ReplaceFilter.php',
647
+ 'DeepCopy\\TypeFilter\\ShallowCopyFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/ShallowCopyFilter.php',
648
+ 'DeepCopy\\TypeFilter\\Spl\\SplDoublyLinkedList' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/SplDoublyLinkedList.php',
649
+ 'DeepCopy\\TypeFilter\\TypeFilter' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeFilter/TypeFilter.php',
650
+ 'DeepCopy\\TypeMatcher\\TypeMatcher' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/TypeMatcher/TypeMatcher.php',
651
+ 'Doctrine\\Common\\Inflector\\Inflector' => $vendorDir . '/doctrine/inflector/lib/Doctrine/Common/Inflector/Inflector.php',
652
+ 'Doctrine\\Instantiator\\Exception\\ExceptionInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/ExceptionInterface.php',
653
+ 'Doctrine\\Instantiator\\Exception\\InvalidArgumentException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/InvalidArgumentException.php',
654
+ 'Doctrine\\Instantiator\\Exception\\UnexpectedValueException' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Exception/UnexpectedValueException.php',
655
+ 'Doctrine\\Instantiator\\Instantiator' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/Instantiator.php',
656
+ 'Doctrine\\Instantiator\\InstantiatorInterface' => $vendorDir . '/doctrine/instantiator/src/Doctrine/Instantiator/InstantiatorInterface.php',
657
+ 'Facebook\\WebDriver\\Chrome\\ChromeDriver' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriver.php',
658
+ 'Facebook\\WebDriver\\Chrome\\ChromeDriverService' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeDriverService.php',
659
+ 'Facebook\\WebDriver\\Chrome\\ChromeOptions' => $vendorDir . '/facebook/webdriver/lib/Chrome/ChromeOptions.php',
660
+ 'Facebook\\WebDriver\\Cookie' => $vendorDir . '/facebook/webdriver/lib/Cookie.php',
661
+ 'Facebook\\WebDriver\\Exception\\ElementNotSelectableException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotSelectableException.php',
662
+ 'Facebook\\WebDriver\\Exception\\ElementNotVisibleException' => $vendorDir . '/facebook/webdriver/lib/Exception/ElementNotVisibleException.php',
663
+ 'Facebook\\WebDriver\\Exception\\ExpectedException' => $vendorDir . '/facebook/webdriver/lib/Exception/ExpectedException.php',
664
+ 'Facebook\\WebDriver\\Exception\\IMEEngineActivationFailedException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMEEngineActivationFailedException.php',
665
+ 'Facebook\\WebDriver\\Exception\\IMENotAvailableException' => $vendorDir . '/facebook/webdriver/lib/Exception/IMENotAvailableException.php',
666
+ 'Facebook\\WebDriver\\Exception\\IndexOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/IndexOutOfBoundsException.php',
667
+ 'Facebook\\WebDriver\\Exception\\InvalidCookieDomainException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCookieDomainException.php',
668
+ 'Facebook\\WebDriver\\Exception\\InvalidCoordinatesException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidCoordinatesException.php',
669
+ 'Facebook\\WebDriver\\Exception\\InvalidElementStateException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidElementStateException.php',
670
+ 'Facebook\\WebDriver\\Exception\\InvalidSelectorException' => $vendorDir . '/facebook/webdriver/lib/Exception/InvalidSelectorException.php',
671
+ 'Facebook\\WebDriver\\Exception\\MoveTargetOutOfBoundsException' => $vendorDir . '/facebook/webdriver/lib/Exception/MoveTargetOutOfBoundsException.php',
672
+ 'Facebook\\WebDriver\\Exception\\NoAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoAlertOpenException.php',
673
+ 'Facebook\\WebDriver\\Exception\\NoCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoCollectionException.php',
674
+ 'Facebook\\WebDriver\\Exception\\NoScriptResultException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoScriptResultException.php',
675
+ 'Facebook\\WebDriver\\Exception\\NoStringException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringException.php',
676
+ 'Facebook\\WebDriver\\Exception\\NoStringLengthException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringLengthException.php',
677
+ 'Facebook\\WebDriver\\Exception\\NoStringWrapperException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoStringWrapperException.php',
678
+ 'Facebook\\WebDriver\\Exception\\NoSuchCollectionException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchCollectionException.php',
679
+ 'Facebook\\WebDriver\\Exception\\NoSuchDocumentException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDocumentException.php',
680
+ 'Facebook\\WebDriver\\Exception\\NoSuchDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchDriverException.php',
681
+ 'Facebook\\WebDriver\\Exception\\NoSuchElementException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchElementException.php',
682
+ 'Facebook\\WebDriver\\Exception\\NoSuchFrameException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchFrameException.php',
683
+ 'Facebook\\WebDriver\\Exception\\NoSuchWindowException' => $vendorDir . '/facebook/webdriver/lib/Exception/NoSuchWindowException.php',
684
+ 'Facebook\\WebDriver\\Exception\\NullPointerException' => $vendorDir . '/facebook/webdriver/lib/Exception/NullPointerException.php',
685
+ 'Facebook\\WebDriver\\Exception\\ScriptTimeoutException' => $vendorDir . '/facebook/webdriver/lib/Exception/ScriptTimeoutException.php',
686
+ 'Facebook\\WebDriver\\Exception\\SessionNotCreatedException' => $vendorDir . '/facebook/webdriver/lib/Exception/SessionNotCreatedException.php',
687
+ 'Facebook\\WebDriver\\Exception\\StaleElementReferenceException' => $vendorDir . '/facebook/webdriver/lib/Exception/StaleElementReferenceException.php',
688
+ 'Facebook\\WebDriver\\Exception\\TimeOutException' => $vendorDir . '/facebook/webdriver/lib/Exception/TimeOutException.php',
689
+ 'Facebook\\WebDriver\\Exception\\UnableToSetCookieException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnableToSetCookieException.php',
690
+ 'Facebook\\WebDriver\\Exception\\UnexpectedAlertOpenException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedAlertOpenException.php',
691
+ 'Facebook\\WebDriver\\Exception\\UnexpectedJavascriptException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedJavascriptException.php',
692
+ 'Facebook\\WebDriver\\Exception\\UnexpectedTagNameException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnexpectedTagNameException.php',
693
+ 'Facebook\\WebDriver\\Exception\\UnknownCommandException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownCommandException.php',
694
+ 'Facebook\\WebDriver\\Exception\\UnknownServerException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnknownServerException.php',
695
+ 'Facebook\\WebDriver\\Exception\\UnrecognizedExceptionException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnrecognizedExceptionException.php',
696
+ 'Facebook\\WebDriver\\Exception\\UnsupportedOperationException' => $vendorDir . '/facebook/webdriver/lib/Exception/UnsupportedOperationException.php',
697
+ 'Facebook\\WebDriver\\Exception\\WebDriverCurlException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverCurlException.php',
698
+ 'Facebook\\WebDriver\\Exception\\WebDriverException' => $vendorDir . '/facebook/webdriver/lib/Exception/WebDriverException.php',
699
+ 'Facebook\\WebDriver\\Exception\\XPathLookupException' => $vendorDir . '/facebook/webdriver/lib/Exception/XPathLookupException.php',
700
+ 'Facebook\\WebDriver\\Firefox\\FirefoxDriver' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxDriver.php',
701
+ 'Facebook\\WebDriver\\Firefox\\FirefoxPreferences' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxPreferences.php',
702
+ 'Facebook\\WebDriver\\Firefox\\FirefoxProfile' => $vendorDir . '/facebook/webdriver/lib/Firefox/FirefoxProfile.php',
703
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverButtonReleaseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverButtonReleaseAction.php',
704
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAction.php',
705
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverClickAndHoldAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverClickAndHoldAction.php',
706
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverContextClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverContextClickAction.php',
707
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverCoordinates' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverCoordinates.php',
708
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverDoubleClickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverDoubleClickAction.php',
709
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyDownAction.php',
710
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeyUpAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeyUpAction.php',
711
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverKeysRelatedAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverKeysRelatedAction.php',
712
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseAction.php',
713
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMouseMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMouseMoveAction.php',
714
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverMoveToOffsetAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverMoveToOffsetAction.php',
715
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSendKeysAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSendKeysAction.php',
716
+ 'Facebook\\WebDriver\\Interactions\\Internal\\WebDriverSingleKeyAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Internal/WebDriverSingleKeyAction.php',
717
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDoubleTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDoubleTapAction.php',
718
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverDownAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverDownAction.php',
719
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickAction.php',
720
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverFlickFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverFlickFromElementAction.php',
721
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverLongPressAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverLongPressAction.php',
722
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverMoveAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverMoveAction.php',
723
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollAction.php',
724
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverScrollFromElementAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverScrollFromElementAction.php',
725
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTapAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTapAction.php',
726
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchAction.php',
727
+ 'Facebook\\WebDriver\\Interactions\\Touch\\WebDriverTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Interactions/Touch/WebDriverTouchScreen.php',
728
+ 'Facebook\\WebDriver\\Interactions\\WebDriverActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverActions.php',
729
+ 'Facebook\\WebDriver\\Interactions\\WebDriverCompositeAction' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverCompositeAction.php',
730
+ 'Facebook\\WebDriver\\Interactions\\WebDriverTouchActions' => $vendorDir . '/facebook/webdriver/lib/Interactions/WebDriverTouchActions.php',
731
+ 'Facebook\\WebDriver\\Internal\\WebDriverLocatable' => $vendorDir . '/facebook/webdriver/lib/Internal/WebDriverLocatable.php',
732
+ 'Facebook\\WebDriver\\JavaScriptExecutor' => $vendorDir . '/facebook/webdriver/lib/JavaScriptExecutor.php',
733
+ 'Facebook\\WebDriver\\Net\\URLChecker' => $vendorDir . '/facebook/webdriver/lib/Net/URLChecker.php',
734
+ 'Facebook\\WebDriver\\Remote\\DesiredCapabilities' => $vendorDir . '/facebook/webdriver/lib/Remote/DesiredCapabilities.php',
735
+ 'Facebook\\WebDriver\\Remote\\DriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/DriverCommand.php',
736
+ 'Facebook\\WebDriver\\Remote\\ExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/ExecuteMethod.php',
737
+ 'Facebook\\WebDriver\\Remote\\FileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/FileDetector.php',
738
+ 'Facebook\\WebDriver\\Remote\\HttpCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/HttpCommandExecutor.php',
739
+ 'Facebook\\WebDriver\\Remote\\LocalFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/LocalFileDetector.php',
740
+ 'Facebook\\WebDriver\\Remote\\RemoteExecuteMethod' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteExecuteMethod.php',
741
+ 'Facebook\\WebDriver\\Remote\\RemoteKeyboard' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteKeyboard.php',
742
+ 'Facebook\\WebDriver\\Remote\\RemoteMouse' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteMouse.php',
743
+ 'Facebook\\WebDriver\\Remote\\RemoteTargetLocator' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTargetLocator.php',
744
+ 'Facebook\\WebDriver\\Remote\\RemoteTouchScreen' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteTouchScreen.php',
745
+ 'Facebook\\WebDriver\\Remote\\RemoteWebDriver' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebDriver.php',
746
+ 'Facebook\\WebDriver\\Remote\\RemoteWebElement' => $vendorDir . '/facebook/webdriver/lib/Remote/RemoteWebElement.php',
747
+ 'Facebook\\WebDriver\\Remote\\Service\\DriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverCommandExecutor.php',
748
+ 'Facebook\\WebDriver\\Remote\\Service\\DriverService' => $vendorDir . '/facebook/webdriver/lib/Remote/Service/DriverService.php',
749
+ 'Facebook\\WebDriver\\Remote\\UselessFileDetector' => $vendorDir . '/facebook/webdriver/lib/Remote/UselessFileDetector.php',
750
+ 'Facebook\\WebDriver\\Remote\\WebDriverBrowserType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverBrowserType.php',
751
+ 'Facebook\\WebDriver\\Remote\\WebDriverCapabilityType' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCapabilityType.php',
752
+ 'Facebook\\WebDriver\\Remote\\WebDriverCommand' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverCommand.php',
753
+ 'Facebook\\WebDriver\\Remote\\WebDriverResponse' => $vendorDir . '/facebook/webdriver/lib/Remote/WebDriverResponse.php',
754
+ 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriver' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriver.php',
755
+ 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebDriverNavigation.php',
756
+ 'Facebook\\WebDriver\\Support\\Events\\EventFiringWebElement' => $vendorDir . '/facebook/webdriver/lib/Support/Events/EventFiringWebElement.php',
757
+ 'Facebook\\WebDriver\\Support\\XPathEscaper' => $vendorDir . '/facebook/webdriver/lib/Support/XPathEscaper.php',
758
+ 'Facebook\\WebDriver\\WebDriver' => $vendorDir . '/facebook/webdriver/lib/WebDriver.php',
759
+ 'Facebook\\WebDriver\\WebDriverAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverAction.php',
760
+ 'Facebook\\WebDriver\\WebDriverAlert' => $vendorDir . '/facebook/webdriver/lib/WebDriverAlert.php',
761
+ 'Facebook\\WebDriver\\WebDriverBy' => $vendorDir . '/facebook/webdriver/lib/WebDriverBy.php',
762
+ 'Facebook\\WebDriver\\WebDriverCapabilities' => $vendorDir . '/facebook/webdriver/lib/WebDriverCapabilities.php',
763
+ 'Facebook\\WebDriver\\WebDriverCommandExecutor' => $vendorDir . '/facebook/webdriver/lib/WebDriverCommandExecutor.php',
764
+ 'Facebook\\WebDriver\\WebDriverDimension' => $vendorDir . '/facebook/webdriver/lib/WebDriverDimension.php',
765
+ 'Facebook\\WebDriver\\WebDriverDispatcher' => $vendorDir . '/facebook/webdriver/lib/WebDriverDispatcher.php',
766
+ 'Facebook\\WebDriver\\WebDriverElement' => $vendorDir . '/facebook/webdriver/lib/WebDriverElement.php',
767
+ 'Facebook\\WebDriver\\WebDriverEventListener' => $vendorDir . '/facebook/webdriver/lib/WebDriverEventListener.php',
768
+ 'Facebook\\WebDriver\\WebDriverExpectedCondition' => $vendorDir . '/facebook/webdriver/lib/WebDriverExpectedCondition.php',
769
+ 'Facebook\\WebDriver\\WebDriverHasInputDevices' => $vendorDir . '/facebook/webdriver/lib/WebDriverHasInputDevices.php',
770
+ 'Facebook\\WebDriver\\WebDriverKeyboard' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeyboard.php',
771
+ 'Facebook\\WebDriver\\WebDriverKeys' => $vendorDir . '/facebook/webdriver/lib/WebDriverKeys.php',
772
+ 'Facebook\\WebDriver\\WebDriverMouse' => $vendorDir . '/facebook/webdriver/lib/WebDriverMouse.php',
773
+ 'Facebook\\WebDriver\\WebDriverNavigation' => $vendorDir . '/facebook/webdriver/lib/WebDriverNavigation.php',
774
+ 'Facebook\\WebDriver\\WebDriverOptions' => $vendorDir . '/facebook/webdriver/lib/WebDriverOptions.php',
775
+ 'Facebook\\WebDriver\\WebDriverPlatform' => $vendorDir . '/facebook/webdriver/lib/WebDriverPlatform.php',
776
+ 'Facebook\\WebDriver\\WebDriverPoint' => $vendorDir . '/facebook/webdriver/lib/WebDriverPoint.php',
777
+ 'Facebook\\WebDriver\\WebDriverSearchContext' => $vendorDir . '/facebook/webdriver/lib/WebDriverSearchContext.php',
778
+ 'Facebook\\WebDriver\\WebDriverSelect' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelect.php',
779
+ 'Facebook\\WebDriver\\WebDriverSelectInterface' => $vendorDir . '/facebook/webdriver/lib/WebDriverSelectInterface.php',
780
+ 'Facebook\\WebDriver\\WebDriverTargetLocator' => $vendorDir . '/facebook/webdriver/lib/WebDriverTargetLocator.php',
781
+ 'Facebook\\WebDriver\\WebDriverTimeouts' => $vendorDir . '/facebook/webdriver/lib/WebDriverTimeouts.php',
782
+ 'Facebook\\WebDriver\\WebDriverUpAction' => $vendorDir . '/facebook/webdriver/lib/WebDriverUpAction.php',
783
+ 'Facebook\\WebDriver\\WebDriverWait' => $vendorDir . '/facebook/webdriver/lib/WebDriverWait.php',
784
+ 'Facebook\\WebDriver\\WebDriverWindow' => $vendorDir . '/facebook/webdriver/lib/WebDriverWindow.php',
785
+ 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
786
+ 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
787
+ 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
788
+ 'GuzzleHttp\\Client' => $vendorDir . '/guzzlehttp/guzzle/src/Client.php',
789
+ 'GuzzleHttp\\ClientInterface' => $vendorDir . '/guzzlehttp/guzzle/src/ClientInterface.php',
790
+ 'GuzzleHttp\\Cookie\\CookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
791
+ 'GuzzleHttp\\Cookie\\CookieJarInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
792
+ 'GuzzleHttp\\Cookie\\FileCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',
793
+ 'GuzzleHttp\\Cookie\\SessionCookieJar' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',
794
+ 'GuzzleHttp\\Cookie\\SetCookie' => $vendorDir . '/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
795
+ 'GuzzleHttp\\Exception\\BadResponseException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/BadResponseException.php',
796
+ 'GuzzleHttp\\Exception\\ClientException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ClientException.php',
797
+ 'GuzzleHttp\\Exception\\ConnectException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ConnectException.php',
798
+ 'GuzzleHttp\\Exception\\GuzzleException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/GuzzleException.php',
799
+ 'GuzzleHttp\\Exception\\RequestException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/RequestException.php',
800
+ 'GuzzleHttp\\Exception\\SeekException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/SeekException.php',
801
+ 'GuzzleHttp\\Exception\\ServerException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/ServerException.php',
802
+ 'GuzzleHttp\\Exception\\TooManyRedirectsException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',
803
+ 'GuzzleHttp\\Exception\\TransferException' => $vendorDir . '/guzzlehttp/guzzle/src/Exception/TransferException.php',
804
+ 'GuzzleHttp\\HandlerStack' => $vendorDir . '/guzzlehttp/guzzle/src/HandlerStack.php',
805
+ 'GuzzleHttp\\Handler\\CurlFactory' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
806
+ 'GuzzleHttp\\Handler\\CurlFactoryInterface' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
807
+ 'GuzzleHttp\\Handler\\CurlHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
808
+ 'GuzzleHttp\\Handler\\CurlMultiHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
809
+ 'GuzzleHttp\\Handler\\EasyHandle' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
810
+ 'GuzzleHttp\\Handler\\MockHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/MockHandler.php',
811
+ 'GuzzleHttp\\Handler\\Proxy' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/Proxy.php',
812
+ 'GuzzleHttp\\Handler\\StreamHandler' => $vendorDir . '/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
813
+ 'GuzzleHttp\\MessageFormatter' => $vendorDir . '/guzzlehttp/guzzle/src/MessageFormatter.php',
814
+ 'GuzzleHttp\\Middleware' => $vendorDir . '/guzzlehttp/guzzle/src/Middleware.php',
815
+ 'GuzzleHttp\\Pool' => $vendorDir . '/guzzlehttp/guzzle/src/Pool.php',
816
+ 'GuzzleHttp\\PrepareBodyMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
817
+ 'GuzzleHttp\\Promise\\AggregateException' => $vendorDir . '/guzzlehttp/promises/src/AggregateException.php',
818
+ 'GuzzleHttp\\Promise\\CancellationException' => $vendorDir . '/guzzlehttp/promises/src/CancellationException.php',
819
+ 'GuzzleHttp\\Promise\\Coroutine' => $vendorDir . '/guzzlehttp/promises/src/Coroutine.php',
820
+ 'GuzzleHttp\\Promise\\EachPromise' => $vendorDir . '/guzzlehttp/promises/src/EachPromise.php',
821
+ 'GuzzleHttp\\Promise\\FulfilledPromise' => $vendorDir . '/guzzlehttp/promises/src/FulfilledPromise.php',
822
+ 'GuzzleHttp\\Promise\\Promise' => $vendorDir . '/guzzlehttp/promises/src/Promise.php',
823
+ 'GuzzleHttp\\Promise\\PromiseInterface' => $vendorDir . '/guzzlehttp/promises/src/PromiseInterface.php',
824
+ 'GuzzleHttp\\Promise\\PromisorInterface' => $vendorDir . '/guzzlehttp/promises/src/PromisorInterface.php',
825
+ 'GuzzleHttp\\Promise\\RejectedPromise' => $vendorDir . '/guzzlehttp/promises/src/RejectedPromise.php',
826
+ 'GuzzleHttp\\Promise\\RejectionException' => $vendorDir . '/guzzlehttp/promises/src/RejectionException.php',
827
+ 'GuzzleHttp\\Promise\\TaskQueue' => $vendorDir . '/guzzlehttp/promises/src/TaskQueue.php',
828
+ 'GuzzleHttp\\Promise\\TaskQueueInterface' => $vendorDir . '/guzzlehttp/promises/src/TaskQueueInterface.php',
829
+ 'GuzzleHttp\\Psr7\\AppendStream' => $vendorDir . '/guzzlehttp/psr7/src/AppendStream.php',
830
+ 'GuzzleHttp\\Psr7\\BufferStream' => $vendorDir . '/guzzlehttp/psr7/src/BufferStream.php',
831
+ 'GuzzleHttp\\Psr7\\CachingStream' => $vendorDir . '/guzzlehttp/psr7/src/CachingStream.php',
832
+ 'GuzzleHttp\\Psr7\\DroppingStream' => $vendorDir . '/guzzlehttp/psr7/src/DroppingStream.php',
833
+ 'GuzzleHttp\\Psr7\\FnStream' => $vendorDir . '/guzzlehttp/psr7/src/FnStream.php',
834
+ 'GuzzleHttp\\Psr7\\InflateStream' => $vendorDir . '/guzzlehttp/psr7/src/InflateStream.php',
835
+ 'GuzzleHttp\\Psr7\\LazyOpenStream' => $vendorDir . '/guzzlehttp/psr7/src/LazyOpenStream.php',
836
+ 'GuzzleHttp\\Psr7\\LimitStream' => $vendorDir . '/guzzlehttp/psr7/src/LimitStream.php',
837
+ 'GuzzleHttp\\Psr7\\MessageTrait' => $vendorDir . '/guzzlehttp/psr7/src/MessageTrait.php',
838
+ 'GuzzleHttp\\Psr7\\MultipartStream' => $vendorDir . '/guzzlehttp/psr7/src/MultipartStream.php',
839
+ 'GuzzleHttp\\Psr7\\NoSeekStream' => $vendorDir . '/guzzlehttp/psr7/src/NoSeekStream.php',
840
+ 'GuzzleHttp\\Psr7\\PumpStream' => $vendorDir . '/guzzlehttp/psr7/src/PumpStream.php',
841
+ 'GuzzleHttp\\Psr7\\Request' => $vendorDir . '/guzzlehttp/psr7/src/Request.php',
842
+ 'GuzzleHttp\\Psr7\\Response' => $vendorDir . '/guzzlehttp/psr7/src/Response.php',
843
+ 'GuzzleHttp\\Psr7\\ServerRequest' => $vendorDir . '/guzzlehttp/psr7/src/ServerRequest.php',
844
+ 'GuzzleHttp\\Psr7\\Stream' => $vendorDir . '/guzzlehttp/psr7/src/Stream.php',
845
+ 'GuzzleHttp\\Psr7\\StreamDecoratorTrait' => $vendorDir . '/guzzlehttp/psr7/src/StreamDecoratorTrait.php',
846
+ 'GuzzleHttp\\Psr7\\StreamWrapper' => $vendorDir . '/guzzlehttp/psr7/src/StreamWrapper.php',
847
+ 'GuzzleHttp\\Psr7\\UploadedFile' => $vendorDir . '/guzzlehttp/psr7/src/UploadedFile.php',
848
+ 'GuzzleHttp\\Psr7\\Uri' => $vendorDir . '/guzzlehttp/psr7/src/Uri.php',
849
+ 'GuzzleHttp\\Psr7\\UriNormalizer' => $vendorDir . '/guzzlehttp/psr7/src/UriNormalizer.php',
850
+ 'GuzzleHttp\\Psr7\\UriResolver' => $vendorDir . '/guzzlehttp/psr7/src/UriResolver.php',
851
+ 'GuzzleHttp\\RedirectMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RedirectMiddleware.php',
852
+ 'GuzzleHttp\\RequestOptions' => $vendorDir . '/guzzlehttp/guzzle/src/RequestOptions.php',
853
+ 'GuzzleHttp\\RetryMiddleware' => $vendorDir . '/guzzlehttp/guzzle/src/RetryMiddleware.php',
854
+ 'GuzzleHttp\\TransferStats' => $vendorDir . '/guzzlehttp/guzzle/src/TransferStats.php',
855
+ 'GuzzleHttp\\UriTemplate' => $vendorDir . '/guzzlehttp/guzzle/src/UriTemplate.php',
856
+ 'Handlebars\\Arguments' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Arguments.php',
857
+ 'Handlebars\\Autoloader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Autoloader.php',
858
+ 'Handlebars\\BaseString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/BaseString.php',
859
+ 'Handlebars\\Cache' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache.php',
860
+ 'Handlebars\\Cache\\APC' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/APC.php',
861
+ 'Handlebars\\Cache\\Disk' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Disk.php',
862
+ 'Handlebars\\Cache\\Dummy' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Cache/Dummy.php',
863
+ 'Handlebars\\ChildContext' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/ChildContext.php',
864
+ 'Handlebars\\Context' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Context.php',
865
+ 'Handlebars\\Handlebars' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Handlebars.php',
866
+ 'Handlebars\\Helper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper.php',
867
+ 'Handlebars\\Helper\\BindAttrHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/BindAttrHelper.php',
868
+ 'Handlebars\\Helper\\EachHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/EachHelper.php',
869
+ 'Handlebars\\Helper\\IfHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/IfHelper.php',
870
+ 'Handlebars\\Helper\\UnlessHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/UnlessHelper.php',
871
+ 'Handlebars\\Helper\\WithHelper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helper/WithHelper.php',
872
+ 'Handlebars\\Helpers' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Helpers.php',
873
+ 'Handlebars\\Loader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader.php',
874
+ 'Handlebars\\Loader\\ArrayLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/ArrayLoader.php',
875
+ 'Handlebars\\Loader\\FilesystemLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/FilesystemLoader.php',
876
+ 'Handlebars\\Loader\\InlineLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/InlineLoader.php',
877
+ 'Handlebars\\Loader\\StringLoader' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Loader/StringLoader.php',
878
+ 'Handlebars\\Parser' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Parser.php',
879
+ 'Handlebars\\SafeString' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/SafeString.php',
880
+ 'Handlebars\\String' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/String.php',
881
+ 'Handlebars\\StringWrapper' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/StringWrapper.php',
882
+ 'Handlebars\\Template' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Template.php',
883
+ 'Handlebars\\Tokenizer' => $vendorDir . '/xamin/handlebars.php/src/Handlebars/Tokenizer.php',
884
+ 'Hautelook\\Phpass\\PasswordHash' => $vendorDir . '/hautelook/phpass/src/Hautelook/Phpass/PasswordHash.php',
885
+ 'Illuminate\\Contracts\\Auth\\Access\\Authorizable' => $vendorDir . '/illuminate/contracts/Auth/Access/Authorizable.php',
886
+ 'Illuminate\\Contracts\\Auth\\Access\\Gate' => $vendorDir . '/illuminate/contracts/Auth/Access/Gate.php',
887
+ 'Illuminate\\Contracts\\Auth\\Authenticatable' => $vendorDir . '/illuminate/contracts/Auth/Authenticatable.php',
888
+ 'Illuminate\\Contracts\\Auth\\CanResetPassword' => $vendorDir . '/illuminate/contracts/Auth/CanResetPassword.php',
889
+ 'Illuminate\\Contracts\\Auth\\Factory' => $vendorDir . '/illuminate/contracts/Auth/Factory.php',
890
+ 'Illuminate\\Contracts\\Auth\\Guard' => $vendorDir . '/illuminate/contracts/Auth/Guard.php',
891
+ 'Illuminate\\Contracts\\Auth\\PasswordBroker' => $vendorDir . '/illuminate/contracts/Auth/PasswordBroker.php',
892
+ 'Illuminate\\Contracts\\Auth\\PasswordBrokerFactory' => $vendorDir . '/illuminate/contracts/Auth/PasswordBrokerFactory.php',
893
+ 'Illuminate\\Contracts\\Auth\\StatefulGuard' => $vendorDir . '/illuminate/contracts/Auth/StatefulGuard.php',
894
+ 'Illuminate\\Contracts\\Auth\\SupportsBasicAuth' => $vendorDir . '/illuminate/contracts/Auth/SupportsBasicAuth.php',
895
+ 'Illuminate\\Contracts\\Auth\\UserProvider' => $vendorDir . '/illuminate/contracts/Auth/UserProvider.php',
896
+ 'Illuminate\\Contracts\\Broadcasting\\Broadcaster' => $vendorDir . '/illuminate/contracts/Broadcasting/Broadcaster.php',
897
+ 'Illuminate\\Contracts\\Broadcasting\\Factory' => $vendorDir . '/illuminate/contracts/Broadcasting/Factory.php',
898
+ 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcast' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php',
899
+ 'Illuminate\\Contracts\\Broadcasting\\ShouldBroadcastNow' => $vendorDir . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php',
900
+ 'Illuminate\\Contracts\\Bus\\Dispatcher' => $vendorDir . '/illuminate/contracts/Bus/Dispatcher.php',
901
+ 'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => $vendorDir . '/illuminate/contracts/Bus/QueueingDispatcher.php',
902
+ 'Illuminate\\Contracts\\Cache\\Factory' => $vendorDir . '/illuminate/contracts/Cache/Factory.php',
903
+ 'Illuminate\\Contracts\\Cache\\Repository' => $vendorDir . '/illuminate/contracts/Cache/Repository.php',
904
+ 'Illuminate\\Contracts\\Cache\\Store' => $vendorDir . '/illuminate/contracts/Cache/Store.php',
905
+ 'Illuminate\\Contracts\\Config\\Repository' => $vendorDir . '/illuminate/contracts/Config/Repository.php',
906
+ 'Illuminate\\Contracts\\Console\\Application' => $vendorDir . '/illuminate/contracts/Console/Application.php',
907
+ 'Illuminate\\Contracts\\Console\\Kernel' => $vendorDir . '/illuminate/contracts/Console/Kernel.php',
908
+ 'Illuminate\\Contracts\\Container\\BindingResolutionException' => $vendorDir . '/illuminate/contracts/Container/BindingResolutionException.php',
909
+ 'Illuminate\\Contracts\\Container\\Container' => $vendorDir . '/illuminate/contracts/Container/Container.php',
910
+ 'Illuminate\\Contracts\\Container\\ContextualBindingBuilder' => $vendorDir . '/illuminate/contracts/Container/ContextualBindingBuilder.php',
911
+ 'Illuminate\\Contracts\\Cookie\\Factory' => $vendorDir . '/illuminate/contracts/Cookie/Factory.php',
912
+ 'Illuminate\\Contracts\\Cookie\\QueueingFactory' => $vendorDir . '/illuminate/contracts/Cookie/QueueingFactory.php',
913
+ 'Illuminate\\Contracts\\Database\\ModelIdentifier' => $vendorDir . '/illuminate/contracts/Database/ModelIdentifier.php',
914
+ 'Illuminate\\Contracts\\Debug\\ExceptionHandler' => $vendorDir . '/illuminate/contracts/Debug/ExceptionHandler.php',
915
+ 'Illuminate\\Contracts\\Encryption\\DecryptException' => $vendorDir . '/illuminate/contracts/Encryption/DecryptException.php',
916
+ 'Illuminate\\Contracts\\Encryption\\EncryptException' => $vendorDir . '/illuminate/contracts/Encryption/EncryptException.php',
917
+ 'Illuminate\\Contracts\\Encryption\\Encrypter' => $vendorDir . '/illuminate/contracts/Encryption/Encrypter.php',
918
+ 'Illuminate\\Contracts\\Events\\Dispatcher' => $vendorDir . '/illuminate/contracts/Events/Dispatcher.php',
919
+ 'Illuminate\\Contracts\\Filesystem\\Cloud' => $vendorDir . '/illuminate/contracts/Filesystem/Cloud.php',
920
+ 'Illuminate\\Contracts\\Filesystem\\Factory' => $vendorDir . '/illuminate/contracts/Filesystem/Factory.php',
921
+ 'Illuminate\\Contracts\\Filesystem\\FileNotFoundException' => $vendorDir . '/illuminate/contracts/Filesystem/FileNotFoundException.php',
922
+ 'Illuminate\\Contracts\\Filesystem\\Filesystem' => $vendorDir . '/illuminate/contracts/Filesystem/Filesystem.php',
923
+ 'Illuminate\\Contracts\\Foundation\\Application' => $vendorDir . '/illuminate/contracts/Foundation/Application.php',
924
+ 'Illuminate\\Contracts\\Hashing\\Hasher' => $vendorDir . '/illuminate/contracts/Hashing/Hasher.php',
925
+ 'Illuminate\\Contracts\\Http\\Kernel' => $vendorDir . '/illuminate/contracts/Http/Kernel.php',
926
+ 'Illuminate\\Contracts\\Logging\\Log' => $vendorDir . '/illuminate/contracts/Logging/Log.php',
927
+ 'Illuminate\\Contracts\\Mail\\MailQueue' => $vendorDir . '/illuminate/contracts/Mail/MailQueue.php',
928
+ 'Illuminate\\Contracts\\Mail\\Mailable' => $vendorDir . '/illuminate/contracts/Mail/Mailable.php',
929
+ 'Illuminate\\Contracts\\Mail\\Mailer' => $vendorDir . '/illuminate/contracts/Mail/Mailer.php',
930
+ 'Illuminate\\Contracts\\Notifications\\Dispatcher' => $vendorDir . '/illuminate/contracts/Notifications/Dispatcher.php',
931
+ 'Illuminate\\Contracts\\Notifications\\Factory' => $vendorDir . '/illuminate/contracts/Notifications/Factory.php',
932
+ 'Illuminate\\Contracts\\Pagination\\LengthAwarePaginator' => $vendorDir . '/illuminate/contracts/Pagination/LengthAwarePaginator.php',
933
+ 'Illuminate\\Contracts\\Pagination\\Paginator' => $vendorDir . '/illuminate/contracts/Pagination/Paginator.php',
934
+ 'Illuminate\\Contracts\\Pipeline\\Hub' => $vendorDir . '/illuminate/contracts/Pipeline/Hub.php',
935
+ 'Illuminate\\Contracts\\Pipeline\\Pipeline' => $vendorDir . '/illuminate/contracts/Pipeline/Pipeline.php',
936
+ 'Illuminate\\Contracts\\Queue\\EntityNotFoundException' => $vendorDir . '/illuminate/contracts/Queue/EntityNotFoundException.php',
937
+ 'Illuminate\\Contracts\\Queue\\EntityResolver' => $vendorDir . '/illuminate/contracts/Queue/EntityResolver.php',
938
+ 'Illuminate\\Contracts\\Queue\\Factory' => $vendorDir . '/illuminate/contracts/Queue/Factory.php',
939
+ 'Illuminate\\Contracts\\Queue\\Job' => $vendorDir . '/illuminate/contracts/Queue/Job.php',
940
+ 'Illuminate\\Contracts\\Queue\\Monitor' => $vendorDir . '/illuminate/contracts/Queue/Monitor.php',
941
+ 'Illuminate\\Contracts\\Queue\\Queue' => $vendorDir . '/illuminate/contracts/Queue/Queue.php',
942
+ 'Illuminate\\Contracts\\Queue\\QueueableCollection' => $vendorDir . '/illuminate/contracts/Queue/QueueableCollection.php',
943
+ 'Illuminate\\Contracts\\Queue\\QueueableEntity' => $vendorDir . '/illuminate/contracts/Queue/QueueableEntity.php',
944
+ 'Illuminate\\Contracts\\Queue\\ShouldQueue' => $vendorDir . '/illuminate/contracts/Queue/ShouldQueue.php',
945
+ 'Illuminate\\Contracts\\Redis\\Factory' => $vendorDir . '/illuminate/contracts/Redis/Factory.php',
946
+ 'Illuminate\\Contracts\\Routing\\BindingRegistrar' => $vendorDir . '/illuminate/contracts/Routing/BindingRegistrar.php',
947
+ 'Illuminate\\Contracts\\Routing\\Registrar' => $vendorDir . '/illuminate/contracts/Routing/Registrar.php',
948
+ 'Illuminate\\Contracts\\Routing\\ResponseFactory' => $vendorDir . '/illuminate/contracts/Routing/ResponseFactory.php',
949
+ 'Illuminate\\Contracts\\Routing\\UrlGenerator' => $vendorDir . '/illuminate/contracts/Routing/UrlGenerator.php',
950
+ 'Illuminate\\Contracts\\Routing\\UrlRoutable' => $vendorDir . '/illuminate/contracts/Routing/UrlRoutable.php',
951
+ 'Illuminate\\Contracts\\Session\\Session' => $vendorDir . '/illuminate/contracts/Session/Session.php',
952
+ 'Illuminate\\Contracts\\Support\\Arrayable' => $vendorDir . '/illuminate/contracts/Support/Arrayable.php',
953
+ 'Illuminate\\Contracts\\Support\\Htmlable' => $vendorDir . '/illuminate/contracts/Support/Htmlable.php',
954
+ 'Illuminate\\Contracts\\Support\\Jsonable' => $vendorDir . '/illuminate/contracts/Support/Jsonable.php',
955
+ 'Illuminate\\Contracts\\Support\\MessageBag' => $vendorDir . '/illuminate/contracts/Support/MessageBag.php',
956
+ 'Illuminate\\Contracts\\Support\\MessageProvider' => $vendorDir . '/illuminate/contracts/Support/MessageProvider.php',
957
+ 'Illuminate\\Contracts\\Support\\Renderable' => $vendorDir . '/illuminate/contracts/Support/Renderable.php',
958
+ 'Illuminate\\Contracts\\Translation\\Translator' => $vendorDir . '/illuminate/contracts/Translation/Translator.php',
959
+ 'Illuminate\\Contracts\\Validation\\Factory' => $vendorDir . '/illuminate/contracts/Validation/Factory.php',
960
+ 'Illuminate\\Contracts\\Validation\\ValidatesWhenResolved' => $vendorDir . '/illuminate/contracts/Validation/ValidatesWhenResolved.php',
961
+ 'Illuminate\\Contracts\\Validation\\Validator' => $vendorDir . '/illuminate/contracts/Validation/Validator.php',
962
+ 'Illuminate\\Contracts\\View\\Factory' => $vendorDir . '/illuminate/contracts/View/Factory.php',
963
+ 'Illuminate\\Contracts\\View\\View' => $vendorDir . '/illuminate/contracts/View/View.php',
964
+ 'Illuminate\\Support\\AggregateServiceProvider' => $vendorDir . '/illuminate/support/AggregateServiceProvider.php',
965
+ 'Illuminate\\Support\\Arr' => $vendorDir . '/illuminate/support/Arr.php',
966
+ 'Illuminate\\Support\\Collection' => $vendorDir . '/illuminate/support/Collection.php',
967
+ 'Illuminate\\Support\\Composer' => $vendorDir . '/illuminate/support/Composer.php',
968
+ 'Illuminate\\Support\\Debug\\Dumper' => $vendorDir . '/illuminate/support/Debug/Dumper.php',
969
+ 'Illuminate\\Support\\Debug\\HtmlDumper' => $vendorDir . '/illuminate/support/Debug/HtmlDumper.php',
970
+ 'Illuminate\\Support\\Facades\\App' => $vendorDir . '/illuminate/support/Facades/App.php',
971
+ 'Illuminate\\Support\\Facades\\Artisan' => $vendorDir . '/illuminate/support/Facades/Artisan.php',
972
+ 'Illuminate\\Support\\Facades\\Auth' => $vendorDir . '/illuminate/support/Facades/Auth.php',
973
+ 'Illuminate\\Support\\Facades\\Blade' => $vendorDir . '/illuminate/support/Facades/Blade.php',
974
+ 'Illuminate\\Support\\Facades\\Broadcast' => $vendorDir . '/illuminate/support/Facades/Broadcast.php',
975
+ 'Illuminate\\Support\\Facades\\Bus' => $vendorDir . '/illuminate/support/Facades/Bus.php',
976
+ 'Illuminate\\Support\\Facades\\Cache' => $vendorDir . '/illuminate/support/Facades/Cache.php',
977
+ 'Illuminate\\Support\\Facades\\Config' => $vendorDir . '/illuminate/support/Facades/Config.php',
978
+ 'Illuminate\\Support\\Facades\\Cookie' => $vendorDir . '/illuminate/support/Facades/Cookie.php',
979
+ 'Illuminate\\Support\\Facades\\Crypt' => $vendorDir . '/illuminate/support/Facades/Crypt.php',
980
+ 'Illuminate\\Support\\Facades\\DB' => $vendorDir . '/illuminate/support/Facades/DB.php',
981
+ 'Illuminate\\Support\\Facades\\Event' => $vendorDir . '/illuminate/support/Facades/Event.php',
982
+ 'Illuminate\\Support\\Facades\\Facade' => $vendorDir . '/illuminate/support/Facades/Facade.php',
983
+ 'Illuminate\\Support\\Facades\\File' => $vendorDir . '/illuminate/support/Facades/File.php',
984
+ 'Illuminate\\Support\\Facades\\Gate' => $vendorDir . '/illuminate/support/Facades/Gate.php',
985
+ 'Illuminate\\Support\\Facades\\Hash' => $vendorDir . '/illuminate/support/Facades/Hash.php',
986
+ 'Illuminate\\Support\\Facades\\Input' => $vendorDir . '/illuminate/support/Facades/Input.php',
987
+ 'Illuminate\\Support\\Facades\\Lang' => $vendorDir . '/illuminate/support/Facades/Lang.php',
988
+ 'Illuminate\\Support\\Facades\\Log' => $vendorDir . '/illuminate/support/Facades/Log.php',
989
+ 'Illuminate\\Support\\Facades\\Mail' => $vendorDir . '/illuminate/support/Facades/Mail.php',
990
+ 'Illuminate\\Support\\Facades\\Notification' => $vendorDir . '/illuminate/support/Facades/Notification.php',
991
+ 'Illuminate\\Support\\Facades\\Password' => $vendorDir . '/illuminate/support/Facades/Password.php',
992
+ 'Illuminate\\Support\\Facades\\Queue' => $vendorDir . '/illuminate/support/Facades/Queue.php',
993
+ 'Illuminate\\Support\\Facades\\Redirect' => $vendorDir . '/illuminate/support/Facades/Redirect.php',
994
+ 'Illuminate\\Support\\Facades\\Redis' => $vendorDir . '/illuminate/support/Facades/Redis.php',
995
+ 'Illuminate\\Support\\Facades\\Request' => $vendorDir . '/illuminate/support/Facades/Request.php',
996
+ 'Illuminate\\Support\\Facades\\Response' => $vendorDir . '/illuminate/support/Facades/Response.php',
997
+ 'Illuminate\\Support\\Facades\\Route' => $vendorDir . '/illuminate/support/Facades/Route.php',
998
+ 'Illuminate\\Support\\Facades\\Schema' => $vendorDir . '/illuminate/support/Facades/Schema.php',
999
+ 'Illuminate\\Support\\Facades\\Session' => $vendorDir . '/illuminate/support/Facades/Session.php',
1000
+ 'Illuminate\\Support\\Facades\\Storage' => $vendorDir . '/illuminate/support/Facades/Storage.php',
1001
+ 'Illuminate\\Support\\Facades\\URL' => $vendorDir . '/illuminate/support/Facades/URL.php',
1002
+ 'Illuminate\\Support\\Facades\\Validator' => $vendorDir . '/illuminate/support/Facades/Validator.php',
1003
+ 'Illuminate\\Support\\Facades\\View' => $vendorDir . '/illuminate/support/Facades/View.php',
1004
+ 'Illuminate\\Support\\Fluent' => $vendorDir . '/illuminate/support/Fluent.php',
1005
+ 'Illuminate\\Support\\HigherOrderCollectionProxy' => $vendorDir . '/illuminate/support/HigherOrderCollectionProxy.php',
1006
+ 'Illuminate\\Support\\HtmlString' => $vendorDir . '/illuminate/support/HtmlString.php',
1007
+ 'Illuminate\\Support\\Manager' => $vendorDir . '/illuminate/support/Manager.php',
1008
+ 'Illuminate\\Support\\MessageBag' => $vendorDir . '/illuminate/support/MessageBag.php',
1009
+ 'Illuminate\\Support\\NamespacedItemResolver' => $vendorDir . '/illuminate/support/NamespacedItemResolver.php',
1010
+ 'Illuminate\\Support\\Pluralizer' => $vendorDir . '/illuminate/support/Pluralizer.php',
1011
+ 'Illuminate\\Support\\ServiceProvider' => $vendorDir . '/illuminate/support/ServiceProvider.php',
1012
+ 'Illuminate\\Support\\Str' => $vendorDir . '/illuminate/support/Str.php',
1013
+ 'Illuminate\\Support\\Testing\\Fakes\\BusFake' => $vendorDir . '/illuminate/support/Testing/Fakes/BusFake.php',
1014
+ 'Illuminate\\Support\\Testing\\Fakes\\EventFake' => $vendorDir . '/illuminate/support/Testing/Fakes/EventFake.php',
1015
+ 'Illuminate\\Support\\Testing\\Fakes\\MailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/MailFake.php',
1016
+ 'Illuminate\\Support\\Testing\\Fakes\\NotificationFake' => $vendorDir . '/illuminate/support/Testing/Fakes/NotificationFake.php',
1017
+ 'Illuminate\\Support\\Testing\\Fakes\\PendingMailFake' => $vendorDir . '/illuminate/support/Testing/Fakes/PendingMailFake.php',
1018
+ 'Illuminate\\Support\\Testing\\Fakes\\QueueFake' => $vendorDir . '/illuminate/support/Testing/Fakes/QueueFake.php',
1019
+ 'Illuminate\\Support\\Traits\\CapsuleManagerTrait' => $vendorDir . '/illuminate/support/Traits/CapsuleManagerTrait.php',
1020
+ 'Illuminate\\Support\\Traits\\Macroable' => $vendorDir . '/illuminate/support/Traits/Macroable.php',
1021
+ 'Illuminate\\Support\\ViewErrorBag' => $vendorDir . '/illuminate/support/ViewErrorBag.php',
1022
+ 'Italy_Cookie_Choices\\Admin\\Sanitize' => $baseDir . '/admin/Sanitize.php',
1023
+ 'Italy_Cookie_Choices\\Admin\\Settings' => $baseDir . '/admin/Settings.php',
1024
+ 'Italy_Cookie_Choices\\Core\\Cookie_Choices' => $baseDir . '/core/Cookie_Choices.php',
1025
+ 'JsonSchema\\Constraints\\BaseConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/BaseConstraint.php',
1026
+ 'JsonSchema\\Constraints\\CollectionConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/CollectionConstraint.php',
1027
+ 'JsonSchema\\Constraints\\Constraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Constraint.php',
1028
+ 'JsonSchema\\Constraints\\ConstraintInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ConstraintInterface.php',
1029
+ 'JsonSchema\\Constraints\\EnumConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/EnumConstraint.php',
1030
+ 'JsonSchema\\Constraints\\Factory' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/Factory.php',
1031
+ 'JsonSchema\\Constraints\\FormatConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/FormatConstraint.php',
1032
+ 'JsonSchema\\Constraints\\NumberConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/NumberConstraint.php',
1033
+ 'JsonSchema\\Constraints\\ObjectConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/ObjectConstraint.php',
1034
+ 'JsonSchema\\Constraints\\SchemaConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/SchemaConstraint.php',
1035
+ 'JsonSchema\\Constraints\\StringConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/StringConstraint.php',
1036
+ 'JsonSchema\\Constraints\\TypeCheck\\LooseTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/LooseTypeCheck.php',
1037
+ 'JsonSchema\\Constraints\\TypeCheck\\StrictTypeCheck' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/StrictTypeCheck.php',
1038
+ 'JsonSchema\\Constraints\\TypeCheck\\TypeCheckInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeCheck/TypeCheckInterface.php',
1039
+ 'JsonSchema\\Constraints\\TypeConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/TypeConstraint.php',
1040
+ 'JsonSchema\\Constraints\\UndefinedConstraint' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Constraints/UndefinedConstraint.php',
1041
+ 'JsonSchema\\Entity\\JsonPointer' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Entity/JsonPointer.php',
1042
+ 'JsonSchema\\Exception\\ExceptionInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ExceptionInterface.php',
1043
+ 'JsonSchema\\Exception\\InvalidArgumentException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidArgumentException.php',
1044
+ 'JsonSchema\\Exception\\InvalidConfigException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidConfigException.php',
1045
+ 'JsonSchema\\Exception\\InvalidSchemaException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaException.php',
1046
+ 'JsonSchema\\Exception\\InvalidSchemaMediaTypeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSchemaMediaTypeException.php',
1047
+ 'JsonSchema\\Exception\\InvalidSourceUriException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/InvalidSourceUriException.php',
1048
+ 'JsonSchema\\Exception\\JsonDecodingException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/JsonDecodingException.php',
1049
+ 'JsonSchema\\Exception\\ResourceNotFoundException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ResourceNotFoundException.php',
1050
+ 'JsonSchema\\Exception\\RuntimeException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/RuntimeException.php',
1051
+ 'JsonSchema\\Exception\\UnresolvableJsonPointerException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UnresolvableJsonPointerException.php',
1052
+ 'JsonSchema\\Exception\\UriResolverException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/UriResolverException.php',
1053
+ 'JsonSchema\\Exception\\ValidationException' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Exception/ValidationException.php',
1054
+ 'JsonSchema\\Iterator\\ObjectIterator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Iterator/ObjectIterator.php',
1055
+ 'JsonSchema\\Rfc3339' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Rfc3339.php',
1056
+ 'JsonSchema\\SchemaStorage' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorage.php',
1057
+ 'JsonSchema\\SchemaStorageInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/SchemaStorageInterface.php',
1058
+ 'JsonSchema\\UriResolverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriResolverInterface.php',
1059
+ 'JsonSchema\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/UriRetrieverInterface.php',
1060
+ 'JsonSchema\\Uri\\Retrievers\\AbstractRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/AbstractRetriever.php',
1061
+ 'JsonSchema\\Uri\\Retrievers\\Curl' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/Curl.php',
1062
+ 'JsonSchema\\Uri\\Retrievers\\FileGetContents' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/FileGetContents.php',
1063
+ 'JsonSchema\\Uri\\Retrievers\\PredefinedArray' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/PredefinedArray.php',
1064
+ 'JsonSchema\\Uri\\Retrievers\\UriRetrieverInterface' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/Retrievers/UriRetrieverInterface.php',
1065
+ 'JsonSchema\\Uri\\UriResolver' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriResolver.php',
1066
+ 'JsonSchema\\Uri\\UriRetriever' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Uri/UriRetriever.php',
1067
+ 'JsonSchema\\Validator' => $vendorDir . '/justinrainbow/json-schema/src/JsonSchema/Validator.php',
1068
+ 'MikeMcLin\\WpPassword\\Contracts\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Contracts/WpPassword.php',
1069
+ 'MikeMcLin\\WpPassword\\Facades\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/Facades/WpPassword.php',
1070
+ 'MikeMcLin\\WpPassword\\WpPassword' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPassword.php',
1071
+ 'MikeMcLin\\WpPassword\\WpPasswordProvider' => $vendorDir . '/mikemclin/laravel-wp-password/src/WpPasswordProvider.php',
1072
+ 'Mustache_Autoloader' => $vendorDir . '/mustache/mustache/src/Mustache/Autoloader.php',
1073
+ 'Mustache_Cache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache.php',
1074
+ 'Mustache_Cache_AbstractCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/AbstractCache.php',
1075
+ 'Mustache_Cache_FilesystemCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/FilesystemCache.php',
1076
+ 'Mustache_Cache_NoopCache' => $vendorDir . '/mustache/mustache/src/Mustache/Cache/NoopCache.php',
1077
+ 'Mustache_Compiler' => $vendorDir . '/mustache/mustache/src/Mustache/Compiler.php',
1078
+ 'Mustache_Context' => $vendorDir . '/mustache/mustache/src/Mustache/Context.php',
1079
+ 'Mustache_Engine' => $vendorDir . '/mustache/mustache/src/Mustache/Engine.php',
1080
+ 'Mustache_Exception' => $vendorDir . '/mustache/mustache/src/Mustache/Exception.php',
1081
+ 'Mustache_Exception_InvalidArgumentException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/InvalidArgumentException.php',
1082
+ 'Mustache_Exception_LogicException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/LogicException.php',
1083
+ 'Mustache_Exception_RuntimeException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/RuntimeException.php',
1084
+ 'Mustache_Exception_SyntaxException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/SyntaxException.php',
1085
+ 'Mustache_Exception_UnknownFilterException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownFilterException.php',
1086
+ 'Mustache_Exception_UnknownHelperException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownHelperException.php',
1087
+ 'Mustache_Exception_UnknownTemplateException' => $vendorDir . '/mustache/mustache/src/Mustache/Exception/UnknownTemplateException.php',
1088
+ 'Mustache_HelperCollection' => $vendorDir . '/mustache/mustache/src/Mustache/HelperCollection.php',
1089
+ 'Mustache_LambdaHelper' => $vendorDir . '/mustache/mustache/src/Mustache/LambdaHelper.php',
1090
+ 'Mustache_Loader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader.php',
1091
+ 'Mustache_Loader_ArrayLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/ArrayLoader.php',
1092
+ 'Mustache_Loader_CascadingLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/CascadingLoader.php',
1093
+ 'Mustache_Loader_FilesystemLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/FilesystemLoader.php',
1094
+ 'Mustache_Loader_InlineLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/InlineLoader.php',
1095
+ 'Mustache_Loader_MutableLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/MutableLoader.php',
1096
+ 'Mustache_Loader_StringLoader' => $vendorDir . '/mustache/mustache/src/Mustache/Loader/StringLoader.php',
1097
+ 'Mustache_Logger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger.php',
1098
+ 'Mustache_Logger_AbstractLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/AbstractLogger.php',
1099
+ 'Mustache_Logger_StreamLogger' => $vendorDir . '/mustache/mustache/src/Mustache/Logger/StreamLogger.php',
1100
+ 'Mustache_Parser' => $vendorDir . '/mustache/mustache/src/Mustache/Parser.php',
1101
+ 'Mustache_Template' => $vendorDir . '/mustache/mustache/src/Mustache/Template.php',
1102
+ 'Mustache_Tokenizer' => $vendorDir . '/mustache/mustache/src/Mustache/Tokenizer.php',
1103
+ 'Mustangostang\\Spyc' => $vendorDir . '/wp-cli/mustangostang-spyc/src/Spyc.php',
1104
+ 'MySQLDump' => $vendorDir . '/dg/mysql-dump/src/MySQLDump.php',
1105
+ 'MySQLImport' => $vendorDir . '/dg/mysql-dump/src/MySQLImport.php',
1106
+ 'Overclokk\\Cookie\\Cookie' => $vendorDir . '/overclokk/cookie/src/Cookie.php',
1107
+ 'Overclokk\\Cookie\\Cookie_Interface' => $vendorDir . '/overclokk/cookie/src/Cookie_Interface.php',
1108
+ 'Oxymel' => $vendorDir . '/nb/oxymel/Oxymel.php',
1109
+ 'OxymelException' => $vendorDir . '/nb/oxymel/Oxymel.php',
1110
+ 'OxymelTest' => $vendorDir . '/nb/oxymel/OxymelTest.php',
1111
+ 'PHPUnit\\Exception' => $vendorDir . '/phpunit/phpunit/src/Exception.php',
1112
+ 'PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert.php',
1113
+ 'PHPUnit\\Framework\\AssertionFailedError' => $vendorDir . '/phpunit/phpunit/src/Framework/AssertionFailedError.php',
1114
+ 'PHPUnit\\Framework\\BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/BaseTestListener.php',
1115
+ 'PHPUnit\\Framework\\CodeCoverageException' => $vendorDir . '/phpunit/phpunit/src/Framework/CodeCoverageException.php',
1116
+ 'PHPUnit\\Framework\\Constraint\\ArrayHasKey' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArrayHasKey.php',
1117
+ 'PHPUnit\\Framework\\Constraint\\ArraySubset' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ArraySubset.php',
1118
+ 'PHPUnit\\Framework\\Constraint\\Attribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Attribute.php',
1119
+ 'PHPUnit\\Framework\\Constraint\\Callback' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Callback.php',
1120
+ 'PHPUnit\\Framework\\Constraint\\ClassHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasAttribute.php',
1121
+ 'PHPUnit\\Framework\\Constraint\\ClassHasStaticAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ClassHasStaticAttribute.php',
1122
+ 'PHPUnit\\Framework\\Constraint\\Composite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Composite.php',
1123
+ 'PHPUnit\\Framework\\Constraint\\Constraint' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Constraint.php',
1124
+ 'PHPUnit\\Framework\\Constraint\\Count' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Count.php',
1125
+ 'PHPUnit\\Framework\\Constraint\\DirectoryExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/DirectoryExists.php',
1126
+ 'PHPUnit\\Framework\\Constraint\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/Exception.php',
1127
+ 'PHPUnit\\Framework\\Constraint\\ExceptionCode' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionCode.php',
1128
+ 'PHPUnit\\Framework\\Constraint\\ExceptionMessage' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessage.php',
1129
+ 'PHPUnit\\Framework\\Constraint\\ExceptionMessageRegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ExceptionMessageRegularExpression.php',
1130
+ 'PHPUnit\\Framework\\Constraint\\FileExists' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/FileExists.php',
1131
+ 'PHPUnit\\Framework\\Constraint\\GreaterThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/GreaterThan.php',
1132
+ 'PHPUnit\\Framework\\Constraint\\IsAnything' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsAnything.php',
1133
+ 'PHPUnit\\Framework\\Constraint\\IsEmpty' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEmpty.php',
1134
+ 'PHPUnit\\Framework\\Constraint\\IsEqual' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsEqual.php',
1135
+ 'PHPUnit\\Framework\\Constraint\\IsFalse' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFalse.php',
1136
+ 'PHPUnit\\Framework\\Constraint\\IsFinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsFinite.php',
1137
+ 'PHPUnit\\Framework\\Constraint\\IsIdentical' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php',
1138
+ 'PHPUnit\\Framework\\Constraint\\IsInfinite' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInfinite.php',
1139
+ 'PHPUnit\\Framework\\Constraint\\IsInstanceOf' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsInstanceOf.php',
1140
+ 'PHPUnit\\Framework\\Constraint\\IsJson' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsJson.php',
1141
+ 'PHPUnit\\Framework\\Constraint\\IsNan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNan.php',
1142
+ 'PHPUnit\\Framework\\Constraint\\IsNull' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsNull.php',
1143
+ 'PHPUnit\\Framework\\Constraint\\IsReadable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsReadable.php',
1144
+ 'PHPUnit\\Framework\\Constraint\\IsTrue' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsTrue.php',
1145
+ 'PHPUnit\\Framework\\Constraint\\IsType' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsType.php',
1146
+ 'PHPUnit\\Framework\\Constraint\\IsWritable' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/IsWritable.php',
1147
+ 'PHPUnit\\Framework\\Constraint\\JsonMatches' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php',
1148
+ 'PHPUnit\\Framework\\Constraint\\JsonMatchesErrorMessageProvider' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/JsonMatchesErrorMessageProvider.php',
1149
+ 'PHPUnit\\Framework\\Constraint\\LessThan' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LessThan.php',
1150
+ 'PHPUnit\\Framework\\Constraint\\LogicalAnd' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalAnd.php',
1151
+ 'PHPUnit\\Framework\\Constraint\\LogicalNot' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalNot.php',
1152
+ 'PHPUnit\\Framework\\Constraint\\LogicalOr' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalOr.php',
1153
+ 'PHPUnit\\Framework\\Constraint\\LogicalXor' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/LogicalXor.php',
1154
+ 'PHPUnit\\Framework\\Constraint\\ObjectHasAttribute' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/ObjectHasAttribute.php',
1155
+ 'PHPUnit\\Framework\\Constraint\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/RegularExpression.php',
1156
+ 'PHPUnit\\Framework\\Constraint\\SameSize' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/SameSize.php',
1157
+ 'PHPUnit\\Framework\\Constraint\\StringContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringContains.php',
1158
+ 'PHPUnit\\Framework\\Constraint\\StringEndsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringEndsWith.php',
1159
+ 'PHPUnit\\Framework\\Constraint\\StringMatchesFormatDescription' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringMatchesFormatDescription.php',
1160
+ 'PHPUnit\\Framework\\Constraint\\StringStartsWith' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/StringStartsWith.php',
1161
+ 'PHPUnit\\Framework\\Constraint\\TraversableContains' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContains.php',
1162
+ 'PHPUnit\\Framework\\Constraint\\TraversableContainsOnly' => $vendorDir . '/phpunit/phpunit/src/Framework/Constraint/TraversableContainsOnly.php',
1163
+ 'PHPUnit\\Framework\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/phpunit/src/Framework/CoveredCodeNotExecutedException.php',
1164
+ 'PHPUnit\\Framework\\DataProviderTestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/DataProviderTestSuite.php',
1165
+ 'PHPUnit\\Framework\\Error\\Deprecated' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Deprecated.php',
1166
+ 'PHPUnit\\Framework\\Error\\Error' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Error.php',
1167
+ 'PHPUnit\\Framework\\Error\\Notice' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Notice.php',
1168
+ 'PHPUnit\\Framework\\Error\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Error/Warning.php',
1169
+ 'PHPUnit\\Framework\\Exception' => $vendorDir . '/phpunit/phpunit/src/Framework/Exception.php',
1170
+ 'PHPUnit\\Framework\\ExceptionWrapper' => $vendorDir . '/phpunit/phpunit/src/Framework/ExceptionWrapper.php',
1171
+ 'PHPUnit\\Framework\\ExpectationFailedException' => $vendorDir . '/phpunit/phpunit/src/Framework/ExpectationFailedException.php',
1172
+ 'PHPUnit\\Framework\\IncompleteTest' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTest.php',
1173
+ 'PHPUnit\\Framework\\IncompleteTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestCase.php',
1174
+ 'PHPUnit\\Framework\\IncompleteTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/IncompleteTestError.php',
1175
+ 'PHPUnit\\Framework\\InvalidCoversTargetException' => $vendorDir . '/phpunit/phpunit/src/Framework/InvalidCoversTargetException.php',
1176
+ 'PHPUnit\\Framework\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/phpunit/src/Framework/MissingCoversAnnotationException.php',
1177
+ 'PHPUnit\\Framework\\OutputError' => $vendorDir . '/phpunit/phpunit/src/Framework/OutputError.php',
1178
+ 'PHPUnit\\Framework\\RiskyTest' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTest.php',
1179
+ 'PHPUnit\\Framework\\RiskyTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/RiskyTestError.php',
1180
+ 'PHPUnit\\Framework\\SelfDescribing' => $vendorDir . '/phpunit/phpunit/src/Framework/SelfDescribing.php',
1181
+ 'PHPUnit\\Framework\\SkippedTest' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTest.php',
1182
+ 'PHPUnit\\Framework\\SkippedTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestCase.php',
1183
+ 'PHPUnit\\Framework\\SkippedTestError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestError.php',
1184
+ 'PHPUnit\\Framework\\SkippedTestSuiteError' => $vendorDir . '/phpunit/phpunit/src/Framework/SkippedTestSuiteError.php',
1185
+ 'PHPUnit\\Framework\\SyntheticError' => $vendorDir . '/phpunit/phpunit/src/Framework/SyntheticError.php',
1186
+ 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/Framework/Test.php',
1187
+ 'PHPUnit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/TestCase.php',
1188
+ 'PHPUnit\\Framework\\TestFailure' => $vendorDir . '/phpunit/phpunit/src/Framework/TestFailure.php',
1189
+ 'PHPUnit\\Framework\\TestListener' => $vendorDir . '/phpunit/phpunit/src/Framework/TestListener.php',
1190
+ 'PHPUnit\\Framework\\TestResult' => $vendorDir . '/phpunit/phpunit/src/Framework/TestResult.php',
1191
+ 'PHPUnit\\Framework\\TestSuite' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuite.php',
1192
+ 'PHPUnit\\Framework\\TestSuiteIterator' => $vendorDir . '/phpunit/phpunit/src/Framework/TestSuiteIterator.php',
1193
+ 'PHPUnit\\Framework\\UnintentionallyCoveredCodeError' => $vendorDir . '/phpunit/phpunit/src/Framework/UnintentionallyCoveredCodeError.php',
1194
+ 'PHPUnit\\Framework\\Warning' => $vendorDir . '/phpunit/phpunit/src/Framework/Warning.php',
1195
+ 'PHPUnit\\Framework\\WarningTestCase' => $vendorDir . '/phpunit/phpunit/src/Framework/WarningTestCase.php',
1196
+ 'PHPUnit\\Runner\\BaseTestRunner' => $vendorDir . '/phpunit/phpunit/src/Runner/BaseTestRunner.php',
1197
+ 'PHPUnit\\Runner\\Exception' => $vendorDir . '/phpunit/phpunit/src/Runner/Exception.php',
1198
+ 'PHPUnit\\Runner\\Filter\\ExcludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php',
1199
+ 'PHPUnit\\Runner\\Filter\\Factory' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/Factory.php',
1200
+ 'PHPUnit\\Runner\\Filter\\GroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php',
1201
+ 'PHPUnit\\Runner\\Filter\\IncludeGroupFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php',
1202
+ 'PHPUnit\\Runner\\Filter\\NameFilterIterator' => $vendorDir . '/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php',
1203
+ 'PHPUnit\\Runner\\PhptTestCase' => $vendorDir . '/phpunit/phpunit/src/Runner/PhptTestCase.php',
1204
+ 'PHPUnit\\Runner\\StandardTestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/StandardTestSuiteLoader.php',
1205
+ 'PHPUnit\\Runner\\TestSuiteLoader' => $vendorDir . '/phpunit/phpunit/src/Runner/TestSuiteLoader.php',
1206
+ 'PHPUnit\\Runner\\Version' => $vendorDir . '/phpunit/phpunit/src/Runner/Version.php',
1207
+ 'PHPUnit\\TextUI\\Command' => $vendorDir . '/phpunit/phpunit/src/TextUI/Command.php',
1208
+ 'PHPUnit\\TextUI\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/TextUI/ResultPrinter.php',
1209
+ 'PHPUnit\\TextUI\\TestRunner' => $vendorDir . '/phpunit/phpunit/src/TextUI/TestRunner.php',
1210
+ 'PHPUnit\\Util\\Blacklist' => $vendorDir . '/phpunit/phpunit/src/Util/Blacklist.php',
1211
+ 'PHPUnit\\Util\\Configuration' => $vendorDir . '/phpunit/phpunit/src/Util/Configuration.php',
1212
+ 'PHPUnit\\Util\\ConfigurationGenerator' => $vendorDir . '/phpunit/phpunit/src/Util/ConfigurationGenerator.php',
1213
+ 'PHPUnit\\Util\\ErrorHandler' => $vendorDir . '/phpunit/phpunit/src/Util/ErrorHandler.php',
1214
+ 'PHPUnit\\Util\\Fileloader' => $vendorDir . '/phpunit/phpunit/src/Util/Fileloader.php',
1215
+ 'PHPUnit\\Util\\Filesystem' => $vendorDir . '/phpunit/phpunit/src/Util/Filesystem.php',
1216
+ 'PHPUnit\\Util\\Filter' => $vendorDir . '/phpunit/phpunit/src/Util/Filter.php',
1217
+ 'PHPUnit\\Util\\Getopt' => $vendorDir . '/phpunit/phpunit/src/Util/Getopt.php',
1218
+ 'PHPUnit\\Util\\GlobalState' => $vendorDir . '/phpunit/phpunit/src/Util/GlobalState.php',
1219
+ 'PHPUnit\\Util\\InvalidArgumentHelper' => $vendorDir . '/phpunit/phpunit/src/Util/InvalidArgumentHelper.php',
1220
+ 'PHPUnit\\Util\\Log\\JUnit' => $vendorDir . '/phpunit/phpunit/src/Util/Log/JUnit.php',
1221
+ 'PHPUnit\\Util\\Log\\TeamCity' => $vendorDir . '/phpunit/phpunit/src/Util/Log/TeamCity.php',
1222
+ 'PHPUnit\\Util\\PHP\\AbstractPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/AbstractPhpProcess.php',
1223
+ 'PHPUnit\\Util\\PHP\\DefaultPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/DefaultPhpProcess.php',
1224
+ 'PHPUnit\\Util\\PHP\\WindowsPhpProcess' => $vendorDir . '/phpunit/phpunit/src/Util/PHP/WindowsPhpProcess.php',
1225
+ 'PHPUnit\\Util\\Printer' => $vendorDir . '/phpunit/phpunit/src/Util/Printer.php',
1226
+ 'PHPUnit\\Util\\RegularExpression' => $vendorDir . '/phpunit/phpunit/src/Util/RegularExpression.php',
1227
+ 'PHPUnit\\Util\\Test' => $vendorDir . '/phpunit/phpunit/src/Util/Test.php',
1228
+ 'PHPUnit\\Util\\TestDox\\HtmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/HtmlResultPrinter.php',
1229
+ 'PHPUnit\\Util\\TestDox\\NamePrettifier' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/NamePrettifier.php',
1230
+ 'PHPUnit\\Util\\TestDox\\ResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/ResultPrinter.php',
1231
+ 'PHPUnit\\Util\\TestDox\\TextResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/TextResultPrinter.php',
1232
+ 'PHPUnit\\Util\\TestDox\\XmlResultPrinter' => $vendorDir . '/phpunit/phpunit/src/Util/TestDox/XmlResultPrinter.php',
1233
+ 'PHPUnit\\Util\\Type' => $vendorDir . '/phpunit/phpunit/src/Util/Type.php',
1234
+ 'PHPUnit\\Util\\Xml' => $vendorDir . '/phpunit/phpunit/src/Util/Xml.php',
1235
+ 'PHPUnit_Framework_MockObject_BadMethodCallException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/BadMethodCallException.php',
1236
+ 'PHPUnit_Framework_MockObject_Builder_Identity' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Identity.php',
1237
+ 'PHPUnit_Framework_MockObject_Builder_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/InvocationMocker.php',
1238
+ 'PHPUnit_Framework_MockObject_Builder_Match' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Match.php',
1239
+ 'PHPUnit_Framework_MockObject_Builder_MethodNameMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/MethodNameMatch.php',
1240
+ 'PHPUnit_Framework_MockObject_Builder_Namespace' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Namespace.php',
1241
+ 'PHPUnit_Framework_MockObject_Builder_ParametersMatch' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/ParametersMatch.php',
1242
+ 'PHPUnit_Framework_MockObject_Builder_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Builder/Stub.php',
1243
+ 'PHPUnit_Framework_MockObject_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/Exception.php',
1244
+ 'PHPUnit_Framework_MockObject_Generator' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Generator.php',
1245
+ 'PHPUnit_Framework_MockObject_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation.php',
1246
+ 'PHPUnit_Framework_MockObject_InvocationMocker' => $vendorDir . '/phpunit/phpunit-mock-objects/src/InvocationMocker.php',
1247
+ 'PHPUnit_Framework_MockObject_Invocation_Object' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/Object.php',
1248
+ 'PHPUnit_Framework_MockObject_Invocation_Static' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invocation/Static.php',
1249
+ 'PHPUnit_Framework_MockObject_Invokable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Invokable.php',
1250
+ 'PHPUnit_Framework_MockObject_Matcher' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher.php',
1251
+ 'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php',
1252
+ 'PHPUnit_Framework_MockObject_Matcher_AnyParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/AnyParameters.php',
1253
+ 'PHPUnit_Framework_MockObject_Matcher_ConsecutiveParameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/ConsecutiveParameters.php',
1254
+ 'PHPUnit_Framework_MockObject_Matcher_Invocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Invocation.php',
1255
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtIndex.php',
1256
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastCount.php',
1257
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedAtLeastOnce' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtLeastOnce.php',
1258
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedAtMostCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedAtMostCount.php',
1259
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedCount' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedCount.php',
1260
+ 'PHPUnit_Framework_MockObject_Matcher_InvokedRecorder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/InvokedRecorder.php',
1261
+ 'PHPUnit_Framework_MockObject_Matcher_MethodName' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/MethodName.php',
1262
+ 'PHPUnit_Framework_MockObject_Matcher_Parameters' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/Parameters.php',
1263
+ 'PHPUnit_Framework_MockObject_Matcher_StatelessInvocation' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Matcher/StatelessInvocation.php',
1264
+ 'PHPUnit_Framework_MockObject_MockBuilder' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockBuilder.php',
1265
+ 'PHPUnit_Framework_MockObject_MockObject' => $vendorDir . '/phpunit/phpunit-mock-objects/src/MockObject.php',
1266
+ 'PHPUnit_Framework_MockObject_RuntimeException' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Exception/RuntimeException.php',
1267
+ 'PHPUnit_Framework_MockObject_Stub' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub.php',
1268
+ 'PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ConsecutiveCalls.php',
1269
+ 'PHPUnit_Framework_MockObject_Stub_Exception' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/Exception.php',
1270
+ 'PHPUnit_Framework_MockObject_Stub_MatcherCollection' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/MatcherCollection.php',
1271
+ 'PHPUnit_Framework_MockObject_Stub_Return' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/Return.php',
1272
+ 'PHPUnit_Framework_MockObject_Stub_ReturnArgument' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnArgument.php',
1273
+ 'PHPUnit_Framework_MockObject_Stub_ReturnCallback' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnCallback.php',
1274
+ 'PHPUnit_Framework_MockObject_Stub_ReturnReference' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnReference.php',
1275
+ 'PHPUnit_Framework_MockObject_Stub_ReturnSelf' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnSelf.php',
1276
+ 'PHPUnit_Framework_MockObject_Stub_ReturnValueMap' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Stub/ReturnValueMap.php',
1277
+ 'PHPUnit_Framework_MockObject_Verifiable' => $vendorDir . '/phpunit/phpunit-mock-objects/src/Verifiable.php',
1278
+ 'PHP_Timer' => $vendorDir . '/phpunit/php-timer/src/Timer.php',
1279
+ 'PHP_Token' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1280
+ 'PHP_TokenWithScope' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1281
+ 'PHP_TokenWithScopeAndVisibility' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1282
+ 'PHP_Token_ABSTRACT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1283
+ 'PHP_Token_AMPERSAND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1284
+ 'PHP_Token_AND_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1285
+ 'PHP_Token_ARRAY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1286
+ 'PHP_Token_ARRAY_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1287
+ 'PHP_Token_AS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1288
+ 'PHP_Token_ASYNC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1289
+ 'PHP_Token_AT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1290
+ 'PHP_Token_AWAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1291
+ 'PHP_Token_BACKTICK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1292
+ 'PHP_Token_BAD_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1293
+ 'PHP_Token_BOOLEAN_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1294
+ 'PHP_Token_BOOLEAN_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1295
+ 'PHP_Token_BOOL_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1296
+ 'PHP_Token_BREAK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1297
+ 'PHP_Token_CALLABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1298
+ 'PHP_Token_CARET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1299
+ 'PHP_Token_CASE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1300
+ 'PHP_Token_CATCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1301
+ 'PHP_Token_CHARACTER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1302
+ 'PHP_Token_CLASS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1303
+ 'PHP_Token_CLASS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1304
+ 'PHP_Token_CLASS_NAME_CONSTANT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1305
+ 'PHP_Token_CLONE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1306
+ 'PHP_Token_CLOSE_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1307
+ 'PHP_Token_CLOSE_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1308
+ 'PHP_Token_CLOSE_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1309
+ 'PHP_Token_CLOSE_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1310
+ 'PHP_Token_COALESCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1311
+ 'PHP_Token_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1312
+ 'PHP_Token_COMMA' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1313
+ 'PHP_Token_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1314
+ 'PHP_Token_COMPILER_HALT_OFFSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1315
+ 'PHP_Token_CONCAT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1316
+ 'PHP_Token_CONST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1317
+ 'PHP_Token_CONSTANT_ENCAPSED_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1318
+ 'PHP_Token_CONTINUE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1319
+ 'PHP_Token_CURLY_OPEN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1320
+ 'PHP_Token_DEC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1321
+ 'PHP_Token_DECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1322
+ 'PHP_Token_DEFAULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1323
+ 'PHP_Token_DIR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1324
+ 'PHP_Token_DIV' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1325
+ 'PHP_Token_DIV_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1326
+ 'PHP_Token_DNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1327
+ 'PHP_Token_DO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1328
+ 'PHP_Token_DOC_COMMENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1329
+ 'PHP_Token_DOLLAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1330
+ 'PHP_Token_DOLLAR_OPEN_CURLY_BRACES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1331
+ 'PHP_Token_DOT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1332
+ 'PHP_Token_DOUBLE_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1333
+ 'PHP_Token_DOUBLE_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1334
+ 'PHP_Token_DOUBLE_COLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1335
+ 'PHP_Token_DOUBLE_QUOTES' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1336
+ 'PHP_Token_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1337
+ 'PHP_Token_ELLIPSIS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1338
+ 'PHP_Token_ELSE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1339
+ 'PHP_Token_ELSEIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1340
+ 'PHP_Token_EMPTY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1341
+ 'PHP_Token_ENCAPSED_AND_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1342
+ 'PHP_Token_ENDDECLARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1343
+ 'PHP_Token_ENDFOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1344
+ 'PHP_Token_ENDFOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1345
+ 'PHP_Token_ENDIF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1346
+ 'PHP_Token_ENDSWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1347
+ 'PHP_Token_ENDWHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1348
+ 'PHP_Token_END_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1349
+ 'PHP_Token_ENUM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1350
+ 'PHP_Token_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1351
+ 'PHP_Token_EQUALS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1352
+ 'PHP_Token_EVAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1353
+ 'PHP_Token_EXCLAMATION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1354
+ 'PHP_Token_EXIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1355
+ 'PHP_Token_EXTENDS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1356
+ 'PHP_Token_FILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1357
+ 'PHP_Token_FINAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1358
+ 'PHP_Token_FINALLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1359
+ 'PHP_Token_FOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1360
+ 'PHP_Token_FOREACH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1361
+ 'PHP_Token_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1362
+ 'PHP_Token_FUNC_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1363
+ 'PHP_Token_GLOBAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1364
+ 'PHP_Token_GOTO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1365
+ 'PHP_Token_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1366
+ 'PHP_Token_HALT_COMPILER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1367
+ 'PHP_Token_IF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1368
+ 'PHP_Token_IMPLEMENTS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1369
+ 'PHP_Token_IN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1370
+ 'PHP_Token_INC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1371
+ 'PHP_Token_INCLUDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1372
+ 'PHP_Token_INCLUDE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1373
+ 'PHP_Token_INLINE_HTML' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1374
+ 'PHP_Token_INSTANCEOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1375
+ 'PHP_Token_INSTEADOF' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1376
+ 'PHP_Token_INTERFACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1377
+ 'PHP_Token_INT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1378
+ 'PHP_Token_ISSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1379
+ 'PHP_Token_IS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1380
+ 'PHP_Token_IS_GREATER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1381
+ 'PHP_Token_IS_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1382
+ 'PHP_Token_IS_NOT_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1383
+ 'PHP_Token_IS_NOT_IDENTICAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1384
+ 'PHP_Token_IS_SMALLER_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1385
+ 'PHP_Token_Includes' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1386
+ 'PHP_Token_JOIN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1387
+ 'PHP_Token_LAMBDA_ARROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1388
+ 'PHP_Token_LAMBDA_CP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1389
+ 'PHP_Token_LAMBDA_OP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1390
+ 'PHP_Token_LINE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1391
+ 'PHP_Token_LIST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1392
+ 'PHP_Token_LNUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1393
+ 'PHP_Token_LOGICAL_AND' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1394
+ 'PHP_Token_LOGICAL_OR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1395
+ 'PHP_Token_LOGICAL_XOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1396
+ 'PHP_Token_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1397
+ 'PHP_Token_METHOD_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1398
+ 'PHP_Token_MINUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1399
+ 'PHP_Token_MINUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1400
+ 'PHP_Token_MOD_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1401
+ 'PHP_Token_MULT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1402
+ 'PHP_Token_MUL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1403
+ 'PHP_Token_NAMESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1404
+ 'PHP_Token_NEW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1405
+ 'PHP_Token_NS_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1406
+ 'PHP_Token_NS_SEPARATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1407
+ 'PHP_Token_NULLSAFE_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1408
+ 'PHP_Token_NUM_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1409
+ 'PHP_Token_OBJECT_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1410
+ 'PHP_Token_OBJECT_OPERATOR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1411
+ 'PHP_Token_ONUMBER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1412
+ 'PHP_Token_OPEN_BRACKET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1413
+ 'PHP_Token_OPEN_CURLY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1414
+ 'PHP_Token_OPEN_SQUARE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1415
+ 'PHP_Token_OPEN_TAG' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1416
+ 'PHP_Token_OPEN_TAG_WITH_ECHO' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1417
+ 'PHP_Token_OR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1418
+ 'PHP_Token_PAAMAYIM_NEKUDOTAYIM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1419
+ 'PHP_Token_PERCENT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1420
+ 'PHP_Token_PIPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1421
+ 'PHP_Token_PLUS' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1422
+ 'PHP_Token_PLUS_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1423
+ 'PHP_Token_POW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1424
+ 'PHP_Token_POW_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1425
+ 'PHP_Token_PRINT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1426
+ 'PHP_Token_PRIVATE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1427
+ 'PHP_Token_PROTECTED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1428
+ 'PHP_Token_PUBLIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1429
+ 'PHP_Token_QUESTION_MARK' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1430
+ 'PHP_Token_REQUIRE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1431
+ 'PHP_Token_REQUIRE_ONCE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1432
+ 'PHP_Token_RETURN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1433
+ 'PHP_Token_SEMICOLON' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1434
+ 'PHP_Token_SHAPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1435
+ 'PHP_Token_SL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1436
+ 'PHP_Token_SL_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1437
+ 'PHP_Token_SPACESHIP' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1438
+ 'PHP_Token_SR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1439
+ 'PHP_Token_SR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1440
+ 'PHP_Token_START_HEREDOC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1441
+ 'PHP_Token_STATIC' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1442
+ 'PHP_Token_STRING' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1443
+ 'PHP_Token_STRING_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1444
+ 'PHP_Token_STRING_VARNAME' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1445
+ 'PHP_Token_SUPER' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1446
+ 'PHP_Token_SWITCH' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1447
+ 'PHP_Token_Stream' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream.php',
1448
+ 'PHP_Token_Stream_CachingFactory' => $vendorDir . '/phpunit/php-token-stream/src/Token/Stream/CachingFactory.php',
1449
+ 'PHP_Token_THROW' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1450
+ 'PHP_Token_TILDE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1451
+ 'PHP_Token_TRAIT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1452
+ 'PHP_Token_TRAIT_C' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1453
+ 'PHP_Token_TRY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1454
+ 'PHP_Token_TYPE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1455
+ 'PHP_Token_TYPELIST_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1456
+ 'PHP_Token_TYPELIST_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1457
+ 'PHP_Token_UNSET' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1458
+ 'PHP_Token_UNSET_CAST' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1459
+ 'PHP_Token_USE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1460
+ 'PHP_Token_USE_FUNCTION' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1461
+ 'PHP_Token_VAR' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1462
+ 'PHP_Token_VARIABLE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1463
+ 'PHP_Token_WHERE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1464
+ 'PHP_Token_WHILE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1465
+ 'PHP_Token_WHITESPACE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1466
+ 'PHP_Token_XHP_ATTRIBUTE' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1467
+ 'PHP_Token_XHP_CATEGORY' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1468
+ 'PHP_Token_XHP_CATEGORY_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1469
+ 'PHP_Token_XHP_CHILDREN' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1470
+ 'PHP_Token_XHP_LABEL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1471
+ 'PHP_Token_XHP_REQUIRED' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1472
+ 'PHP_Token_XHP_TAG_GT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1473
+ 'PHP_Token_XHP_TAG_LT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1474
+ 'PHP_Token_XHP_TEXT' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1475
+ 'PHP_Token_XOR_EQUAL' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1476
+ 'PHP_Token_YIELD' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1477
+ 'PHP_Token_YIELD_FROM' => $vendorDir . '/phpunit/php-token-stream/src/Token.php',
1478
+ 'PharIo\\Manifest\\Application' => $vendorDir . '/phar-io/manifest/src/values/Application.php',
1479
+ 'PharIo\\Manifest\\ApplicationName' => $vendorDir . '/phar-io/manifest/src/values/ApplicationName.php',
1480
+ 'PharIo\\Manifest\\Author' => $vendorDir . '/phar-io/manifest/src/values/Author.php',
1481
+ 'PharIo\\Manifest\\AuthorCollection' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollection.php',
1482
+ 'PharIo\\Manifest\\AuthorCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/AuthorCollectionIterator.php',
1483
+ 'PharIo\\Manifest\\AuthorElement' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElement.php',
1484
+ 'PharIo\\Manifest\\AuthorElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/AuthorElementCollection.php',
1485
+ 'PharIo\\Manifest\\BundledComponent' => $vendorDir . '/phar-io/manifest/src/values/BundledComponent.php',
1486
+ 'PharIo\\Manifest\\BundledComponentCollection' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollection.php',
1487
+ 'PharIo\\Manifest\\BundledComponentCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/BundledComponentCollectionIterator.php',
1488
+ 'PharIo\\Manifest\\BundlesElement' => $vendorDir . '/phar-io/manifest/src/xml/BundlesElement.php',
1489
+ 'PharIo\\Manifest\\ComponentElement' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElement.php',
1490
+ 'PharIo\\Manifest\\ComponentElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ComponentElementCollection.php',
1491
+ 'PharIo\\Manifest\\ContainsElement' => $vendorDir . '/phar-io/manifest/src/xml/ContainsElement.php',
1492
+ 'PharIo\\Manifest\\CopyrightElement' => $vendorDir . '/phar-io/manifest/src/xml/CopyrightElement.php',
1493
+ 'PharIo\\Manifest\\CopyrightInformation' => $vendorDir . '/phar-io/manifest/src/values/CopyrightInformation.php',
1494
+ 'PharIo\\Manifest\\ElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ElementCollection.php',
1495
+ 'PharIo\\Manifest\\Email' => $vendorDir . '/phar-io/manifest/src/values/Email.php',
1496
+ 'PharIo\\Manifest\\Exception' => $vendorDir . '/phar-io/manifest/src/exceptions/Exception.php',
1497
+ 'PharIo\\Manifest\\ExtElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtElement.php',
1498
+ 'PharIo\\Manifest\\ExtElementCollection' => $vendorDir . '/phar-io/manifest/src/xml/ExtElementCollection.php',
1499
+ 'PharIo\\Manifest\\Extension' => $vendorDir . '/phar-io/manifest/src/values/Extension.php',
1500
+ 'PharIo\\Manifest\\ExtensionElement' => $vendorDir . '/phar-io/manifest/src/xml/ExtensionElement.php',
1501
+ 'PharIo\\Manifest\\InvalidApplicationNameException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php',
1502
+ 'PharIo\\Manifest\\InvalidEmailException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidEmailException.php',
1503
+ 'PharIo\\Manifest\\InvalidUrlException' => $vendorDir . '/phar-io/manifest/src/exceptions/InvalidUrlException.php',
1504
+ 'PharIo\\Manifest\\Library' => $vendorDir . '/phar-io/manifest/src/values/Library.php',
1505
+ 'PharIo\\Manifest\\License' => $vendorDir . '/phar-io/manifest/src/values/License.php',
1506
+ 'PharIo\\Manifest\\LicenseElement' => $vendorDir . '/phar-io/manifest/src/xml/LicenseElement.php',
1507
+ 'PharIo\\Manifest\\Manifest' => $vendorDir . '/phar-io/manifest/src/values/Manifest.php',
1508
+ 'PharIo\\Manifest\\ManifestDocument' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocument.php',
1509
+ 'PharIo\\Manifest\\ManifestDocumentException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentException.php',
1510
+ 'PharIo\\Manifest\\ManifestDocumentLoadingException' => $vendorDir . '/phar-io/manifest/src/xml/ManifestDocumentLoadingException.php',
1511
+ 'PharIo\\Manifest\\ManifestDocumentMapper' => $vendorDir . '/phar-io/manifest/src/ManifestDocumentMapper.php',
1512
+ 'PharIo\\Manifest\\ManifestDocumentMapperException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php',
1513
+ 'PharIo\\Manifest\\ManifestElement' => $vendorDir . '/phar-io/manifest/src/xml/ManifestElement.php',
1514
+ 'PharIo\\Manifest\\ManifestElementException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestElementException.php',
1515
+ 'PharIo\\Manifest\\ManifestLoader' => $vendorDir . '/phar-io/manifest/src/ManifestLoader.php',
1516
+ 'PharIo\\Manifest\\ManifestLoaderException' => $vendorDir . '/phar-io/manifest/src/exceptions/ManifestLoaderException.php',
1517
+ 'PharIo\\Manifest\\ManifestSerializer' => $vendorDir . '/phar-io/manifest/src/ManifestSerializer.php',
1518
+ 'PharIo\\Manifest\\PhpElement' => $vendorDir . '/phar-io/manifest/src/xml/PhpElement.php',
1519
+ 'PharIo\\Manifest\\PhpExtensionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpExtensionRequirement.php',
1520
+ 'PharIo\\Manifest\\PhpVersionRequirement' => $vendorDir . '/phar-io/manifest/src/values/PhpVersionRequirement.php',
1521
+ 'PharIo\\Manifest\\Requirement' => $vendorDir . '/phar-io/manifest/src/values/Requirement.php',
1522
+ 'PharIo\\Manifest\\RequirementCollection' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollection.php',
1523
+ 'PharIo\\Manifest\\RequirementCollectionIterator' => $vendorDir . '/phar-io/manifest/src/values/RequirementCollectionIterator.php',
1524
+ 'PharIo\\Manifest\\RequiresElement' => $vendorDir . '/phar-io/manifest/src/xml/RequiresElement.php',
1525
+ 'PharIo\\Manifest\\Type' => $vendorDir . '/phar-io/manifest/src/values/Type.php',
1526
+ 'PharIo\\Manifest\\Url' => $vendorDir . '/phar-io/manifest/src/values/Url.php',
1527
+ 'PharIo\\Version\\AbstractVersionConstraint' => $vendorDir . '/phar-io/version/src/AbstractVersionConstraint.php',
1528
+ 'PharIo\\Version\\AndVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/AndVersionConstraintGroup.php',
1529
+ 'PharIo\\Version\\AnyVersionConstraint' => $vendorDir . '/phar-io/version/src/AnyVersionConstraint.php',
1530
+ 'PharIo\\Version\\ExactVersionConstraint' => $vendorDir . '/phar-io/version/src/ExactVersionConstraint.php',
1531
+ 'PharIo\\Version\\Exception' => $vendorDir . '/phar-io/version/src/Exception.php',
1532
+ 'PharIo\\Version\\GreaterThanOrEqualToVersionConstraint' => $vendorDir . '/phar-io/version/src/GreaterThanOrEqualToVersionConstraint.php',
1533
+ 'PharIo\\Version\\InvalidVersionException' => $vendorDir . '/phar-io/version/src/InvalidVersionException.php',
1534
+ 'PharIo\\Version\\OrVersionConstraintGroup' => $vendorDir . '/phar-io/version/src/OrVersionConstraintGroup.php',
1535
+ 'PharIo\\Version\\PreReleaseSuffix' => $vendorDir . '/phar-io/version/src/PreReleaseSuffix.php',
1536
+ 'PharIo\\Version\\SpecificMajorAndMinorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorAndMinorVersionConstraint.php',
1537
+ 'PharIo\\Version\\SpecificMajorVersionConstraint' => $vendorDir . '/phar-io/version/src/SpecificMajorVersionConstraint.php',
1538
+ 'PharIo\\Version\\UnsupportedVersionConstraintException' => $vendorDir . '/phar-io/version/src/UnsupportedVersionConstraintException.php',
1539
+ 'PharIo\\Version\\Version' => $vendorDir . '/phar-io/version/src/Version.php',
1540
+ 'PharIo\\Version\\VersionConstraint' => $vendorDir . '/phar-io/version/src/VersionConstraint.php',
1541
+ 'PharIo\\Version\\VersionConstraintParser' => $vendorDir . '/phar-io/version/src/VersionConstraintParser.php',
1542
+ 'PharIo\\Version\\VersionConstraintValue' => $vendorDir . '/phar-io/version/src/VersionConstraintValue.php',
1543
+ 'PharIo\\Version\\VersionNumber' => $vendorDir . '/phar-io/version/src/VersionNumber.php',
1544
+ 'Prophecy\\Argument' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument.php',
1545
+ 'Prophecy\\Argument\\ArgumentsWildcard' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/ArgumentsWildcard.php',
1546
+ 'Prophecy\\Argument\\Token\\AnyValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php',
1547
+ 'Prophecy\\Argument\\Token\\AnyValuesToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php',
1548
+ 'Prophecy\\Argument\\Token\\ApproximateValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ApproximateValueToken.php',
1549
+ 'Prophecy\\Argument\\Token\\ArrayCountToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php',
1550
+ 'Prophecy\\Argument\\Token\\ArrayEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php',
1551
+ 'Prophecy\\Argument\\Token\\ArrayEveryEntryToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php',
1552
+ 'Prophecy\\Argument\\Token\\CallbackToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php',
1553
+ 'Prophecy\\Argument\\Token\\ExactValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php',
1554
+ 'Prophecy\\Argument\\Token\\IdenticalValueToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php',
1555
+ 'Prophecy\\Argument\\Token\\LogicalAndToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php',
1556
+ 'Prophecy\\Argument\\Token\\LogicalNotToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php',
1557
+ 'Prophecy\\Argument\\Token\\ObjectStateToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php',
1558
+ 'Prophecy\\Argument\\Token\\StringContainsToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php',
1559
+ 'Prophecy\\Argument\\Token\\TokenInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TokenInterface.php',
1560
+ 'Prophecy\\Argument\\Token\\TypeToken' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php',
1561
+ 'Prophecy\\Call\\Call' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/Call.php',
1562
+ 'Prophecy\\Call\\CallCenter' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Call/CallCenter.php',
1563
+ 'Prophecy\\Comparator\\ClosureComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ClosureComparator.php',
1564
+ 'Prophecy\\Comparator\\Factory' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/Factory.php',
1565
+ 'Prophecy\\Comparator\\ProphecyComparator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Comparator/ProphecyComparator.php',
1566
+ 'Prophecy\\Doubler\\CachedDoubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/CachedDoubler.php',
1567
+ 'Prophecy\\Doubler\\ClassPatch\\ClassPatchInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php',
1568
+ 'Prophecy\\Doubler\\ClassPatch\\DisableConstructorPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/DisableConstructorPatch.php',
1569
+ 'Prophecy\\Doubler\\ClassPatch\\HhvmExceptionPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/HhvmExceptionPatch.php',
1570
+ 'Prophecy\\Doubler\\ClassPatch\\KeywordPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/KeywordPatch.php',
1571
+ 'Prophecy\\Doubler\\ClassPatch\\MagicCallPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/MagicCallPatch.php',
1572
+ 'Prophecy\\Doubler\\ClassPatch\\ProphecySubjectPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ProphecySubjectPatch.php',
1573
+ 'Prophecy\\Doubler\\ClassPatch\\ReflectionClassNewInstancePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ReflectionClassNewInstancePatch.php',
1574
+ 'Prophecy\\Doubler\\ClassPatch\\SplFileInfoPatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/SplFileInfoPatch.php',
1575
+ 'Prophecy\\Doubler\\ClassPatch\\TraversablePatch' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/TraversablePatch.php',
1576
+ 'Prophecy\\Doubler\\DoubleInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/DoubleInterface.php',
1577
+ 'Prophecy\\Doubler\\Doubler' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Doubler.php',
1578
+ 'Prophecy\\Doubler\\Generator\\ClassCodeGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCodeGenerator.php',
1579
+ 'Prophecy\\Doubler\\Generator\\ClassCreator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassCreator.php',
1580
+ 'Prophecy\\Doubler\\Generator\\ClassMirror' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ClassMirror.php',
1581
+ 'Prophecy\\Doubler\\Generator\\Node\\ArgumentNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ArgumentNode.php',
1582
+ 'Prophecy\\Doubler\\Generator\\Node\\ClassNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/ClassNode.php',
1583
+ 'Prophecy\\Doubler\\Generator\\Node\\MethodNode' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/Node/MethodNode.php',
1584
+ 'Prophecy\\Doubler\\Generator\\ReflectionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/Generator/ReflectionInterface.php',
1585
+ 'Prophecy\\Doubler\\LazyDouble' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/LazyDouble.php',
1586
+ 'Prophecy\\Doubler\\NameGenerator' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Doubler/NameGenerator.php',
1587
+ 'Prophecy\\Exception\\Call\\UnexpectedCallException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Call/UnexpectedCallException.php',
1588
+ 'Prophecy\\Exception\\Doubler\\ClassCreatorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassCreatorException.php',
1589
+ 'Prophecy\\Exception\\Doubler\\ClassMirrorException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassMirrorException.php',
1590
+ 'Prophecy\\Exception\\Doubler\\ClassNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ClassNotFoundException.php',
1591
+ 'Prophecy\\Exception\\Doubler\\DoubleException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoubleException.php',
1592
+ 'Prophecy\\Exception\\Doubler\\DoublerException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/DoublerException.php',
1593
+ 'Prophecy\\Exception\\Doubler\\InterfaceNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/InterfaceNotFoundException.php',
1594
+ 'Prophecy\\Exception\\Doubler\\MethodNotExtendableException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotExtendableException.php',
1595
+ 'Prophecy\\Exception\\Doubler\\MethodNotFoundException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/MethodNotFoundException.php',
1596
+ 'Prophecy\\Exception\\Doubler\\ReturnByReferenceException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Doubler/ReturnByReferenceException.php',
1597
+ 'Prophecy\\Exception\\Exception' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Exception.php',
1598
+ 'Prophecy\\Exception\\InvalidArgumentException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/InvalidArgumentException.php',
1599
+ 'Prophecy\\Exception\\Prediction\\AggregateException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/AggregateException.php',
1600
+ 'Prophecy\\Exception\\Prediction\\FailedPredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/FailedPredictionException.php',
1601
+ 'Prophecy\\Exception\\Prediction\\NoCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/NoCallsException.php',
1602
+ 'Prophecy\\Exception\\Prediction\\PredictionException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/PredictionException.php',
1603
+ 'Prophecy\\Exception\\Prediction\\UnexpectedCallsCountException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsCountException.php',
1604
+ 'Prophecy\\Exception\\Prediction\\UnexpectedCallsException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prediction/UnexpectedCallsException.php',
1605
+ 'Prophecy\\Exception\\Prophecy\\MethodProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/MethodProphecyException.php',
1606
+ 'Prophecy\\Exception\\Prophecy\\ObjectProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ObjectProphecyException.php',
1607
+ 'Prophecy\\Exception\\Prophecy\\ProphecyException' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Exception/Prophecy/ProphecyException.php',
1608
+ 'Prophecy\\PhpDocumentor\\ClassAndInterfaceTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassAndInterfaceTagRetriever.php',
1609
+ 'Prophecy\\PhpDocumentor\\ClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/ClassTagRetriever.php',
1610
+ 'Prophecy\\PhpDocumentor\\LegacyClassTagRetriever' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/LegacyClassTagRetriever.php',
1611
+ 'Prophecy\\PhpDocumentor\\MethodTagRetrieverInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/PhpDocumentor/MethodTagRetrieverInterface.php',
1612
+ 'Prophecy\\Prediction\\CallPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallPrediction.php',
1613
+ 'Prophecy\\Prediction\\CallTimesPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallTimesPrediction.php',
1614
+ 'Prophecy\\Prediction\\CallbackPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/CallbackPrediction.php',
1615
+ 'Prophecy\\Prediction\\NoCallsPrediction' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/NoCallsPrediction.php',
1616
+ 'Prophecy\\Prediction\\PredictionInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prediction/PredictionInterface.php',
1617
+ 'Prophecy\\Promise\\CallbackPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/CallbackPromise.php',
1618
+ 'Prophecy\\Promise\\PromiseInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/PromiseInterface.php',
1619
+ 'Prophecy\\Promise\\ReturnArgumentPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnArgumentPromise.php',
1620
+ 'Prophecy\\Promise\\ReturnPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ReturnPromise.php',
1621
+ 'Prophecy\\Promise\\ThrowPromise' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Promise/ThrowPromise.php',
1622
+ 'Prophecy\\Prophecy\\MethodProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/MethodProphecy.php',
1623
+ 'Prophecy\\Prophecy\\ObjectProphecy' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ObjectProphecy.php',
1624
+ 'Prophecy\\Prophecy\\ProphecyInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecyInterface.php',
1625
+ 'Prophecy\\Prophecy\\ProphecySubjectInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php',
1626
+ 'Prophecy\\Prophecy\\Revealer' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/Revealer.php',
1627
+ 'Prophecy\\Prophecy\\RevealerInterface' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophecy/RevealerInterface.php',
1628
+ 'Prophecy\\Prophet' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Prophet.php',
1629
+ 'Prophecy\\Util\\ExportUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/ExportUtil.php',
1630
+ 'Prophecy\\Util\\StringUtil' => $vendorDir . '/phpspec/prophecy/src/Prophecy/Util/StringUtil.php',
1631
+ 'Psr\\Container\\ContainerExceptionInterface' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php',
1632
+ 'Psr\\Container\\ContainerInterface' => $vendorDir . '/psr/container/src/ContainerInterface.php',
1633
+ 'Psr\\Container\\NotFoundExceptionInterface' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php',
1634
+ 'Psr\\Http\\Message\\MessageInterface' => $vendorDir . '/psr/http-message/src/MessageInterface.php',
1635
+ 'Psr\\Http\\Message\\RequestInterface' => $vendorDir . '/psr/http-message/src/RequestInterface.php',
1636
+ 'Psr\\Http\\Message\\ResponseInterface' => $vendorDir . '/psr/http-message/src/ResponseInterface.php',
1637
+ 'Psr\\Http\\Message\\ServerRequestInterface' => $vendorDir . '/psr/http-message/src/ServerRequestInterface.php',
1638
+ 'Psr\\Http\\Message\\StreamInterface' => $vendorDir . '/psr/http-message/src/StreamInterface.php',
1639
+ 'Psr\\Http\\Message\\UploadedFileInterface' => $vendorDir . '/psr/http-message/src/UploadedFileInterface.php',
1640
+ 'Psr\\Http\\Message\\UriInterface' => $vendorDir . '/psr/http-message/src/UriInterface.php',
1641
+ 'Psr\\Log\\AbstractLogger' => $vendorDir . '/psr/log/Psr/Log/AbstractLogger.php',
1642
+ 'Psr\\Log\\InvalidArgumentException' => $vendorDir . '/psr/log/Psr/Log/InvalidArgumentException.php',
1643
+ 'Psr\\Log\\LogLevel' => $vendorDir . '/psr/log/Psr/Log/LogLevel.php',
1644
+ 'Psr\\Log\\LoggerAwareInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareInterface.php',
1645
+ 'Psr\\Log\\LoggerAwareTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerAwareTrait.php',
1646
+ 'Psr\\Log\\LoggerInterface' => $vendorDir . '/psr/log/Psr/Log/LoggerInterface.php',
1647
+ 'Psr\\Log\\LoggerTrait' => $vendorDir . '/psr/log/Psr/Log/LoggerTrait.php',
1648
+ 'Psr\\Log\\NullLogger' => $vendorDir . '/psr/log/Psr/Log/NullLogger.php',
1649
+ 'Psr\\Log\\Test\\DummyTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
1650
+ 'Psr\\Log\\Test\\LoggerInterfaceTest' => $vendorDir . '/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',
1651
+ 'Requests' => $vendorDir . '/rmccue/requests/library/Requests.php',
1652
+ 'Requests_Auth' => $vendorDir . '/rmccue/requests/library/Requests/Auth.php',
1653
+ 'Requests_Auth_Basic' => $vendorDir . '/rmccue/requests/library/Requests/Auth/Basic.php',
1654
+ 'Requests_Cookie' => $vendorDir . '/rmccue/requests/library/Requests/Cookie.php',
1655
+ 'Requests_Cookie_Jar' => $vendorDir . '/rmccue/requests/library/Requests/Cookie/Jar.php',
1656
+ 'Requests_Exception' => $vendorDir . '/rmccue/requests/library/Requests/Exception.php',
1657
+ 'Requests_Exception_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP.php',
1658
+ 'Requests_Exception_HTTP_304' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/304.php',
1659
+ 'Requests_Exception_HTTP_305' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/305.php',
1660
+ 'Requests_Exception_HTTP_306' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/306.php',
1661
+ 'Requests_Exception_HTTP_400' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/400.php',
1662
+ 'Requests_Exception_HTTP_401' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/401.php',
1663
+ 'Requests_Exception_HTTP_402' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/402.php',
1664
+ 'Requests_Exception_HTTP_403' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/403.php',
1665
+ 'Requests_Exception_HTTP_404' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/404.php',
1666
+ 'Requests_Exception_HTTP_405' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/405.php',
1667
+ 'Requests_Exception_HTTP_406' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/406.php',
1668
+ 'Requests_Exception_HTTP_407' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/407.php',
1669
+ 'Requests_Exception_HTTP_408' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/408.php',
1670
+ 'Requests_Exception_HTTP_409' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/409.php',
1671
+ 'Requests_Exception_HTTP_410' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/410.php',
1672
+ 'Requests_Exception_HTTP_411' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/411.php',
1673
+ 'Requests_Exception_HTTP_412' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/412.php',
1674
+ 'Requests_Exception_HTTP_413' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/413.php',
1675
+ 'Requests_Exception_HTTP_414' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/414.php',
1676
+ 'Requests_Exception_HTTP_415' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/415.php',
1677
+ 'Requests_Exception_HTTP_416' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/416.php',
1678
+ 'Requests_Exception_HTTP_417' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/417.php',
1679
+ 'Requests_Exception_HTTP_418' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/418.php',
1680
+ 'Requests_Exception_HTTP_428' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/428.php',
1681
+ 'Requests_Exception_HTTP_429' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/429.php',
1682
+ 'Requests_Exception_HTTP_431' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/431.php',
1683
+ 'Requests_Exception_HTTP_500' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/500.php',
1684
+ 'Requests_Exception_HTTP_501' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/501.php',
1685
+ 'Requests_Exception_HTTP_502' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/502.php',
1686
+ 'Requests_Exception_HTTP_503' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/503.php',
1687
+ 'Requests_Exception_HTTP_504' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/504.php',
1688
+ 'Requests_Exception_HTTP_505' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/505.php',
1689
+ 'Requests_Exception_HTTP_511' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/511.php',
1690
+ 'Requests_Exception_HTTP_Unknown' => $vendorDir . '/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php',
1691
+ 'Requests_Exception_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport.php',
1692
+ 'Requests_Exception_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Exception/Transport/cURL.php',
1693
+ 'Requests_Hooker' => $vendorDir . '/rmccue/requests/library/Requests/Hooker.php',
1694
+ 'Requests_Hooks' => $vendorDir . '/rmccue/requests/library/Requests/Hooks.php',
1695
+ 'Requests_IDNAEncoder' => $vendorDir . '/rmccue/requests/library/Requests/IDNAEncoder.php',
1696
+ 'Requests_IPv6' => $vendorDir . '/rmccue/requests/library/Requests/IPv6.php',
1697
+ 'Requests_IRI' => $vendorDir . '/rmccue/requests/library/Requests/IRI.php',
1698
+ 'Requests_Proxy' => $vendorDir . '/rmccue/requests/library/Requests/Proxy.php',
1699
+ 'Requests_Proxy_HTTP' => $vendorDir . '/rmccue/requests/library/Requests/Proxy/HTTP.php',
1700
+ 'Requests_Response' => $vendorDir . '/rmccue/requests/library/Requests/Response.php',
1701
+ 'Requests_Response_Headers' => $vendorDir . '/rmccue/requests/library/Requests/Response/Headers.php',
1702
+ 'Requests_SSL' => $vendorDir . '/rmccue/requests/library/Requests/SSL.php',
1703
+ 'Requests_Session' => $vendorDir . '/rmccue/requests/library/Requests/Session.php',
1704
+ 'Requests_Transport' => $vendorDir . '/rmccue/requests/library/Requests/Transport.php',
1705
+ 'Requests_Transport_cURL' => $vendorDir . '/rmccue/requests/library/Requests/Transport/cURL.php',
1706
+ 'Requests_Transport_fsockopen' => $vendorDir . '/rmccue/requests/library/Requests/Transport/fsockopen.php',
1707
+ 'Requests_Utility_CaseInsensitiveDictionary' => $vendorDir . '/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php',
1708
+ 'Requests_Utility_FilteredIterator' => $vendorDir . '/rmccue/requests/library/Requests/Utility/FilteredIterator.php',
1709
+ 'SebastianBergmann\\CodeCoverage\\CodeCoverage' => $vendorDir . '/phpunit/php-code-coverage/src/CodeCoverage.php',
1710
+ 'SebastianBergmann\\CodeCoverage\\CoveredCodeNotExecutedException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/CoveredCodeNotExecutedException.php',
1711
+ 'SebastianBergmann\\CodeCoverage\\Driver\\Driver' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Driver.php',
1712
+ 'SebastianBergmann\\CodeCoverage\\Driver\\HHVM' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/HHVM.php',
1713
+ 'SebastianBergmann\\CodeCoverage\\Driver\\PHPDBG' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/PHPDBG.php',
1714
+ 'SebastianBergmann\\CodeCoverage\\Driver\\Xdebug' => $vendorDir . '/phpunit/php-code-coverage/src/Driver/Xdebug.php',
1715
+ 'SebastianBergmann\\CodeCoverage\\Exception' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/Exception.php',
1716
+ 'SebastianBergmann\\CodeCoverage\\Filter' => $vendorDir . '/phpunit/php-code-coverage/src/Filter.php',
1717
+ 'SebastianBergmann\\CodeCoverage\\InvalidArgumentException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php',
1718
+ 'SebastianBergmann\\CodeCoverage\\MissingCoversAnnotationException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/MissingCoversAnnotationException.php',
1719
+ 'SebastianBergmann\\CodeCoverage\\Node\\AbstractNode' => $vendorDir . '/phpunit/php-code-coverage/src/Node/AbstractNode.php',
1720
+ 'SebastianBergmann\\CodeCoverage\\Node\\Builder' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Builder.php',
1721
+ 'SebastianBergmann\\CodeCoverage\\Node\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Directory.php',
1722
+ 'SebastianBergmann\\CodeCoverage\\Node\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Node/File.php',
1723
+ 'SebastianBergmann\\CodeCoverage\\Node\\Iterator' => $vendorDir . '/phpunit/php-code-coverage/src/Node/Iterator.php',
1724
+ 'SebastianBergmann\\CodeCoverage\\Report\\Clover' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Clover.php',
1725
+ 'SebastianBergmann\\CodeCoverage\\Report\\Crap4j' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Crap4j.php',
1726
+ 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Dashboard' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php',
1727
+ 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php',
1728
+ 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Facade.php',
1729
+ 'SebastianBergmann\\CodeCoverage\\Report\\Html\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php',
1730
+ 'SebastianBergmann\\CodeCoverage\\Report\\Html\\Renderer' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Html/Renderer.php',
1731
+ 'SebastianBergmann\\CodeCoverage\\Report\\PHP' => $vendorDir . '/phpunit/php-code-coverage/src/Report/PHP.php',
1732
+ 'SebastianBergmann\\CodeCoverage\\Report\\Text' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Text.php',
1733
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\BuildInformation' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php',
1734
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Coverage' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Coverage.php',
1735
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Directory' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Directory.php',
1736
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Facade' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Facade.php',
1737
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\File' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/File.php',
1738
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Method' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Method.php',
1739
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Node' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Node.php',
1740
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Project' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Project.php',
1741
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Report' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Report.php',
1742
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Source' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Source.php',
1743
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Tests' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Tests.php',
1744
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Totals' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Totals.php',
1745
+ 'SebastianBergmann\\CodeCoverage\\Report\\Xml\\Unit' => $vendorDir . '/phpunit/php-code-coverage/src/Report/Xml/Unit.php',
1746
+ 'SebastianBergmann\\CodeCoverage\\RuntimeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/RuntimeException.php',
1747
+ 'SebastianBergmann\\CodeCoverage\\UnintentionallyCoveredCodeException' => $vendorDir . '/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php',
1748
+ 'SebastianBergmann\\CodeCoverage\\Util' => $vendorDir . '/phpunit/php-code-coverage/src/Util.php',
1749
+ 'SebastianBergmann\\CodeCoverage\\Version' => $vendorDir . '/phpunit/php-code-coverage/src/Version.php',
1750
+ 'SebastianBergmann\\CodeUnitReverseLookup\\Wizard' => $vendorDir . '/sebastian/code-unit-reverse-lookup/src/Wizard.php',
1751
+ 'SebastianBergmann\\Comparator\\ArrayComparator' => $vendorDir . '/sebastian/comparator/src/ArrayComparator.php',
1752
+ 'SebastianBergmann\\Comparator\\Comparator' => $vendorDir . '/sebastian/comparator/src/Comparator.php',
1753
+ 'SebastianBergmann\\Comparator\\ComparisonFailure' => $vendorDir . '/sebastian/comparator/src/ComparisonFailure.php',
1754
+ 'SebastianBergmann\\Comparator\\DOMNodeComparator' => $vendorDir . '/sebastian/comparator/src/DOMNodeComparator.php',
1755
+ 'SebastianBergmann\\Comparator\\DateTimeComparator' => $vendorDir . '/sebastian/comparator/src/DateTimeComparator.php',
1756
+ 'SebastianBergmann\\Comparator\\DoubleComparator' => $vendorDir . '/sebastian/comparator/src/DoubleComparator.php',
1757
+ 'SebastianBergmann\\Comparator\\ExceptionComparator' => $vendorDir . '/sebastian/comparator/src/ExceptionComparator.php',
1758
+ 'SebastianBergmann\\Comparator\\Factory' => $vendorDir . '/sebastian/comparator/src/Factory.php',
1759
+ 'SebastianBergmann\\Comparator\\MockObjectComparator' => $vendorDir . '/sebastian/comparator/src/MockObjectComparator.php',
1760
+ 'SebastianBergmann\\Comparator\\NumericComparator' => $vendorDir . '/sebastian/comparator/src/NumericComparator.php',
1761
+ 'SebastianBergmann\\Comparator\\ObjectComparator' => $vendorDir . '/sebastian/comparator/src/ObjectComparator.php',
1762
+ 'SebastianBergmann\\Comparator\\ResourceComparator' => $vendorDir . '/sebastian/comparator/src/ResourceComparator.php',
1763
+ 'SebastianBergmann\\Comparator\\ScalarComparator' => $vendorDir . '/sebastian/comparator/src/ScalarComparator.php',
1764
+ 'SebastianBergmann\\Comparator\\SplObjectStorageComparator' => $vendorDir . '/sebastian/comparator/src/SplObjectStorageComparator.php',
1765
+ 'SebastianBergmann\\Comparator\\TypeComparator' => $vendorDir . '/sebastian/comparator/src/TypeComparator.php',
1766
+ 'SebastianBergmann\\Diff\\Chunk' => $vendorDir . '/sebastian/diff/src/Chunk.php',
1767
+ 'SebastianBergmann\\Diff\\Diff' => $vendorDir . '/sebastian/diff/src/Diff.php',
1768
+ 'SebastianBergmann\\Diff\\Differ' => $vendorDir . '/sebastian/diff/src/Differ.php',
1769
+ 'SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequence' => $vendorDir . '/sebastian/diff/src/LCS/LongestCommonSubsequence.php',
1770
+ 'SebastianBergmann\\Diff\\LCS\\MemoryEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php',
1771
+ 'SebastianBergmann\\Diff\\LCS\\TimeEfficientImplementation' => $vendorDir . '/sebastian/diff/src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php',
1772
+ 'SebastianBergmann\\Diff\\Line' => $vendorDir . '/sebastian/diff/src/Line.php',
1773
+ 'SebastianBergmann\\Diff\\Parser' => $vendorDir . '/sebastian/diff/src/Parser.php',
1774
+ 'SebastianBergmann\\Environment\\Console' => $vendorDir . '/sebastian/environment/src/Console.php',
1775
+ 'SebastianBergmann\\Environment\\Runtime' => $vendorDir . '/sebastian/environment/src/Runtime.php',
1776
+ 'SebastianBergmann\\Exporter\\Exporter' => $vendorDir . '/sebastian/exporter/src/Exporter.php',
1777
+ 'SebastianBergmann\\GlobalState\\Blacklist' => $vendorDir . '/sebastian/global-state/src/Blacklist.php',
1778
+ 'SebastianBergmann\\GlobalState\\CodeExporter' => $vendorDir . '/sebastian/global-state/src/CodeExporter.php',
1779
+ 'SebastianBergmann\\GlobalState\\Exception' => $vendorDir . '/sebastian/global-state/src/exceptions/Exception.php',
1780
+ 'SebastianBergmann\\GlobalState\\Restorer' => $vendorDir . '/sebastian/global-state/src/Restorer.php',
1781
+ 'SebastianBergmann\\GlobalState\\RuntimeException' => $vendorDir . '/sebastian/global-state/src/exceptions/RuntimeException.php',
1782
+ 'SebastianBergmann\\GlobalState\\Snapshot' => $vendorDir . '/sebastian/global-state/src/Snapshot.php',
1783
+ 'SebastianBergmann\\ObjectEnumerator\\Enumerator' => $vendorDir . '/sebastian/object-enumerator/src/Enumerator.php',
1784
+ 'SebastianBergmann\\ObjectEnumerator\\Exception' => $vendorDir . '/sebastian/object-enumerator/src/Exception.php',
1785
+ 'SebastianBergmann\\ObjectEnumerator\\InvalidArgumentException' => $vendorDir . '/sebastian/object-enumerator/src/InvalidArgumentException.php',
1786
+ 'SebastianBergmann\\ObjectReflector\\Exception' => $vendorDir . '/sebastian/object-reflector/src/Exception.php',
1787
+ 'SebastianBergmann\\ObjectReflector\\InvalidArgumentException' => $vendorDir . '/sebastian/object-reflector/src/InvalidArgumentException.php',
1788
+ 'SebastianBergmann\\ObjectReflector\\ObjectReflector' => $vendorDir . '/sebastian/object-reflector/src/ObjectReflector.php',
1789
+ 'SebastianBergmann\\RecursionContext\\Context' => $vendorDir . '/sebastian/recursion-context/src/Context.php',
1790
+ 'SebastianBergmann\\RecursionContext\\Exception' => $vendorDir . '/sebastian/recursion-context/src/Exception.php',
1791
+ 'SebastianBergmann\\RecursionContext\\InvalidArgumentException' => $vendorDir . '/sebastian/recursion-context/src/InvalidArgumentException.php',
1792
+ 'SebastianBergmann\\ResourceOperations\\ResourceOperations' => $vendorDir . '/sebastian/resource-operations/src/ResourceOperations.php',
1793
+ 'SebastianBergmann\\Version' => $vendorDir . '/sebastian/version/src/Version.php',
1794
+ 'Seld\\CliPrompt\\CliPrompt' => $vendorDir . '/seld/cli-prompt/src/CliPrompt.php',
1795
+ 'Seld\\JsonLint\\DuplicateKeyException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/DuplicateKeyException.php',
1796
+ 'Seld\\JsonLint\\JsonParser' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/JsonParser.php',
1797
+ 'Seld\\JsonLint\\Lexer' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Lexer.php',
1798
+ 'Seld\\JsonLint\\ParsingException' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/ParsingException.php',
1799
+ 'Seld\\JsonLint\\Undefined' => $vendorDir . '/seld/jsonlint/src/Seld/JsonLint/Undefined.php',
1800
+ 'Seld\\PharUtils\\Timestamps' => $vendorDir . '/seld/phar-utils/src/Timestamps.php',
1801
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\Completion' => $vendorDir . '/stecman/symfony-console-completion/src/Completion.php',
1802
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\CompletionCommand' => $vendorDir . '/stecman/symfony-console-completion/src/CompletionCommand.php',
1803
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\CompletionContext' => $vendorDir . '/stecman/symfony-console-completion/src/CompletionContext.php',
1804
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\CompletionHandler' => $vendorDir . '/stecman/symfony-console-completion/src/CompletionHandler.php',
1805
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\Completion\\CompletionAwareInterface' => $vendorDir . '/stecman/symfony-console-completion/src/Completion/CompletionAwareInterface.php',
1806
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\Completion\\CompletionInterface' => $vendorDir . '/stecman/symfony-console-completion/src/Completion/CompletionInterface.php',
1807
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\Completion\\ShellPathCompletion' => $vendorDir . '/stecman/symfony-console-completion/src/Completion/ShellPathCompletion.php',
1808
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\EnvironmentCompletionContext' => $vendorDir . '/stecman/symfony-console-completion/src/EnvironmentCompletionContext.php',
1809
+ 'Stecman\\Component\\Symfony\\Console\\BashCompletion\\HookFactory' => $vendorDir . '/stecman/symfony-console-completion/src/HookFactory.php',
1810
+ 'Symfony\\Component\\BrowserKit\\Client' => $vendorDir . '/symfony/browser-kit/Client.php',
1811
+ 'Symfony\\Component\\BrowserKit\\Cookie' => $vendorDir . '/symfony/browser-kit/Cookie.php',
1812
+ 'Symfony\\Component\\BrowserKit\\CookieJar' => $vendorDir . '/symfony/browser-kit/CookieJar.php',
1813
+ 'Symfony\\Component\\BrowserKit\\History' => $vendorDir . '/symfony/browser-kit/History.php',
1814
+ 'Symfony\\Component\\BrowserKit\\Request' => $vendorDir . '/symfony/browser-kit/Request.php',
1815
+ 'Symfony\\Component\\BrowserKit\\Response' => $vendorDir . '/symfony/browser-kit/Response.php',
1816
+ 'Symfony\\Component\\Config\\ConfigCache' => $vendorDir . '/symfony/config/ConfigCache.php',
1817
+ 'Symfony\\Component\\Config\\ConfigCacheFactory' => $vendorDir . '/symfony/config/ConfigCacheFactory.php',
1818
+ 'Symfony\\Component\\Config\\ConfigCacheFactoryInterface' => $vendorDir . '/symfony/config/ConfigCacheFactoryInterface.php',
1819
+ 'Symfony\\Component\\Config\\ConfigCacheInterface' => $vendorDir . '/symfony/config/ConfigCacheInterface.php',
1820
+ 'Symfony\\Component\\Config\\Definition\\ArrayNode' => $vendorDir . '/symfony/config/Definition/ArrayNode.php',
1821
+ 'Symfony\\Component\\Config\\Definition\\BaseNode' => $vendorDir . '/symfony/config/Definition/BaseNode.php',
1822
+ 'Symfony\\Component\\Config\\Definition\\BooleanNode' => $vendorDir . '/symfony/config/Definition/BooleanNode.php',
1823
+ 'Symfony\\Component\\Config\\Definition\\Builder\\ArrayNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ArrayNodeDefinition.php',
1824
+ 'Symfony\\Component\\Config\\Definition\\Builder\\BooleanNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/BooleanNodeDefinition.php',
1825
+ 'Symfony\\Component\\Config\\Definition\\Builder\\EnumNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/EnumNodeDefinition.php',
1826
+ 'Symfony\\Component\\Config\\Definition\\Builder\\ExprBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ExprBuilder.php',
1827
+ 'Symfony\\Component\\Config\\Definition\\Builder\\FloatNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/FloatNodeDefinition.php',
1828
+ 'Symfony\\Component\\Config\\Definition\\Builder\\IntegerNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/IntegerNodeDefinition.php',
1829
+ 'Symfony\\Component\\Config\\Definition\\Builder\\MergeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/MergeBuilder.php',
1830
+ 'Symfony\\Component\\Config\\Definition\\Builder\\NodeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NodeBuilder.php',
1831
+ 'Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NodeDefinition.php',
1832
+ 'Symfony\\Component\\Config\\Definition\\Builder\\NodeParentInterface' => $vendorDir . '/symfony/config/Definition/Builder/NodeParentInterface.php',
1833
+ 'Symfony\\Component\\Config\\Definition\\Builder\\NormalizationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/NormalizationBuilder.php',
1834
+ 'Symfony\\Component\\Config\\Definition\\Builder\\NumericNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/NumericNodeDefinition.php',
1835
+ 'Symfony\\Component\\Config\\Definition\\Builder\\ParentNodeDefinitionInterface' => $vendorDir . '/symfony/config/Definition/Builder/ParentNodeDefinitionInterface.php',
1836
+ 'Symfony\\Component\\Config\\Definition\\Builder\\ScalarNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/ScalarNodeDefinition.php',
1837
+ 'Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder' => $vendorDir . '/symfony/config/Definition/Builder/TreeBuilder.php',
1838
+ 'Symfony\\Component\\Config\\Definition\\Builder\\ValidationBuilder' => $vendorDir . '/symfony/config/Definition/Builder/ValidationBuilder.php',
1839
+ 'Symfony\\Component\\Config\\Definition\\Builder\\VariableNodeDefinition' => $vendorDir . '/symfony/config/Definition/Builder/VariableNodeDefinition.php',
1840
+ 'Symfony\\Component\\Config\\Definition\\ConfigurationInterface' => $vendorDir . '/symfony/config/Definition/ConfigurationInterface.php',
1841
+ 'Symfony\\Component\\Config\\Definition\\Dumper\\XmlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/XmlReferenceDumper.php',
1842
+ 'Symfony\\Component\\Config\\Definition\\Dumper\\YamlReferenceDumper' => $vendorDir . '/symfony/config/Definition/Dumper/YamlReferenceDumper.php',
1843
+ 'Symfony\\Component\\Config\\Definition\\EnumNode' => $vendorDir . '/symfony/config/Definition/EnumNode.php',
1844
+ 'Symfony\\Component\\Config\\Definition\\Exception\\DuplicateKeyException' => $vendorDir . '/symfony/config/Definition/Exception/DuplicateKeyException.php',
1845
+ 'Symfony\\Component\\Config\\Definition\\Exception\\Exception' => $vendorDir . '/symfony/config/Definition/Exception/Exception.php',
1846
+ 'Symfony\\Component\\Config\\Definition\\Exception\\ForbiddenOverwriteException' => $vendorDir . '/symfony/config/Definition/Exception/ForbiddenOverwriteException.php',
1847
+ 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidConfigurationException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidConfigurationException.php',
1848
+ 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidDefinitionException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidDefinitionException.php',
1849
+ 'Symfony\\Component\\Config\\Definition\\Exception\\InvalidTypeException' => $vendorDir . '/symfony/config/Definition/Exception/InvalidTypeException.php',
1850
+ 'Symfony\\Component\\Config\\Definition\\Exception\\UnsetKeyException' => $vendorDir . '/symfony/config/Definition/Exception/UnsetKeyException.php',
1851
+ 'Symfony\\Component\\Config\\Definition\\FloatNode' => $vendorDir . '/symfony/config/Definition/FloatNode.php',
1852
+ 'Symfony\\Component\\Config\\Definition\\IntegerNode' => $vendorDir . '/symfony/config/Definition/IntegerNode.php',
1853
+ 'Symfony\\Component\\Config\\Definition\\NodeInterface' => $vendorDir . '/symfony/config/Definition/NodeInterface.php',
1854
+ 'Symfony\\Component\\Config\\Definition\\NumericNode' => $vendorDir . '/symfony/config/Definition/NumericNode.php',
1855
+ 'Symfony\\Component\\Config\\Definition\\Processor' => $vendorDir . '/symfony/config/Definition/Processor.php',
1856
+ 'Symfony\\Component\\Config\\Definition\\PrototypeNodeInterface' => $vendorDir . '/symfony/config/Definition/PrototypeNodeInterface.php',
1857
+ 'Symfony\\Component\\Config\\Definition\\PrototypedArrayNode' => $vendorDir . '/symfony/config/Definition/PrototypedArrayNode.php',
1858
+ 'Symfony\\Component\\Config\\Definition\\ScalarNode' => $vendorDir . '/symfony/config/Definition/ScalarNode.php',
1859
+ 'Symfony\\Component\\Config\\Definition\\VariableNode' => $vendorDir . '/symfony/config/Definition/VariableNode.php',
1860
+ 'Symfony\\Component\\Config\\DependencyInjection\\ConfigCachePass' => $vendorDir . '/symfony/config/DependencyInjection/ConfigCachePass.php',
1861
+ 'Symfony\\Component\\Config\\Exception\\FileLoaderImportCircularReferenceException' => $vendorDir . '/symfony/config/Exception/FileLoaderImportCircularReferenceException.php',
1862
+ 'Symfony\\Component\\Config\\Exception\\FileLoaderLoadException' => $vendorDir . '/symfony/config/Exception/FileLoaderLoadException.php',
1863
+ 'Symfony\\Component\\Config\\Exception\\FileLocatorFileNotFoundException' => $vendorDir . '/symfony/config/Exception/FileLocatorFileNotFoundException.php',
1864
+ 'Symfony\\Component\\Config\\FileLocator' => $vendorDir . '/symfony/config/FileLocator.php',
1865
+ 'Symfony\\Component\\Config\\FileLocatorInterface' => $vendorDir . '/symfony/config/FileLocatorInterface.php',
1866
+ 'Symfony\\Component\\Config\\Loader\\DelegatingLoader' => $vendorDir . '/symfony/config/Loader/DelegatingLoader.php',
1867
+ 'Symfony\\Component\\Config\\Loader\\FileLoader' => $vendorDir . '/symfony/config/Loader/FileLoader.php',
1868
+ 'Symfony\\Component\\Config\\Loader\\GlobFileLoader' => $vendorDir . '/symfony/config/Loader/GlobFileLoader.php',
1869
+ 'Symfony\\Component\\Config\\Loader\\Loader' => $vendorDir . '/symfony/config/Loader/Loader.php',
1870
+ 'Symfony\\Component\\Config\\Loader\\LoaderInterface' => $vendorDir . '/symfony/config/Loader/LoaderInterface.php',
1871
+ 'Symfony\\Component\\Config\\Loader\\LoaderResolver' => $vendorDir . '/symfony/config/Loader/LoaderResolver.php',
1872
+ 'Symfony\\Component\\Config\\Loader\\LoaderResolverInterface' => $vendorDir . '/symfony/config/Loader/LoaderResolverInterface.php',
1873
+ 'Symfony\\Component\\Config\\ResourceCheckerConfigCache' => $vendorDir . '/symfony/config/ResourceCheckerConfigCache.php',
1874
+ 'Symfony\\Component\\Config\\ResourceCheckerConfigCacheFactory' => $vendorDir . '/symfony/config/ResourceCheckerConfigCacheFactory.php',
1875
+ 'Symfony\\Component\\Config\\ResourceCheckerInterface' => $vendorDir . '/symfony/config/ResourceCheckerInterface.php',
1876
+ 'Symfony\\Component\\Config\\Resource\\ClassExistenceResource' => $vendorDir . '/symfony/config/Resource/ClassExistenceResource.php',
1877
+ 'Symfony\\Component\\Config\\Resource\\ComposerResource' => $vendorDir . '/symfony/config/Resource/ComposerResource.php',
1878
+ 'Symfony\\Component\\Config\\Resource\\DirectoryResource' => $vendorDir . '/symfony/config/Resource/DirectoryResource.php',
1879
+ 'Symfony\\Component\\Config\\Resource\\FileExistenceResource' => $vendorDir . '/symfony/config/Resource/FileExistenceResource.php',
1880
+ 'Symfony\\Component\\Config\\Resource\\FileResource' => $vendorDir . '/symfony/config/Resource/FileResource.php',
1881
+ 'Symfony\\Component\\Config\\Resource\\GlobResource' => $vendorDir . '/symfony/config/Resource/GlobResource.php',
1882
+ 'Symfony\\Component\\Config\\Resource\\ReflectionClassResource' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
1883
+ 'Symfony\\Component\\Config\\Resource\\ReflectionMethodHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
1884
+ 'Symfony\\Component\\Config\\Resource\\ReflectionParameterHhvmWrapper' => $vendorDir . '/symfony/config/Resource/ReflectionClassResource.php',
1885
+ 'Symfony\\Component\\Config\\Resource\\ResourceInterface' => $vendorDir . '/symfony/config/Resource/ResourceInterface.php',
1886
+ 'Symfony\\Component\\Config\\Resource\\SelfCheckingResourceChecker' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceChecker.php',
1887
+ 'Symfony\\Component\\Config\\Resource\\SelfCheckingResourceInterface' => $vendorDir . '/symfony/config/Resource/SelfCheckingResourceInterface.php',
1888
+ 'Symfony\\Component\\Config\\Util\\XmlUtils' => $vendorDir . '/symfony/config/Util/XmlUtils.php',
1889
+ 'Symfony\\Component\\Console\\Application' => $vendorDir . '/symfony/console/Application.php',
1890
+ 'Symfony\\Component\\Console\\Command\\Command' => $vendorDir . '/symfony/console/Command/Command.php',
1891
+ 'Symfony\\Component\\Console\\Command\\HelpCommand' => $vendorDir . '/symfony/console/Command/HelpCommand.php',
1892
+ 'Symfony\\Component\\Console\\Command\\ListCommand' => $vendorDir . '/symfony/console/Command/ListCommand.php',
1893
+ 'Symfony\\Component\\Console\\Command\\LockableTrait' => $vendorDir . '/symfony/console/Command/LockableTrait.php',
1894
+ 'Symfony\\Component\\Console\\ConsoleEvents' => $vendorDir . '/symfony/console/ConsoleEvents.php',
1895
+ 'Symfony\\Component\\Console\\DependencyInjection\\AddConsoleCommandPass' => $vendorDir . '/symfony/console/DependencyInjection/AddConsoleCommandPass.php',
1896
+ 'Symfony\\Component\\Console\\Descriptor\\ApplicationDescription' => $vendorDir . '/symfony/console/Descriptor/ApplicationDescription.php',
1897
+ 'Symfony\\Component\\Console\\Descriptor\\Descriptor' => $vendorDir . '/symfony/console/Descriptor/Descriptor.php',
1898
+ 'Symfony\\Component\\Console\\Descriptor\\DescriptorInterface' => $vendorDir . '/symfony/console/Descriptor/DescriptorInterface.php',
1899
+ 'Symfony\\Component\\Console\\Descriptor\\JsonDescriptor' => $vendorDir . '/symfony/console/Descriptor/JsonDescriptor.php',
1900
+ 'Symfony\\Component\\Console\\Descriptor\\MarkdownDescriptor' => $vendorDir . '/symfony/console/Descriptor/MarkdownDescriptor.php',
1901
+ 'Symfony\\Component\\Console\\Descriptor\\TextDescriptor' => $vendorDir . '/symfony/console/Descriptor/TextDescriptor.php',
1902
+ 'Symfony\\Component\\Console\\Descriptor\\XmlDescriptor' => $vendorDir . '/symfony/console/Descriptor/XmlDescriptor.php',
1903
+ 'Symfony\\Component\\Console\\EventListener\\ErrorListener' => $vendorDir . '/symfony/console/EventListener/ErrorListener.php',
1904
+ 'Symfony\\Component\\Console\\Event\\ConsoleCommandEvent' => $vendorDir . '/symfony/console/Event/ConsoleCommandEvent.php',
1905
+ 'Symfony\\Component\\Console\\Event\\ConsoleErrorEvent' => $vendorDir . '/symfony/console/Event/ConsoleErrorEvent.php',
1906
+ 'Symfony\\Component\\Console\\Event\\ConsoleEvent' => $vendorDir . '/symfony/console/Event/ConsoleEvent.php',
1907
+ 'Symfony\\Component\\Console\\Event\\ConsoleExceptionEvent' => $vendorDir . '/symfony/console/Event/ConsoleExceptionEvent.php',
1908
+ 'Symfony\\Component\\Console\\Event\\ConsoleTerminateEvent' => $vendorDir . '/symfony/console/Event/ConsoleTerminateEvent.php',
1909
+ 'Symfony\\Component\\Console\\Exception\\CommandNotFoundException' => $vendorDir . '/symfony/console/Exception/CommandNotFoundException.php',
1910
+ 'Symfony\\Component\\Console\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/console/Exception/ExceptionInterface.php',
1911
+ 'Symfony\\Component\\Console\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/console/Exception/InvalidArgumentException.php',
1912
+ 'Symfony\\Component\\Console\\Exception\\InvalidOptionException' => $vendorDir . '/symfony/console/Exception/InvalidOptionException.php',
1913
+ 'Symfony\\Component\\Console\\Exception\\LogicException' => $vendorDir . '/symfony/console/Exception/LogicException.php',
1914
+ 'Symfony\\Component\\Console\\Exception\\RuntimeException' => $vendorDir . '/symfony/console/Exception/RuntimeException.php',
1915
+ 'Symfony\\Component\\Console\\Formatter\\OutputFormatter' => $vendorDir . '/symfony/console/Formatter/OutputFormatter.php',
1916
+ 'Symfony\\Component\\Console\\Formatter\\OutputFormatterInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterInterface.php',
1917
+ 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyle' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyle.php',
1918
+ 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleInterface' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleInterface.php',
1919
+ 'Symfony\\Component\\Console\\Formatter\\OutputFormatterStyleStack' => $vendorDir . '/symfony/console/Formatter/OutputFormatterStyleStack.php',
1920
+ 'Symfony\\Component\\Console\\Helper\\DebugFormatterHelper' => $vendorDir . '/symfony/console/Helper/DebugFormatterHelper.php',
1921
+ 'Symfony\\Component\\Console\\Helper\\DescriptorHelper' => $vendorDir . '/symfony/console/Helper/DescriptorHelper.php',
1922
+ 'Symfony\\Component\\Console\\Helper\\FormatterHelper' => $vendorDir . '/symfony/console/Helper/FormatterHelper.php',
1923
+ 'Symfony\\Component\\Console\\Helper\\Helper' => $vendorDir . '/symfony/console/Helper/Helper.php',
1924
+ 'Symfony\\Component\\Console\\Helper\\HelperInterface' => $vendorDir . '/symfony/console/Helper/HelperInterface.php',
1925
+ 'Symfony\\Component\\Console\\Helper\\HelperSet' => $vendorDir . '/symfony/console/Helper/HelperSet.php',
1926
+ 'Symfony\\Component\\Console\\Helper\\InputAwareHelper' => $vendorDir . '/symfony/console/Helper/InputAwareHelper.php',
1927
+ 'Symfony\\Component\\Console\\Helper\\ProcessHelper' => $vendorDir . '/symfony/console/Helper/ProcessHelper.php',
1928
+ 'Symfony\\Component\\Console\\Helper\\ProgressBar' => $vendorDir . '/symfony/console/Helper/ProgressBar.php',
1929
+ 'Symfony\\Component\\Console\\Helper\\ProgressIndicator' => $vendorDir . '/symfony/console/Helper/ProgressIndicator.php',
1930
+ 'Symfony\\Component\\Console\\Helper\\QuestionHelper' => $vendorDir . '/symfony/console/Helper/QuestionHelper.php',
1931
+ 'Symfony\\Component\\Console\\Helper\\SymfonyQuestionHelper' => $vendorDir . '/symfony/console/Helper/SymfonyQuestionHelper.php',
1932
+ 'Symfony\\Component\\Console\\Helper\\Table' => $vendorDir . '/symfony/console/Helper/Table.php',
1933
+ 'Symfony\\Component\\Console\\Helper\\TableCell' => $vendorDir . '/symfony/console/Helper/TableCell.php',
1934
+ 'Symfony\\Component\\Console\\Helper\\TableSeparator' => $vendorDir . '/symfony/console/Helper/TableSeparator.php',
1935
+ 'Symfony\\Component\\Console\\Helper\\TableStyle' => $vendorDir . '/symfony/console/Helper/TableStyle.php',
1936
+ 'Symfony\\Component\\Console\\Input\\ArgvInput' => $vendorDir . '/symfony/console/Input/ArgvInput.php',
1937
+ 'Symfony\\Component\\Console\\Input\\ArrayInput' => $vendorDir . '/symfony/console/Input/ArrayInput.php',
1938
+ 'Symfony\\Component\\Console\\Input\\Input' => $vendorDir . '/symfony/console/Input/Input.php',
1939
+ 'Symfony\\Component\\Console\\Input\\InputArgument' => $vendorDir . '/symfony/console/Input/InputArgument.php',
1940
+ 'Symfony\\Component\\Console\\Input\\InputAwareInterface' => $vendorDir . '/symfony/console/Input/InputAwareInterface.php',
1941
+ 'Symfony\\Component\\Console\\Input\\InputDefinition' => $vendorDir . '/symfony/console/Input/InputDefinition.php',
1942
+ 'Symfony\\Component\\Console\\Input\\InputInterface' => $vendorDir . '/symfony/console/Input/InputInterface.php',
1943
+ 'Symfony\\Component\\Console\\Input\\InputOption' => $vendorDir . '/symfony/console/Input/InputOption.php',
1944
+ 'Symfony\\Component\\Console\\Input\\StreamableInputInterface' => $vendorDir . '/symfony/console/Input/StreamableInputInterface.php',
1945
+ 'Symfony\\Component\\Console\\Input\\StringInput' => $vendorDir . '/symfony/console/Input/StringInput.php',
1946
+ 'Symfony\\Component\\Console\\Logger\\ConsoleLogger' => $vendorDir . '/symfony/console/Logger/ConsoleLogger.php',
1947
+ 'Symfony\\Component\\Console\\Output\\BufferedOutput' => $vendorDir . '/symfony/console/Output/BufferedOutput.php',
1948
+ 'Symfony\\Component\\Console\\Output\\ConsoleOutput' => $vendorDir . '/symfony/console/Output/ConsoleOutput.php',
1949
+ 'Symfony\\Component\\Console\\Output\\ConsoleOutputInterface' => $vendorDir . '/symfony/console/Output/ConsoleOutputInterface.php',
1950
+ 'Symfony\\Component\\Console\\Output\\NullOutput' => $vendorDir . '/symfony/console/Output/NullOutput.php',
1951
+ 'Symfony\\Component\\Console\\Output\\Output' => $vendorDir . '/symfony/console/Output/Output.php',
1952
+ 'Symfony\\Component\\Console\\Output\\OutputInterface' => $vendorDir . '/symfony/console/Output/OutputInterface.php',
1953
+ 'Symfony\\Component\\Console\\Output\\StreamOutput' => $vendorDir . '/symfony/console/Output/StreamOutput.php',
1954
+ 'Symfony\\Component\\Console\\Question\\ChoiceQuestion' => $vendorDir . '/symfony/console/Question/ChoiceQuestion.php',
1955
+ 'Symfony\\Component\\Console\\Question\\ConfirmationQuestion' => $vendorDir . '/symfony/console/Question/ConfirmationQuestion.php',
1956
+ 'Symfony\\Component\\Console\\Question\\Question' => $vendorDir . '/symfony/console/Question/Question.php',
1957
+ 'Symfony\\Component\\Console\\Style\\OutputStyle' => $vendorDir . '/symfony/console/Style/OutputStyle.php',
1958
+ 'Symfony\\Component\\Console\\Style\\StyleInterface' => $vendorDir . '/symfony/console/Style/StyleInterface.php',
1959
+ 'Symfony\\Component\\Console\\Style\\SymfonyStyle' => $vendorDir . '/symfony/console/Style/SymfonyStyle.php',
1960
+ 'Symfony\\Component\\Console\\Terminal' => $vendorDir . '/symfony/console/Terminal.php',
1961
+ 'Symfony\\Component\\Console\\Tester\\ApplicationTester' => $vendorDir . '/symfony/console/Tester/ApplicationTester.php',
1962
+ 'Symfony\\Component\\Console\\Tester\\CommandTester' => $vendorDir . '/symfony/console/Tester/CommandTester.php',
1963
+ 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php',
1964
+ 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php',
1965
+ 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php',
1966
+ 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php',
1967
+ 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php',
1968
+ 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php',
1969
+ 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php',
1970
+ 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php',
1971
+ 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php',
1972
+ 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php',
1973
+ 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php',
1974
+ 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php',
1975
+ 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php',
1976
+ 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php',
1977
+ 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php',
1978
+ 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php',
1979
+ 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php',
1980
+ 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php',
1981
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php',
1982
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php',
1983
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php',
1984
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php',
1985
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php',
1986
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php',
1987
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php',
1988
+ 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php',
1989
+ 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php',
1990
+ 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php',
1991
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php',
1992
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php',
1993
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php',
1994
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php',
1995
+ 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php',
1996
+ 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php',
1997
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php',
1998
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php',
1999
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php',
2000
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php',
2001
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php',
2002
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php',
2003
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php',
2004
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php',
2005
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php',
2006
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php',
2007
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php',
2008
+ 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php',
2009
+ 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php',
2010
+ 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php',
2011
+ 'Symfony\\Component\\Debug\\BufferingLogger' => $vendorDir . '/symfony/debug/BufferingLogger.php',
2012
+ 'Symfony\\Component\\Debug\\Debug' => $vendorDir . '/symfony/debug/Debug.php',
2013
+ 'Symfony\\Component\\Debug\\DebugClassLoader' => $vendorDir . '/symfony/debug/DebugClassLoader.php',
2014
+ 'Symfony\\Component\\Debug\\ErrorHandler' => $vendorDir . '/symfony/debug/ErrorHandler.php',
2015
+ 'Symfony\\Component\\Debug\\ExceptionHandler' => $vendorDir . '/symfony/debug/ExceptionHandler.php',
2016
+ 'Symfony\\Component\\Debug\\Exception\\ClassNotFoundException' => $vendorDir . '/symfony/debug/Exception/ClassNotFoundException.php',
2017
+ 'Symfony\\Component\\Debug\\Exception\\ContextErrorException' => $vendorDir . '/symfony/debug/Exception/ContextErrorException.php',
2018
+ 'Symfony\\Component\\Debug\\Exception\\FatalErrorException' => $vendorDir . '/symfony/debug/Exception/FatalErrorException.php',
2019
+ 'Symfony\\Component\\Debug\\Exception\\FatalThrowableError' => $vendorDir . '/symfony/debug/Exception/FatalThrowableError.php',
2020
+ 'Symfony\\Component\\Debug\\Exception\\FlattenException' => $vendorDir . '/symfony/debug/Exception/FlattenException.php',
2021
+ 'Symfony\\Component\\Debug\\Exception\\OutOfMemoryException' => $vendorDir . '/symfony/debug/Exception/OutOfMemoryException.php',
2022
+ 'Symfony\\Component\\Debug\\Exception\\SilencedErrorContext' => $vendorDir . '/symfony/debug/Exception/SilencedErrorContext.php',
2023
+ 'Symfony\\Component\\Debug\\Exception\\UndefinedFunctionException' => $vendorDir . '/symfony/debug/Exception/UndefinedFunctionException.php',
2024
+ 'Symfony\\Component\\Debug\\Exception\\UndefinedMethodException' => $vendorDir . '/symfony/debug/Exception/UndefinedMethodException.php',
2025
+ 'Symfony\\Component\\Debug\\FatalErrorHandler\\ClassNotFoundFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/ClassNotFoundFatalErrorHandler.php',
2026
+ 'Symfony\\Component\\Debug\\FatalErrorHandler\\FatalErrorHandlerInterface' => $vendorDir . '/symfony/debug/FatalErrorHandler/FatalErrorHandlerInterface.php',
2027
+ 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedFunctionFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedFunctionFatalErrorHandler.php',
2028
+ 'Symfony\\Component\\Debug\\FatalErrorHandler\\UndefinedMethodFatalErrorHandler' => $vendorDir . '/symfony/debug/FatalErrorHandler/UndefinedMethodFatalErrorHandler.php',
2029
+ 'Symfony\\Component\\DependencyInjection\\Alias' => $vendorDir . '/symfony/dependency-injection/Alias.php',
2030
+ 'Symfony\\Component\\DependencyInjection\\Argument\\ArgumentInterface' => $vendorDir . '/symfony/dependency-injection/Argument/ArgumentInterface.php',
2031
+ 'Symfony\\Component\\DependencyInjection\\Argument\\IteratorArgument' => $vendorDir . '/symfony/dependency-injection/Argument/IteratorArgument.php',
2032
+ 'Symfony\\Component\\DependencyInjection\\Argument\\RewindableGenerator' => $vendorDir . '/symfony/dependency-injection/Argument/RewindableGenerator.php',
2033
+ 'Symfony\\Component\\DependencyInjection\\Argument\\ServiceClosureArgument' => $vendorDir . '/symfony/dependency-injection/Argument/ServiceClosureArgument.php',
2034
+ 'Symfony\\Component\\DependencyInjection\\ChildDefinition' => $vendorDir . '/symfony/dependency-injection/ChildDefinition.php',
2035
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AbstractRecursivePass.php',
2036
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\AnalyzeServiceReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AnalyzeServiceReferencesPass.php',
2037
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\AutoAliasServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutoAliasServicePass.php',
2038
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\AutowireExceptionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowireExceptionPass.php',
2039
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\AutowirePass' => $vendorDir . '/symfony/dependency-injection/Compiler/AutowirePass.php',
2040
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckArgumentsValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckArgumentsValidityPass.php',
2041
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckCircularReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckCircularReferencesPass.php',
2042
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckDefinitionValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckDefinitionValidityPass.php',
2043
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php',
2044
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CheckReferenceValidityPass' => $vendorDir . '/symfony/dependency-injection/Compiler/CheckReferenceValidityPass.php',
2045
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\Compiler' => $vendorDir . '/symfony/dependency-injection/Compiler/Compiler.php',
2046
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\CompilerPassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/CompilerPassInterface.php',
2047
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\DecoratorServicePass' => $vendorDir . '/symfony/dependency-injection/Compiler/DecoratorServicePass.php',
2048
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ExtensionCompilerPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ExtensionCompilerPass.php',
2049
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\FactoryReturnTypePass' => $vendorDir . '/symfony/dependency-injection/Compiler/FactoryReturnTypePass.php',
2050
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\InlineServiceDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/InlineServiceDefinitionsPass.php',
2051
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\LoggingFormatter' => $vendorDir . '/symfony/dependency-injection/Compiler/LoggingFormatter.php',
2052
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\MergeExtensionConfigurationPass' => $vendorDir . '/symfony/dependency-injection/Compiler/MergeExtensionConfigurationPass.php',
2053
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\PassConfig' => $vendorDir . '/symfony/dependency-injection/Compiler/PassConfig.php',
2054
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\PriorityTaggedServiceTrait' => $vendorDir . '/symfony/dependency-injection/Compiler/PriorityTaggedServiceTrait.php',
2055
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RegisterServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RegisterServiceSubscribersPass.php',
2056
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveAbstractDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveAbstractDefinitionsPass.php',
2057
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RemovePrivateAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemovePrivateAliasesPass.php',
2058
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RemoveUnusedDefinitionsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RemoveUnusedDefinitionsPass.php',
2059
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatablePassInterface' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatablePassInterface.php',
2060
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\RepeatedPass' => $vendorDir . '/symfony/dependency-injection/Compiler/RepeatedPass.php',
2061
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ReplaceAliasByActualDefinitionPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ReplaceAliasByActualDefinitionPass.php',
2062
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveClassPass.php',
2063
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveDefinitionTemplatesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveDefinitionTemplatesPass.php',
2064
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveFactoryClassPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveFactoryClassPass.php',
2065
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInstanceofConditionalsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInstanceofConditionalsPass.php',
2066
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveInvalidReferencesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveInvalidReferencesPass.php',
2067
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveNamedArgumentsPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveNamedArgumentsPass.php',
2068
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveParameterPlaceHoldersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveParameterPlaceHoldersPass.php',
2069
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveReferencesToAliasesPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveReferencesToAliasesPass.php',
2070
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ResolveServiceSubscribersPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ResolveServiceSubscribersPass.php',
2071
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceLocatorTagPass' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceLocatorTagPass.php',
2072
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraph' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraph.php',
2073
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphEdge' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphEdge.php',
2074
+ 'Symfony\\Component\\DependencyInjection\\Compiler\\ServiceReferenceGraphNode' => $vendorDir . '/symfony/dependency-injection/Compiler/ServiceReferenceGraphNode.php',
2075
+ 'Symfony\\Component\\DependencyInjection\\Config\\AutowireServiceResource' => $vendorDir . '/symfony/dependency-injection/Config/AutowireServiceResource.php',
2076
+ 'Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResource' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResource.php',
2077
+ 'Symfony\\Component\\DependencyInjection\\Config\\ContainerParametersResourceChecker' => $vendorDir . '/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php',
2078
+ 'Symfony\\Component\\DependencyInjection\\Container' => $vendorDir . '/symfony/dependency-injection/Container.php',
2079
+ 'Symfony\\Component\\DependencyInjection\\ContainerAwareInterface' => $vendorDir . '/symfony/dependency-injection/ContainerAwareInterface.php',
2080
+ 'Symfony\\Component\\DependencyInjection\\ContainerAwareTrait' => $vendorDir . '/symfony/dependency-injection/ContainerAwareTrait.php',
2081
+ 'Symfony\\Component\\DependencyInjection\\ContainerBuilder' => $vendorDir . '/symfony/dependency-injection/ContainerBuilder.php',
2082
+ 'Symfony\\Component\\DependencyInjection\\ContainerInterface' => $vendorDir . '/symfony/dependency-injection/ContainerInterface.php',
2083
+ 'Symfony\\Component\\DependencyInjection\\Definition' => $vendorDir . '/symfony/dependency-injection/Definition.php',
2084
+ 'Symfony\\Component\\DependencyInjection\\DefinitionDecorator' => $vendorDir . '/symfony/dependency-injection/DefinitionDecorator.php',
2085
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\Dumper' => $vendorDir . '/symfony/dependency-injection/Dumper/Dumper.php',
2086
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/Dumper/DumperInterface.php',
2087
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\GraphvizDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/GraphvizDumper.php',
2088
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\PhpDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/PhpDumper.php',
2089
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\XmlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/XmlDumper.php',
2090
+ 'Symfony\\Component\\DependencyInjection\\Dumper\\YamlDumper' => $vendorDir . '/symfony/dependency-injection/Dumper/YamlDumper.php',
2091
+ 'Symfony\\Component\\DependencyInjection\\Exception\\AutowiringFailedException' => $vendorDir . '/symfony/dependency-injection/Exception/AutowiringFailedException.php',
2092
+ 'Symfony\\Component\\DependencyInjection\\Exception\\BadMethodCallException' => $vendorDir . '/symfony/dependency-injection/Exception/BadMethodCallException.php',
2093
+ 'Symfony\\Component\\DependencyInjection\\Exception\\EnvNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvNotFoundException.php',
2094
+ 'Symfony\\Component\\DependencyInjection\\Exception\\EnvParameterException' => $vendorDir . '/symfony/dependency-injection/Exception/EnvParameterException.php',
2095
+ 'Symfony\\Component\\DependencyInjection\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/dependency-injection/Exception/ExceptionInterface.php',
2096
+ 'Symfony\\Component\\DependencyInjection\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/dependency-injection/Exception/InvalidArgumentException.php',
2097
+ 'Symfony\\Component\\DependencyInjection\\Exception\\LogicException' => $vendorDir . '/symfony/dependency-injection/Exception/LogicException.php',
2098
+ 'Symfony\\Component\\DependencyInjection\\Exception\\OutOfBoundsException' => $vendorDir . '/symfony/dependency-injection/Exception/OutOfBoundsException.php',
2099
+ 'Symfony\\Component\\DependencyInjection\\Exception\\ParameterCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterCircularReferenceException.php',
2100
+ 'Symfony\\Component\\DependencyInjection\\Exception\\ParameterNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ParameterNotFoundException.php',
2101
+ 'Symfony\\Component\\DependencyInjection\\Exception\\RuntimeException' => $vendorDir . '/symfony/dependency-injection/Exception/RuntimeException.php',
2102
+ 'Symfony\\Component\\DependencyInjection\\Exception\\ServiceCircularReferenceException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceCircularReferenceException.php',
2103
+ 'Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException' => $vendorDir . '/symfony/dependency-injection/Exception/ServiceNotFoundException.php',
2104
+ 'Symfony\\Component\\DependencyInjection\\ExpressionLanguage' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguage.php',
2105
+ 'Symfony\\Component\\DependencyInjection\\ExpressionLanguageProvider' => $vendorDir . '/symfony/dependency-injection/ExpressionLanguageProvider.php',
2106
+ 'Symfony\\Component\\DependencyInjection\\Extension\\ConfigurationExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ConfigurationExtensionInterface.php',
2107
+ 'Symfony\\Component\\DependencyInjection\\Extension\\Extension' => $vendorDir . '/symfony/dependency-injection/Extension/Extension.php',
2108
+ 'Symfony\\Component\\DependencyInjection\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/ExtensionInterface.php',
2109
+ 'Symfony\\Component\\DependencyInjection\\Extension\\PrependExtensionInterface' => $vendorDir . '/symfony/dependency-injection/Extension/PrependExtensionInterface.php',
2110
+ 'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\InstantiatorInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php',
2111
+ 'Symfony\\Component\\DependencyInjection\\LazyProxy\\Instantiator\\RealServiceInstantiator' => $vendorDir . '/symfony/dependency-injection/LazyProxy/Instantiator/RealServiceInstantiator.php',
2112
+ 'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\DumperInterface' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/DumperInterface.php',
2113
+ 'Symfony\\Component\\DependencyInjection\\LazyProxy\\PhpDumper\\NullDumper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/PhpDumper/NullDumper.php',
2114
+ 'Symfony\\Component\\DependencyInjection\\LazyProxy\\ProxyHelper' => $vendorDir . '/symfony/dependency-injection/LazyProxy/ProxyHelper.php',
2115
+ 'Symfony\\Component\\DependencyInjection\\Loader\\ClosureLoader' => $vendorDir . '/symfony/dependency-injection/Loader/ClosureLoader.php',
2116
+ 'Symfony\\Component\\DependencyInjection\\Loader\\DirectoryLoader' => $vendorDir . '/symfony/dependency-injection/Loader/DirectoryLoader.php',
2117
+ 'Symfony\\Component\\DependencyInjection\\Loader\\FileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/FileLoader.php',
2118
+ 'Symfony\\Component\\DependencyInjection\\Loader\\IniFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/IniFileLoader.php',
2119
+ 'Symfony\\Component\\DependencyInjection\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/PhpFileLoader.php',
2120
+ 'Symfony\\Component\\DependencyInjection\\Loader\\XmlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/XmlFileLoader.php',
2121
+ 'Symfony\\Component\\DependencyInjection\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/dependency-injection/Loader/YamlFileLoader.php',
2122
+ 'Symfony\\Component\\DependencyInjection\\Parameter' => $vendorDir . '/symfony/dependency-injection/Parameter.php',
2123
+ 'Symfony\\Component\\DependencyInjection\\ParameterBag\\EnvPlaceholderParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/EnvPlaceholderParameterBag.php',
2124
+ 'Symfony\\Component\\DependencyInjection\\ParameterBag\\FrozenParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/FrozenParameterBag.php',
2125
+ 'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBag' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBag.php',
2126
+ 'Symfony\\Component\\DependencyInjection\\ParameterBag\\ParameterBagInterface' => $vendorDir . '/symfony/dependency-injection/ParameterBag/ParameterBagInterface.php',
2127
+ 'Symfony\\Component\\DependencyInjection\\Reference' => $vendorDir . '/symfony/dependency-injection/Reference.php',
2128
+ 'Symfony\\Component\\DependencyInjection\\ResettableContainerInterface' => $vendorDir . '/symfony/dependency-injection/ResettableContainerInterface.php',
2129
+ 'Symfony\\Component\\DependencyInjection\\ServiceLocator' => $vendorDir . '/symfony/dependency-injection/ServiceLocator.php',
2130
+ 'Symfony\\Component\\DependencyInjection\\ServiceSubscriberInterface' => $vendorDir . '/symfony/dependency-injection/ServiceSubscriberInterface.php',
2131
+ 'Symfony\\Component\\DependencyInjection\\TaggedContainerInterface' => $vendorDir . '/symfony/dependency-injection/TaggedContainerInterface.php',
2132
+ 'Symfony\\Component\\DependencyInjection\\TypedReference' => $vendorDir . '/symfony/dependency-injection/TypedReference.php',
2133
+ 'Symfony\\Component\\DependencyInjection\\Variable' => $vendorDir . '/symfony/dependency-injection/Variable.php',
2134
+ 'Symfony\\Component\\DomCrawler\\AbstractUriElement' => $vendorDir . '/symfony/dom-crawler/AbstractUriElement.php',
2135
+ 'Symfony\\Component\\DomCrawler\\Crawler' => $vendorDir . '/symfony/dom-crawler/Crawler.php',
2136
+ 'Symfony\\Component\\DomCrawler\\Field\\ChoiceFormField' => $vendorDir . '/symfony/dom-crawler/Field/ChoiceFormField.php',
2137
+ 'Symfony\\Component\\DomCrawler\\Field\\FileFormField' => $vendorDir . '/symfony/dom-crawler/Field/FileFormField.php',
2138
+ 'Symfony\\Component\\DomCrawler\\Field\\FormField' => $vendorDir . '/symfony/dom-crawler/Field/FormField.php',
2139
+ 'Symfony\\Component\\DomCrawler\\Field\\InputFormField' => $vendorDir . '/symfony/dom-crawler/Field/InputFormField.php',
2140
+ 'Symfony\\Component\\DomCrawler\\Field\\TextareaFormField' => $vendorDir . '/symfony/dom-crawler/Field/TextareaFormField.php',
2141
+ 'Symfony\\Component\\DomCrawler\\Form' => $vendorDir . '/symfony/dom-crawler/Form.php',
2142
+ 'Symfony\\Component\\DomCrawler\\FormFieldRegistry' => $vendorDir . '/symfony/dom-crawler/FormFieldRegistry.php',
2143
+ 'Symfony\\Component\\DomCrawler\\Image' => $vendorDir . '/symfony/dom-crawler/Image.php',
2144
+ 'Symfony\\Component\\DomCrawler\\Link' => $vendorDir . '/symfony/dom-crawler/Link.php',
2145
+ 'Symfony\\Component\\EventDispatcher\\ContainerAwareEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ContainerAwareEventDispatcher.php',
2146
+ 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php',
2147
+ 'Symfony\\Component\\EventDispatcher\\Debug\\TraceableEventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php',
2148
+ 'Symfony\\Component\\EventDispatcher\\Debug\\WrappedListener' => $vendorDir . '/symfony/event-dispatcher/Debug/WrappedListener.php',
2149
+ 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\ExtractingEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',
2150
+ 'Symfony\\Component\\EventDispatcher\\DependencyInjection\\RegisterListenersPass' => $vendorDir . '/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',
2151
+ 'Symfony\\Component\\EventDispatcher\\Event' => $vendorDir . '/symfony/event-dispatcher/Event.php',
2152
+ 'Symfony\\Component\\EventDispatcher\\EventDispatcher' => $vendorDir . '/symfony/event-dispatcher/EventDispatcher.php',
2153
+ 'Symfony\\Component\\EventDispatcher\\EventDispatcherInterface' => $vendorDir . '/symfony/event-dispatcher/EventDispatcherInterface.php',
2154
+ 'Symfony\\Component\\EventDispatcher\\EventSubscriberInterface' => $vendorDir . '/symfony/event-dispatcher/EventSubscriberInterface.php',
2155
+ 'Symfony\\Component\\EventDispatcher\\GenericEvent' => $vendorDir . '/symfony/event-dispatcher/GenericEvent.php',
2156
+ 'Symfony\\Component\\EventDispatcher\\ImmutableEventDispatcher' => $vendorDir . '/symfony/event-dispatcher/ImmutableEventDispatcher.php',
2157
+ 'Symfony\\Component\\Filesystem\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/ExceptionInterface.php',
2158
+ 'Symfony\\Component\\Filesystem\\Exception\\FileNotFoundException' => $vendorDir . '/symfony/filesystem/Exception/FileNotFoundException.php',
2159
+ 'Symfony\\Component\\Filesystem\\Exception\\IOException' => $vendorDir . '/symfony/filesystem/Exception/IOException.php',
2160
+ 'Symfony\\Component\\Filesystem\\Exception\\IOExceptionInterface' => $vendorDir . '/symfony/filesystem/Exception/IOExceptionInterface.php',
2161
+ 'Symfony\\Component\\Filesystem\\Filesystem' => $vendorDir . '/symfony/filesystem/Filesystem.php',
2162
+ 'Symfony\\Component\\Filesystem\\LockHandler' => $vendorDir . '/symfony/filesystem/LockHandler.php',
2163
+ 'Symfony\\Component\\Finder\\Comparator\\Comparator' => $vendorDir . '/symfony/finder/Comparator/Comparator.php',
2164
+ 'Symfony\\Component\\Finder\\Comparator\\DateComparator' => $vendorDir . '/symfony/finder/Comparator/DateComparator.php',
2165
+ 'Symfony\\Component\\Finder\\Comparator\\NumberComparator' => $vendorDir . '/symfony/finder/Comparator/NumberComparator.php',
2166
+ 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException' => $vendorDir . '/symfony/finder/Exception/AccessDeniedException.php',
2167
+ 'Symfony\\Component\\Finder\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/finder/Exception/ExceptionInterface.php',
2168
+ 'Symfony\\Component\\Finder\\Finder' => $vendorDir . '/symfony/finder/Finder.php',
2169
+ 'Symfony\\Component\\Finder\\Glob' => $vendorDir . '/symfony/finder/Glob.php',
2170
+ 'Symfony\\Component\\Finder\\Iterator\\CustomFilterIterator' => $vendorDir . '/symfony/finder/Iterator/CustomFilterIterator.php',
2171
+ 'Symfony\\Component\\Finder\\Iterator\\DateRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DateRangeFilterIterator.php',
2172
+ 'Symfony\\Component\\Finder\\Iterator\\DepthRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/DepthRangeFilterIterator.php',
2173
+ 'Symfony\\Component\\Finder\\Iterator\\ExcludeDirectoryFilterIterator' => $vendorDir . '/symfony/finder/Iterator/ExcludeDirectoryFilterIterator.php',
2174
+ 'Symfony\\Component\\Finder\\Iterator\\FileTypeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FileTypeFilterIterator.php',
2175
+ 'Symfony\\Component\\Finder\\Iterator\\FilecontentFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilecontentFilterIterator.php',
2176
+ 'Symfony\\Component\\Finder\\Iterator\\FilenameFilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilenameFilterIterator.php',
2177
+ 'Symfony\\Component\\Finder\\Iterator\\FilterIterator' => $vendorDir . '/symfony/finder/Iterator/FilterIterator.php',
2178
+ 'Symfony\\Component\\Finder\\Iterator\\MultiplePcreFilterIterator' => $vendorDir . '/symfony/finder/Iterator/MultiplePcreFilterIterator.php',
2179
+ 'Symfony\\Component\\Finder\\Iterator\\PathFilterIterator' => $vendorDir . '/symfony/finder/Iterator/PathFilterIterator.php',
2180
+ 'Symfony\\Component\\Finder\\Iterator\\RecursiveDirectoryIterator' => $vendorDir . '/symfony/finder/Iterator/RecursiveDirectoryIterator.php',
2181
+ 'Symfony\\Component\\Finder\\Iterator\\SizeRangeFilterIterator' => $vendorDir . '/symfony/finder/Iterator/SizeRangeFilterIterator.php',
2182
+ 'Symfony\\Component\\Finder\\Iterator\\SortableIterator' => $vendorDir . '/symfony/finder/Iterator/SortableIterator.php',
2183
+ 'Symfony\\Component\\Finder\\SplFileInfo' => $vendorDir . '/symfony/finder/SplFileInfo.php',
2184
+ 'Symfony\\Component\\Process\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/process/Exception/ExceptionInterface.php',
2185
+ 'Symfony\\Component\\Process\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/process/Exception/InvalidArgumentException.php',
2186
+ 'Symfony\\Component\\Process\\Exception\\LogicException' => $vendorDir . '/symfony/process/Exception/LogicException.php',
2187
+ 'Symfony\\Component\\Process\\Exception\\ProcessFailedException' => $vendorDir . '/symfony/process/Exception/ProcessFailedException.php',
2188
+ 'Symfony\\Component\\Process\\Exception\\ProcessTimedOutException' => $vendorDir . '/symfony/process/Exception/ProcessTimedOutException.php',
2189
+ 'Symfony\\Component\\Process\\Exception\\RuntimeException' => $vendorDir . '/symfony/process/Exception/RuntimeException.php',
2190
+ 'Symfony\\Component\\Process\\ExecutableFinder' => $vendorDir . '/symfony/process/ExecutableFinder.php',
2191
+ 'Symfony\\Component\\Process\\PhpExecutableFinder' => $vendorDir . '/symfony/process/PhpExecutableFinder.php',
2192
+ 'Symfony\\Component\\Process\\PhpProcess' => $vendorDir . '/symfony/process/PhpProcess.php',
2193
+ 'Symfony\\Component\\Process\\Pipes\\AbstractPipes' => $vendorDir . '/symfony/process/Pipes/AbstractPipes.php',
2194
+ 'Symfony\\Component\\Process\\Pipes\\PipesInterface' => $vendorDir . '/symfony/process/Pipes/PipesInterface.php',
2195
+ 'Symfony\\Component\\Process\\Pipes\\UnixPipes' => $vendorDir . '/symfony/process/Pipes/UnixPipes.php',
2196
+ 'Symfony\\Component\\Process\\Pipes\\WindowsPipes' => $vendorDir . '/symfony/process/Pipes/WindowsPipes.php',
2197
+ 'Symfony\\Component\\Process\\Process' => $vendorDir . '/symfony/process/Process.php',
2198
+ 'Symfony\\Component\\Process\\ProcessBuilder' => $vendorDir . '/symfony/process/ProcessBuilder.php',
2199
+ 'Symfony\\Component\\Process\\ProcessUtils' => $vendorDir . '/symfony/process/ProcessUtils.php',
2200
+ 'Symfony\\Component\\Translation\\Catalogue\\AbstractOperation' => $vendorDir . '/symfony/translation/Catalogue/AbstractOperation.php',
2201
+ 'Symfony\\Component\\Translation\\Catalogue\\MergeOperation' => $vendorDir . '/symfony/translation/Catalogue/MergeOperation.php',
2202
+ 'Symfony\\Component\\Translation\\Catalogue\\OperationInterface' => $vendorDir . '/symfony/translation/Catalogue/OperationInterface.php',
2203
+ 'Symfony\\Component\\Translation\\Catalogue\\TargetOperation' => $vendorDir . '/symfony/translation/Catalogue/TargetOperation.php',
2204
+ 'Symfony\\Component\\Translation\\Command\\XliffLintCommand' => $vendorDir . '/symfony/translation/Command/XliffLintCommand.php',
2205
+ 'Symfony\\Component\\Translation\\DataCollectorTranslator' => $vendorDir . '/symfony/translation/DataCollectorTranslator.php',
2206
+ 'Symfony\\Component\\Translation\\DataCollector\\TranslationDataCollector' => $vendorDir . '/symfony/translation/DataCollector/TranslationDataCollector.php',
2207
+ 'Symfony\\Component\\Translation\\Dumper\\CsvFileDumper' => $vendorDir . '/symfony/translation/Dumper/CsvFileDumper.php',
2208
+ 'Symfony\\Component\\Translation\\Dumper\\DumperInterface' => $vendorDir . '/symfony/translation/Dumper/DumperInterface.php',
2209
+ 'Symfony\\Component\\Translation\\Dumper\\FileDumper' => $vendorDir . '/symfony/translation/Dumper/FileDumper.php',
2210
+ 'Symfony\\Component\\Translation\\Dumper\\IcuResFileDumper' => $vendorDir . '/symfony/translation/Dumper/IcuResFileDumper.php',
2211
+ 'Symfony\\Component\\Translation\\Dumper\\IniFileDumper' => $vendorDir . '/symfony/translation/Dumper/IniFileDumper.php',
2212
+ 'Symfony\\Component\\Translation\\Dumper\\JsonFileDumper' => $vendorDir . '/symfony/translation/Dumper/JsonFileDumper.php',
2213
+ 'Symfony\\Component\\Translation\\Dumper\\MoFileDumper' => $vendorDir . '/symfony/translation/Dumper/MoFileDumper.php',
2214
+ 'Symfony\\Component\\Translation\\Dumper\\PhpFileDumper' => $vendorDir . '/symfony/translation/Dumper/PhpFileDumper.php',
2215
+ 'Symfony\\Component\\Translation\\Dumper\\PoFileDumper' => $vendorDir . '/symfony/translation/Dumper/PoFileDumper.php',
2216
+ 'Symfony\\Component\\Translation\\Dumper\\QtFileDumper' => $vendorDir . '/symfony/translation/Dumper/QtFileDumper.php',
2217
+ 'Symfony\\Component\\Translation\\Dumper\\XliffFileDumper' => $vendorDir . '/symfony/translation/Dumper/XliffFileDumper.php',
2218
+ 'Symfony\\Component\\Translation\\Dumper\\YamlFileDumper' => $vendorDir . '/symfony/translation/Dumper/YamlFileDumper.php',
2219
+ 'Symfony\\Component\\Translation\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/translation/Exception/ExceptionInterface.php',
2220
+ 'Symfony\\Component\\Translation\\Exception\\InvalidArgumentException' => $vendorDir . '/symfony/translation/Exception/InvalidArgumentException.php',
2221
+ 'Symfony\\Component\\Translation\\Exception\\InvalidResourceException' => $vendorDir . '/symfony/translation/Exception/InvalidResourceException.php',
2222
+ 'Symfony\\Component\\Translation\\Exception\\LogicException' => $vendorDir . '/symfony/translation/Exception/LogicException.php',
2223
+ 'Symfony\\Component\\Translation\\Exception\\NotFoundResourceException' => $vendorDir . '/symfony/translation/Exception/NotFoundResourceException.php',
2224
+ 'Symfony\\Component\\Translation\\Exception\\RuntimeException' => $vendorDir . '/symfony/translation/Exception/RuntimeException.php',
2225
+ 'Symfony\\Component\\Translation\\Extractor\\AbstractFileExtractor' => $vendorDir . '/symfony/translation/Extractor/AbstractFileExtractor.php',
2226
+ 'Symfony\\Component\\Translation\\Extractor\\ChainExtractor' => $vendorDir . '/symfony/translation/Extractor/ChainExtractor.php',
2227
+ 'Symfony\\Component\\Translation\\Extractor\\ExtractorInterface' => $vendorDir . '/symfony/translation/Extractor/ExtractorInterface.php',
2228
+ 'Symfony\\Component\\Translation\\IdentityTranslator' => $vendorDir . '/symfony/translation/IdentityTranslator.php',
2229
+ 'Symfony\\Component\\Translation\\Interval' => $vendorDir . '/symfony/translation/Interval.php',
2230
+ 'Symfony\\Component\\Translation\\Loader\\ArrayLoader' => $vendorDir . '/symfony/translation/Loader/ArrayLoader.php',
2231
+ 'Symfony\\Component\\Translation\\Loader\\CsvFileLoader' => $vendorDir . '/symfony/translation/Loader/CsvFileLoader.php',
2232
+ 'Symfony\\Component\\Translation\\Loader\\FileLoader' => $vendorDir . '/symfony/translation/Loader/FileLoader.php',
2233
+ 'Symfony\\Component\\Translation\\Loader\\IcuDatFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuDatFileLoader.php',
2234
+ 'Symfony\\Component\\Translation\\Loader\\IcuResFileLoader' => $vendorDir . '/symfony/translation/Loader/IcuResFileLoader.php',
2235
+ 'Symfony\\Component\\Translation\\Loader\\IniFileLoader' => $vendorDir . '/symfony/translation/Loader/IniFileLoader.php',
2236
+ 'Symfony\\Component\\Translation\\Loader\\JsonFileLoader' => $vendorDir . '/symfony/translation/Loader/JsonFileLoader.php',
2237
+ 'Symfony\\Component\\Translation\\Loader\\LoaderInterface' => $vendorDir . '/symfony/translation/Loader/LoaderInterface.php',
2238
+ 'Symfony\\Component\\Translation\\Loader\\MoFileLoader' => $vendorDir . '/symfony/translation/Loader/MoFileLoader.php',
2239
+ 'Symfony\\Component\\Translation\\Loader\\PhpFileLoader' => $vendorDir . '/symfony/translation/Loader/PhpFileLoader.php',
2240
+ 'Symfony\\Component\\Translation\\Loader\\PoFileLoader' => $vendorDir . '/symfony/translation/Loader/PoFileLoader.php',
2241
+ 'Symfony\\Component\\Translation\\Loader\\QtFileLoader' => $vendorDir . '/symfony/translation/Loader/QtFileLoader.php',
2242
+ 'Symfony\\Component\\Translation\\Loader\\XliffFileLoader' => $vendorDir . '/symfony/translation/Loader/XliffFileLoader.php',
2243
+ 'Symfony\\Component\\Translation\\Loader\\YamlFileLoader' => $vendorDir . '/symfony/translation/Loader/YamlFileLoader.php',
2244
+ 'Symfony\\Component\\Translation\\LoggingTranslator' => $vendorDir . '/symfony/translation/LoggingTranslator.php',
2245
+ 'Symfony\\Component\\Translation\\MessageCatalogue' => $vendorDir . '/symfony/translation/MessageCatalogue.php',
2246
+ 'Symfony\\Component\\Translation\\MessageCatalogueInterface' => $vendorDir . '/symfony/translation/MessageCatalogueInterface.php',
2247
+ 'Symfony\\Component\\Translation\\MessageSelector' => $vendorDir . '/symfony/translation/MessageSelector.php',
2248
+ 'Symfony\\Component\\Translation\\MetadataAwareInterface' => $vendorDir . '/symfony/translation/MetadataAwareInterface.php',
2249
+ 'Symfony\\Component\\Translation\\PluralizationRules' => $vendorDir . '/symfony/translation/PluralizationRules.php',
2250
+ 'Symfony\\Component\\Translation\\Translator' => $vendorDir . '/symfony/translation/Translator.php',
2251
+ 'Symfony\\Component\\Translation\\TranslatorBagInterface' => $vendorDir . '/symfony/translation/TranslatorBagInterface.php',
2252
+ 'Symfony\\Component\\Translation\\TranslatorInterface' => $vendorDir . '/symfony/translation/TranslatorInterface.php',
2253
+ 'Symfony\\Component\\Translation\\Util\\ArrayConverter' => $vendorDir . '/symfony/translation/Util/ArrayConverter.php',
2254
+ 'Symfony\\Component\\Translation\\Writer\\TranslationWriter' => $vendorDir . '/symfony/translation/Writer/TranslationWriter.php',
2255
+ 'Symfony\\Component\\Yaml\\Command\\LintCommand' => $vendorDir . '/symfony/yaml/Command/LintCommand.php',
2256
+ 'Symfony\\Component\\Yaml\\Dumper' => $vendorDir . '/symfony/yaml/Dumper.php',
2257
+ 'Symfony\\Component\\Yaml\\Escaper' => $vendorDir . '/symfony/yaml/Escaper.php',
2258
+ 'Symfony\\Component\\Yaml\\Exception\\DumpException' => $vendorDir . '/symfony/yaml/Exception/DumpException.php',
2259
+ 'Symfony\\Component\\Yaml\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/yaml/Exception/ExceptionInterface.php',
2260
+ 'Symfony\\Component\\Yaml\\Exception\\ParseException' => $vendorDir . '/symfony/yaml/Exception/ParseException.php',
2261
+ 'Symfony\\Component\\Yaml\\Exception\\RuntimeException' => $vendorDir . '/symfony/yaml/Exception/RuntimeException.php',
2262
+ 'Symfony\\Component\\Yaml\\Inline' => $vendorDir . '/symfony/yaml/Inline.php',
2263
+ 'Symfony\\Component\\Yaml\\Parser' => $vendorDir . '/symfony/yaml/Parser.php',
2264
+ 'Symfony\\Component\\Yaml\\Tag\\TaggedValue' => $vendorDir . '/symfony/yaml/Tag/TaggedValue.php',
2265
+ 'Symfony\\Component\\Yaml\\Unescaper' => $vendorDir . '/symfony/yaml/Unescaper.php',
2266
+ 'Symfony\\Component\\Yaml\\Yaml' => $vendorDir . '/symfony/yaml/Yaml.php',
2267
+ 'Symfony\\Polyfill\\Mbstring\\Mbstring' => $vendorDir . '/symfony/polyfill-mbstring/Mbstring.php',
2268
+ 'Text_Template' => $vendorDir . '/phpunit/php-text-template/src/Template.php',
2269
+ 'TheSeer\\Tokenizer\\Exception' => $vendorDir . '/theseer/tokenizer/src/Exception.php',
2270
+ 'TheSeer\\Tokenizer\\NamespaceUri' => $vendorDir . '/theseer/tokenizer/src/NamespaceUri.php',
2271
+ 'TheSeer\\Tokenizer\\NamespaceUriException' => $vendorDir . '/theseer/tokenizer/src/NamespaceUriException.php',
2272
+ 'TheSeer\\Tokenizer\\Token' => $vendorDir . '/theseer/tokenizer/src/Token.php',
2273
+ 'TheSeer\\Tokenizer\\TokenCollection' => $vendorDir . '/theseer/tokenizer/src/TokenCollection.php',
2274
+ 'TheSeer\\Tokenizer\\TokenCollectionException' => $vendorDir . '/theseer/tokenizer/src/TokenCollectionException.php',
2275
+ 'TheSeer\\Tokenizer\\Tokenizer' => $vendorDir . '/theseer/tokenizer/src/Tokenizer.php',
2276
+ 'TheSeer\\Tokenizer\\XMLSerializer' => $vendorDir . '/theseer/tokenizer/src/XMLSerializer.php',
2277
+ 'WP_CLI' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli.php',
2278
+ 'WP_CLI\\AutoloadSplitter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/AutoloadSplitter.php',
2279
+ 'WP_CLI\\AutoloadSplitter\\AutoloadGenerator' => $vendorDir . '/wp-cli/autoload-splitter/src/AutoloadGenerator.php',
2280
+ 'WP_CLI\\AutoloadSplitter\\ComposerPlugin' => $vendorDir . '/wp-cli/autoload-splitter/src/ComposerPlugin.php',
2281
+ 'WP_CLI\\Autoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Autoloader.php',
2282
+ 'WP_CLI\\Bootstrap\\AutoloaderStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/AutoloaderStep.php',
2283
+ 'WP_CLI\\Bootstrap\\BootstrapState' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapState.php',
2284
+ 'WP_CLI\\Bootstrap\\BootstrapStep' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/BootstrapStep.php',
2285
+ 'WP_CLI\\Bootstrap\\ConfigureRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/ConfigureRunner.php',
2286
+ 'WP_CLI\\Bootstrap\\DeclareAbstractBaseCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareAbstractBaseCommand.php',
2287
+ 'WP_CLI\\Bootstrap\\DeclareMainClass' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DeclareMainClass.php',
2288
+ 'WP_CLI\\Bootstrap\\DefineProtectedCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/DefineProtectedCommands.php',
2289
+ 'WP_CLI\\Bootstrap\\IncludeBundledAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeBundledAutoloader.php',
2290
+ 'WP_CLI\\Bootstrap\\IncludeFallbackAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFallbackAutoloader.php',
2291
+ 'WP_CLI\\Bootstrap\\IncludeFrameworkAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludeFrameworkAutoloader.php',
2292
+ 'WP_CLI\\Bootstrap\\IncludePackageAutoloader' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/IncludePackageAutoloader.php',
2293
+ 'WP_CLI\\Bootstrap\\InitializeColorization' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeColorization.php',
2294
+ 'WP_CLI\\Bootstrap\\InitializeLogger' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/InitializeLogger.php',
2295
+ 'WP_CLI\\Bootstrap\\LaunchRunner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LaunchRunner.php',
2296
+ 'WP_CLI\\Bootstrap\\LoadDispatcher' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadDispatcher.php',
2297
+ 'WP_CLI\\Bootstrap\\LoadRequiredCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadRequiredCommand.php',
2298
+ 'WP_CLI\\Bootstrap\\LoadUtilityFunctions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/LoadUtilityFunctions.php',
2299
+ 'WP_CLI\\Bootstrap\\RegisterDeferredCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterDeferredCommands.php',
2300
+ 'WP_CLI\\Bootstrap\\RegisterFrameworkCommands' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RegisterFrameworkCommands.php',
2301
+ 'WP_CLI\\Bootstrap\\RunnerInstance' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Bootstrap/RunnerInstance.php',
2302
+ 'WP_CLI\\Completions' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Completions.php',
2303
+ 'WP_CLI\\ComposerIO' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ComposerIO.php',
2304
+ 'WP_CLI\\Configurator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Configurator.php',
2305
+ 'WP_CLI\\Dispatcher\\CommandAddition' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandAddition.php',
2306
+ 'WP_CLI\\Dispatcher\\CommandFactory' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CommandFactory.php',
2307
+ 'WP_CLI\\Dispatcher\\CompositeCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/CompositeCommand.php',
2308
+ 'WP_CLI\\Dispatcher\\RootCommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/RootCommand.php',
2309
+ 'WP_CLI\\Dispatcher\\Subcommand' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Dispatcher/Subcommand.php',
2310
+ 'WP_CLI\\DocParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/DocParser.php',
2311
+ 'WP_CLI\\ExitException' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ExitException.php',
2312
+ 'WP_CLI\\Extractor' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Extractor.php',
2313
+ 'WP_CLI\\Fetchers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Fetchers/Base.php',
2314
+ 'WP_CLI\\FileCache' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/FileCache.php',
2315
+ 'WP_CLI\\Formatter' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Formatter.php',
2316
+ 'WP_CLI\\Iterators\\CSV' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/CSV.php',
2317
+ 'WP_CLI\\Iterators\\Exception' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Exception.php',
2318
+ 'WP_CLI\\Iterators\\Query' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Query.php',
2319
+ 'WP_CLI\\Iterators\\Table' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Table.php',
2320
+ 'WP_CLI\\Iterators\\Transform' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Iterators/Transform.php',
2321
+ 'WP_CLI\\Loggers\\Base' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Base.php',
2322
+ 'WP_CLI\\Loggers\\Execution' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Execution.php',
2323
+ 'WP_CLI\\Loggers\\Quiet' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Quiet.php',
2324
+ 'WP_CLI\\Loggers\\Regular' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Loggers/Regular.php',
2325
+ 'WP_CLI\\NoOp' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/NoOp.php',
2326
+ 'WP_CLI\\PackageManagerEventSubscriber' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/PackageManagerEventSubscriber.php',
2327
+ 'WP_CLI\\Process' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Process.php',
2328
+ 'WP_CLI\\ProcessRun' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/ProcessRun.php',
2329
+ 'WP_CLI\\Runner' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/Runner.php',
2330
+ 'WP_CLI\\SynopsisParser' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisParser.php',
2331
+ 'WP_CLI\\SynopsisValidator' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/SynopsisValidator.php',
2332
+ 'WP_CLI\\UpgraderSkin' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/UpgraderSkin.php',
2333
+ 'WP_CLI\\WpHttpCacheManager' => $vendorDir . '/wp-cli/wp-cli/php/WP_CLI/WpHttpCacheManager.php',
2334
+ 'WP_CLI_Command' => $vendorDir . '/wp-cli/wp-cli/php/class-wp-cli-command.php',
2335
+ 'Webmozart\\Assert\\Assert' => $vendorDir . '/webmozart/assert/src/Assert.php',
2336
+ 'cli\\Arguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Arguments.php',
2337
+ 'cli\\Colors' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Colors.php',
2338
+ 'cli\\Memoize' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Memoize.php',
2339
+ 'cli\\Notify' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Notify.php',
2340
+ 'cli\\Progress' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Progress.php',
2341
+ 'cli\\Shell' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Shell.php',
2342
+ 'cli\\Streams' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Streams.php',
2343
+ 'cli\\Table' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Table.php',
2344
+ 'cli\\Tree' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/Tree.php',
2345
+ 'cli\\arguments\\Argument' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Argument.php',
2346
+ 'cli\\arguments\\HelpScreen' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/HelpScreen.php',
2347
+ 'cli\\arguments\\InvalidArguments' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/InvalidArguments.php',
2348
+ 'cli\\arguments\\Lexer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/arguments/Lexer.php',
2349
+ 'cli\\notify\\Dots' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Dots.php',
2350
+ 'cli\\notify\\Spinner' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/notify/Spinner.php',
2351
+ 'cli\\progress\\Bar' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/progress/Bar.php',
2352
+ 'cli\\table\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Ascii.php',
2353
+ 'cli\\table\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Renderer.php',
2354
+ 'cli\\table\\Tabular' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/table/Tabular.php',
2355
+ 'cli\\tree\\Ascii' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Ascii.php',
2356
+ 'cli\\tree\\Markdown' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Markdown.php',
2357
+ 'cli\\tree\\Renderer' => $vendorDir . '/wp-cli/php-cli-tools/lib/cli/tree/Renderer.php',
2358
+ 'phpDocumentor\\Reflection\\DocBlock' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock.php',
2359
+ 'phpDocumentor\\Reflection\\DocBlockFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactory.php',
2360
+ 'phpDocumentor\\Reflection\\DocBlockFactoryInterface' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlockFactoryInterface.php',
2361
+ 'phpDocumentor\\Reflection\\DocBlock\\Description' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Description.php',
2362
+ 'phpDocumentor\\Reflection\\DocBlock\\DescriptionFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/DescriptionFactory.php',
2363
+ 'phpDocumentor\\Reflection\\DocBlock\\Serializer' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Serializer.php',
2364
+ 'phpDocumentor\\Reflection\\DocBlock\\StandardTagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/StandardTagFactory.php',
2365
+ 'phpDocumentor\\Reflection\\DocBlock\\Tag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tag.php',
2366
+ 'phpDocumentor\\Reflection\\DocBlock\\TagFactory' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/TagFactory.php',
2367
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Author' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Author.php',
2368
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\BaseTag' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/BaseTag.php',
2369
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Covers' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Covers.php',
2370
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Deprecated' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Deprecated.php',
2371
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Example' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Example.php',
2372
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\StaticMethod' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/StaticMethod.php',
2373
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Factory\\Strategy' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Factory/Strategy.php',
2374
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter.php',
2375
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Formatter\\PassthroughFormatter' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Formatter/PassthroughFormatter.php',
2376
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Generic' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Generic.php',
2377
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Link' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Link.php',
2378
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Method' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Method.php',
2379
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Param' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Param.php',
2380
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Property' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Property.php',
2381
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyRead' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyRead.php',
2382
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\PropertyWrite' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/PropertyWrite.php',
2383
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Return_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Return_.php',
2384
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\See' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/See.php',
2385
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Since' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Since.php',
2386
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Source' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Source.php',
2387
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Throws' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Throws.php',
2388
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Uses' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Uses.php',
2389
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Var_' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Var_.php',
2390
+ 'phpDocumentor\\Reflection\\DocBlock\\Tags\\Version' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/Tags/Version.php',
2391
+ 'phpDocumentor\\Reflection\\Element' => $vendorDir . '/phpdocumentor/reflection-common/src/Element.php',
2392
+ 'phpDocumentor\\Reflection\\ExampleFinder' => $vendorDir . '/phpdocumentor/reflection-docblock/src/DocBlock/ExampleFinder.php',
2393
+ 'phpDocumentor\\Reflection\\File' => $vendorDir . '/phpdocumentor/reflection-common/src/File.php',
2394
+ 'phpDocumentor\\Reflection\\Fqsen' => $vendorDir . '/phpdocumentor/reflection-common/src/Fqsen.php',
2395
+ 'phpDocumentor\\Reflection\\FqsenResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/FqsenResolver.php',
2396
+ 'phpDocumentor\\Reflection\\Location' => $vendorDir . '/phpdocumentor/reflection-common/src/Location.php',
2397
+ 'phpDocumentor\\Reflection\\Project' => $vendorDir . '/phpdocumentor/reflection-common/src/Project.php',
2398
+ 'phpDocumentor\\Reflection\\ProjectFactory' => $vendorDir . '/phpdocumentor/reflection-common/src/ProjectFactory.php',
2399
+ 'phpDocumentor\\Reflection\\Type' => $vendorDir . '/phpdocumentor/type-resolver/src/Type.php',
2400
+ 'phpDocumentor\\Reflection\\TypeResolver' => $vendorDir . '/phpdocumentor/type-resolver/src/TypeResolver.php',
2401
+ 'phpDocumentor\\Reflection\\Types\\Array_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Array_.php',
2402
+ 'phpDocumentor\\Reflection\\Types\\Boolean' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Boolean.php',
2403
+ 'phpDocumentor\\Reflection\\Types\\Callable_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Callable_.php',
2404
+ 'phpDocumentor\\Reflection\\Types\\Compound' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Compound.php',
2405
+ 'phpDocumentor\\Reflection\\Types\\Context' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Context.php',
2406
+ 'phpDocumentor\\Reflection\\Types\\ContextFactory' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/ContextFactory.php',
2407
+ 'phpDocumentor\\Reflection\\Types\\Float_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Float_.php',
2408
+ 'phpDocumentor\\Reflection\\Types\\Integer' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Integer.php',
2409
+ 'phpDocumentor\\Reflection\\Types\\Mixed' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Mixed.php',
2410
+ 'phpDocumentor\\Reflection\\Types\\Null_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Null_.php',
2411
+ 'phpDocumentor\\Reflection\\Types\\Object_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Object_.php',
2412
+ 'phpDocumentor\\Reflection\\Types\\Resource' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Resource.php',
2413
+ 'phpDocumentor\\Reflection\\Types\\Scalar' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Scalar.php',
2414
+ 'phpDocumentor\\Reflection\\Types\\Self_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Self_.php',
2415
+ 'phpDocumentor\\Reflection\\Types\\Static_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Static_.php',
2416
+ 'phpDocumentor\\Reflection\\Types\\String_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/String_.php',
2417
+ 'phpDocumentor\\Reflection\\Types\\This' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/This.php',
2418
+ 'phpDocumentor\\Reflection\\Types\\Void_' => $vendorDir . '/phpdocumentor/type-resolver/src/Types/Void_.php',
2419
+ 'tad\\Codeception\\Command\\BaseCommand' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/BaseCommand.php',
2420
+ 'tad\\Codeception\\Command\\Helpers\\YamlHasher' => $vendorDir . '/lucatume/codeception-setup-local/src/Helpers/YamlHasher.php',
2421
+ 'tad\\Codeception\\Command\\Helpers\\YamlHasherInterface' => $vendorDir . '/lucatume/codeception-setup-local/src/Helpers/YamlHasherInterface.php',
2422
+ 'tad\\Codeception\\Command\\SearchReplace' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SearchReplace.php',
2423
+ 'tad\\Codeception\\Command\\Setup' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/Setup.php',
2424
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\AbstractInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/AbstractInstruction.php',
2425
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\BreakInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/BreakInstruction.php',
2426
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\CommandInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/CommandInstruction.php',
2427
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\ExecInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/ExecInstruction.php',
2428
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\InstructionInterface' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/InstructionInterface.php',
2429
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\MessageInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/MessageInstruction.php',
2430
+ 'tad\\Codeception\\Command\\SetupLocal\\Instructions\\VarInstruction' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupLocal/Instructions/VarInstruction.php',
2431
+ 'tad\\Codeception\\Command\\SetupScaffold' => $vendorDir . '/lucatume/codeception-setup-local/src/Command/SetupScaffold.php',
2432
+ 'tad\\WPBrowser\\Adapters\\WP' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Adapters/WP.php',
2433
+ 'tad\\WPBrowser\\Connector\\WordPress' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Connector/WordPress.php',
2434
+ 'tad\\WPBrowser\\Environment\\Constants' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Constants.php',
2435
+ 'tad\\WPBrowser\\Environment\\Executor' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/Executor.php',
2436
+ 'tad\\WPBrowser\\Environment\\System' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Environment/System.php',
2437
+ 'tad\\WPBrowser\\Extension\\Copier' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Copier.php',
2438
+ 'tad\\WPBrowser\\Extension\\Symlinker' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Extension/Symlinker.php',
2439
+ 'tad\\WPBrowser\\Filesystem\\FileReplacers\\AbstractFileReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/AbstractFileReplacer.php',
2440
+ 'tad\\WPBrowser\\Filesystem\\FileReplacers\\HtaccesReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/HtaccesReplacer.php',
2441
+ 'tad\\WPBrowser\\Filesystem\\FileReplacers\\WPConfigReplacer' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/FileReplacers/WPConfigReplacer.php',
2442
+ 'tad\\WPBrowser\\Filesystem\\Filesystem' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Filesystem.php',
2443
+ 'tad\\WPBrowser\\Filesystem\\Utils' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Filesystem/Utils.php',
2444
+ 'tad\\WPBrowser\\Generators\\Blog' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Blog.php',
2445
+ 'tad\\WPBrowser\\Generators\\Comment' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Comment.php',
2446
+ 'tad\\WPBrowser\\Generators\\Date' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Date.php',
2447
+ 'tad\\WPBrowser\\Generators\\Links' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Links.php',
2448
+ 'tad\\WPBrowser\\Generators\\Post' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Post.php',
2449
+ 'tad\\WPBrowser\\Generators\\RedirectingWPConfig' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/RedirectingWPConfig.php',
2450
+ 'tad\\WPBrowser\\Generators\\SubdomainHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubdomainHtaccess.php',
2451
+ 'tad\\WPBrowser\\Generators\\SubfolderHtaccess' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/SubfolderHtaccess.php',
2452
+ 'tad\\WPBrowser\\Generators\\Tables' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/Tables.php',
2453
+ 'tad\\WPBrowser\\Generators\\TemplateProviderInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/TemplateProviderInterface.php',
2454
+ 'tad\\WPBrowser\\Generators\\User' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User.php',
2455
+ 'tad\\WPBrowser\\Generators\\User\\Roles' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/User/Roles.php',
2456
+ 'tad\\WPBrowser\\Generators\\WpPassword' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Generators/WpPassword.php',
2457
+ 'tad\\WPBrowser\\Iterators\\Filters\\ActionsQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ActionsQueriesFilter.php',
2458
+ 'tad\\WPBrowser\\Iterators\\Filters\\ClassMethodQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/ClassMethodQueriesFilter.php',
2459
+ 'tad\\WPBrowser\\Iterators\\Filters\\FactoryQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FactoryQueriesFilter.php',
2460
+ 'tad\\WPBrowser\\Iterators\\Filters\\FiltersQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FiltersQueriesFilter.php',
2461
+ 'tad\\WPBrowser\\Iterators\\Filters\\FunctionQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/FunctionQueriesFilter.php',
2462
+ 'tad\\WPBrowser\\Iterators\\Filters\\MainStatementQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/MainStatementQueriesFilter.php',
2463
+ 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedFilterIterator.php',
2464
+ 'tad\\WPBrowser\\Iterators\\Filters\\QueriesCallerBasedKeepingFilterIterator' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/QueriesCallerBasedKeepingFilterIterator.php',
2465
+ 'tad\\WPBrowser\\Iterators\\Filters\\SetupTearDownQueriesFilter' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Iterators/Filters/SetupTearDownQueriesFilter.php',
2466
+ 'tad\\WPBrowser\\Module\\Support\\UriToIndexMapper' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/Support/UriToIndexMapper.php',
2467
+ 'tad\\WPBrowser\\Module\\WPLoader\\FactoryStore' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Module/WPLoader/FactoryStore.php',
2468
+ 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactory' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactory.php',
2469
+ 'tad\\WPBrowser\\Services\\Db\\MySQLDumpFactoryInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpFactoryInterface.php',
2470
+ 'tad\\WPBrowser\\Services\\Db\\MySQLDumpInterface' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/Db/MySQLDumpInterface.php',
2471
+ 'tad\\WPBrowser\\Services\\WP\\Bootstrapper' => $vendorDir . '/lucatume/wp-browser-commons/src/tad/WPBrowser/Services/WP/Bootstrapper.php',
2472
+ 'tad\\WPBrowser\\Template\\Data' => $vendorDir . '/lucatume/wp-browser/src/tad/WPBrowser/Template/Data.php',
2473
+ );
vendor/composer/autoload_framework_real.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // autoload_framework_real.php @generated by Composer
4
+
5
+ class ComposerAutoloaderInit8a8d6394d3ecdc487d7f24364cd1b9cc
6
+ {
7
+ private static $loader;
8
+
9
+ public static function loadClassLoader($class)
10
+ {
11
+ if ('Composer\Autoload\ClassLoader' === $class) {
12
+ require __DIR__ . '/ClassLoader.php';
13
+ }
14
+ }
15
+
16
+ public static function getLoader()
17
+ {
18
+ if (null !== self::$loader) {
19
+ return self::$loader;
20
+ }
21
+
22
+ spl_autoload_register(array('ComposerAutoloaderInit8a8d6394d3ecdc487d7f24364cd1b9cc', 'loadClassLoader'), true, true);
23
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
+ spl_autoload_unregister(array('ComposerAutoloaderInit8a8d6394d3ecdc487d7f24364cd1b9cc', 'loadClassLoader'));
25
+
26
+ $classMap = require __DIR__ . '/autoload_framework_classmap.php';
27
+ if ($classMap) {
28
+ $loader->addClassMap($classMap);
29
+ }
30
+ $loader->register(true);
31
+
32
+ return $loader;
33
+ }
34
+ }
vendor/composer/autoload_psr4.php CHANGED
@@ -6,6 +6,7 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
9
  'Italy_Cookie_Choices\\Core\\' => array($baseDir . '/core'),
10
  'Italy_Cookie_Choices\\Admin\\' => array($baseDir . '/admin'),
11
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Overclokk\\Cookie\\' => array($vendorDir . '/overclokk/cookie/src'),
10
  'Italy_Cookie_Choices\\Core\\' => array($baseDir . '/core'),
11
  'Italy_Cookie_Choices\\Admin\\' => array($baseDir . '/admin'),
12
  );
vendor/composer/autoload_real.php CHANGED
@@ -13,19 +13,24 @@ class ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70
13
  }
14
  }
15
 
 
 
 
16
  public static function getLoader()
17
  {
18
  if (null !== self::$loader) {
19
  return self::$loader;
20
  }
21
 
 
 
22
  spl_autoload_register(array('ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70', 'loadClassLoader'), true, true);
23
- self::$loader = $loader = new \Composer\Autoload\ClassLoader();
24
  spl_autoload_unregister(array('ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70', 'loadClassLoader'));
25
 
26
- $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION');
27
  if ($useStaticLoader) {
28
- require_once __DIR__ . '/autoload_static.php';
29
 
30
  call_user_func(\Composer\Autoload\ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::getInitializer($loader));
31
  } else {
13
  }
14
  }
15
 
16
+ /**
17
+ * @return \Composer\Autoload\ClassLoader
18
+ */
19
  public static function getLoader()
20
  {
21
  if (null !== self::$loader) {
22
  return self::$loader;
23
  }
24
 
25
+ require __DIR__ . '/platform_check.php';
26
+
27
  spl_autoload_register(array('ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70', 'loadClassLoader'), true, true);
28
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
29
  spl_autoload_unregister(array('ComposerAutoloaderInitec597b0e5e5ebb90729915bd317b0a70', 'loadClassLoader'));
30
 
31
+ $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
32
  if ($useStaticLoader) {
33
+ require __DIR__ . '/autoload_static.php';
34
 
35
  call_user_func(\Composer\Autoload\ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::getInitializer($loader));
36
  } else {
vendor/composer/autoload_static.php CHANGED
@@ -7,6 +7,10 @@ namespace Composer\Autoload;
7
  class ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70
8
  {
9
  public static $prefixLengthsPsr4 = array (
 
 
 
 
10
  'I' =>
11
  array (
12
  'Italy_Cookie_Choices\\Core\\' => 26,
@@ -15,6 +19,10 @@ class ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70
15
  );
16
 
17
  public static $prefixDirsPsr4 = array (
 
 
 
 
18
  'Italy_Cookie_Choices\\Core\\' =>
19
  array (
20
  0 => __DIR__ . '/../..' . '/core',
@@ -25,11 +33,16 @@ class ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70
25
  ),
26
  );
27
 
 
 
 
 
28
  public static function getInitializer(ClassLoader $loader)
29
  {
30
  return \Closure::bind(function () use ($loader) {
31
  $loader->prefixLengthsPsr4 = ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::$prefixLengthsPsr4;
32
  $loader->prefixDirsPsr4 = ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::$prefixDirsPsr4;
 
33
 
34
  }, null, ClassLoader::class);
35
  }
7
  class ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70
8
  {
9
  public static $prefixLengthsPsr4 = array (
10
+ 'O' =>
11
+ array (
12
+ 'Overclokk\\Cookie\\' => 17,
13
+ ),
14
  'I' =>
15
  array (
16
  'Italy_Cookie_Choices\\Core\\' => 26,
19
  );
20
 
21
  public static $prefixDirsPsr4 = array (
22
+ 'Overclokk\\Cookie\\' =>
23
+ array (
24
+ 0 => __DIR__ . '/..' . '/overclokk/cookie/src',
25
+ ),
26
  'Italy_Cookie_Choices\\Core\\' =>
27
  array (
28
  0 => __DIR__ . '/../..' . '/core',
33
  ),
34
  );
35
 
36
+ public static $classMap = array (
37
+ 'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
38
+ );
39
+
40
  public static function getInitializer(ClassLoader $loader)
41
  {
42
  return \Closure::bind(function () use ($loader) {
43
  $loader->prefixLengthsPsr4 = ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::$prefixLengthsPsr4;
44
  $loader->prefixDirsPsr4 = ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::$prefixDirsPsr4;
45
+ $loader->classMap = ComposerStaticInitec597b0e5e5ebb90729915bd317b0a70::$classMap;
46
 
47
  }, null, ClassLoader::class);
48
  }
vendor/composer/installed.json DELETED
@@ -1,47 +0,0 @@
1
- [
2
- {
3
- "name": "overclokk/minimum-requirements",
4
- "version": "dev-master",
5
- "version_normalized": "9999999-dev",
6
- "source": {
7
- "type": "git",
8
- "url": "https://github.com/overclokk/minimum-requirements.git",
9
- "reference": "91ede8e75c28e4037a69c3001052150b53bad23f"
10
- },
11
- "dist": {
12
- "type": "zip",
13
- "url": "https://api.github.com/repos/overclokk/minimum-requirements/zipball/91ede8e75c28e4037a69c3001052150b53bad23f",
14
- "reference": "91ede8e75c28e4037a69c3001052150b53bad23f",
15
- "shasum": ""
16
- },
17
- "require": {
18
- "php": ">=5.2"
19
- },
20
- "require-dev": {
21
- "lucatume/function-mocker": "^1.0",
22
- "lucatume/wp-browser": "^1.10"
23
- },
24
- "time": "2016-03-21 09:12:00",
25
- "type": "wordpress-plugin",
26
- "installation-source": "source",
27
- "notification-url": "https://packagist.org/downloads/",
28
- "license": [
29
- "GPL-2.0+"
30
- ],
31
- "authors": [
32
- {
33
- "name": "overclokk",
34
- "email": "info@overclokk.net",
35
- "homepage": "http://www.overclokk.net",
36
- "role": "Developer"
37
- }
38
- ],
39
- "description": "Check the minimum requirements for your WordPress theme or plugin",
40
- "homepage": "https://github.com/overclokk/minimum-requirements",
41
- "keywords": [
42
- "plugin",
43
- "wordpress",
44
- "wordpress plugin"
45
- ]
46
- }
47
- ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/composer/installed.php ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php return array(
2
+ 'root' => array(
3
+ 'pretty_version' => 'dev-master',
4
+ 'version' => 'dev-master',
5
+ 'type' => 'wordpress-plugin',
6
+ 'install_path' => __DIR__ . '/../../',
7
+ 'aliases' => array(),
8
+ 'reference' => 'cbe3aa4b8a1b6f7c991e080709dc26df88d49eb0',
9
+ 'name' => 'italycookiechoices/italy-cookie-choices',
10
+ 'dev' => false,
11
+ ),
12
+ 'versions' => array(
13
+ 'italycookiechoices/italy-cookie-choices' => array(
14
+ 'pretty_version' => 'dev-master',
15
+ 'version' => 'dev-master',
16
+ 'type' => 'wordpress-plugin',
17
+ 'install_path' => __DIR__ . '/../../',
18
+ 'aliases' => array(),
19
+ 'reference' => 'cbe3aa4b8a1b6f7c991e080709dc26df88d49eb0',
20
+ 'dev_requirement' => false,
21
+ ),
22
+ 'overclokk/cookie' => array(
23
+ 'pretty_version' => 'v1.0.2',
24
+ 'version' => '1.0.2.0',
25
+ 'type' => 'library',
26
+ 'install_path' => __DIR__ . '/../overclokk/cookie',
27
+ 'aliases' => array(),
28
+ 'reference' => 'd546068cb4042d35ca121ae50996d536c641f8e3',
29
+ 'dev_requirement' => false,
30
+ ),
31
+ 'overclokk/minimum-requirements' => array(
32
+ 'pretty_version' => 'dev-master',
33
+ 'version' => 'dev-master',
34
+ 'type' => 'wordpress-plugin',
35
+ 'install_path' => __DIR__ . '/../overclokk/minimum-requirements',
36
+ 'aliases' => array(
37
+ 0 => '9999999-dev',
38
+ ),
39
+ 'reference' => 'aa2d35381209d8dbc4632e2f30c9ef5614feef00',
40
+ 'dev_requirement' => false,
41
+ ),
42
+ ),
43
+ );
vendor/composer/platform_check.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ // platform_check.php @generated by Composer
4
+
5
+ $issues = array();
6
+
7
+ if (!(PHP_VERSION_ID >= 50300)) {
8
+ $issues[] = 'Your Composer dependencies require a PHP version ">= 5.3.0". You are running ' . PHP_VERSION . '.';
9
+ }
10
+
11
+ if ($issues) {
12
+ if (!headers_sent()) {
13
+ header('HTTP/1.1 500 Internal Server Error');
14
+ }
15
+ if (!ini_get('display_errors')) {
16
+ if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
17
+ fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
18
+ } elseif (!headers_sent()) {
19
+ echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
20
+ }
21
+ }
22
+ trigger_error(
23
+ 'Composer detected issues in your platform: ' . implode(' ', $issues),
24
+ E_USER_ERROR
25
+ );
26
+ }
vendor/overclokk/cookie/LICENSE.md ADDED
@@ -0,0 +1,339 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc., <http://fsf.org/>
5
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Lesser General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ {description}
294
+ Copyright (C) {year} {fullname}
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License along
307
+ with this program; if not, write to the Free Software Foundation, Inc.,
308
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
309
+
310
+ Also add information on how to contact you by electronic and paper mail.
311
+
312
+ If the program is interactive, make it output a short notice like this
313
+ when it starts in an interactive mode:
314
+
315
+ Gnomovision version 69, Copyright (C) year name of author
316
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
317
+ This is free software, and you are welcome to redistribute it
318
+ under certain conditions; type `show c' for details.
319
+
320
+ The hypothetical commands `show w' and `show c' should show the appropriate
321
+ parts of the General Public License. Of course, the commands you use may
322
+ be called something other than `show w' and `show c'; they could even be
323
+ mouse-clicks or menu items--whatever suits your program.
324
+
325
+ You should also get your employer (if you work as a programmer) or your
326
+ school, if any, to sign a "copyright disclaimer" for the program, if
327
+ necessary. Here is a sample; alter the names:
328
+
329
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
330
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
331
+
332
+ {signature of Ty Coon}, 1 April 1989
333
+ Ty Coon, President of Vice
334
+
335
+ This General Public License does not permit incorporating your program into
336
+ proprietary programs. If your program is a subroutine library, you may
337
+ consider it more useful to permit linking proprietary applications with the
338
+ library. If this is what you want to do, use the GNU Lesser General
339
+ Public License instead of this License.
vendor/overclokk/cookie/cookie.php ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Plugin Name: Cookie
4
+ * Description: Light and simple Cookie Manager API Class
5
+ * Plugin URI: http://www.overclokk.net
6
+ * Author: Enea Overclokk
7
+ * Author URI: http://www.overclokk.net
8
+ * Version: 1.0.2
9
+ * License: GPL-2.0+
10
+ * Text Domain: cookie
11
+ * Domain Path: cookie
12
+ */
13
+
14
+ /*
15
+
16
+ Copyright (C) 2017 Enea Overclokk info@overclokk.net
17
+
18
+ This program is free software; you can redistribute it and/or modify
19
+ it under the terms of the GNU General Public License, version 2, as
20
+ published by the Free Software Foundation.
21
+
22
+ This program is distributed in the hope that it will be useful,
23
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
24
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25
+ GNU General Public License for more details.
26
+
27
+ You should have received a copy of the GNU General Public License
28
+ along with this program; if not, write to the Free Software
29
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30
+ */
31
+
32
+ /**
33
+ * This file does nothing, the only purpose is to test in a WordPress enviroment, load it with composer in your project instead.
34
+ */
35
+ // require( __DIR__ . '/src/Cookie.php' );
36
+ // require( __DIR__ . '/src/Cookie_Interface.php' );
37
+
38
+ require( __DIR__ . '/vendor/autoload.php' );
39
+
40
+ $cookie = new \Overclokk\Cookie\Cookie( $_COOKIE );
41
+
42
+ $cookie_name = 'cookie_name';
43
+
44
+ $cookie_value = $cookie->get( $cookie_name );
45
+
46
+ var_dump( $cookie_value === $_COOKIE[ $cookie_name ] );
vendor/overclokk/cookie/readme.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Cookie Class API
2
+
3
+ [![GitHub release](https://img.shields.io/github/release/overclokk/cookie.svg)]()
4
+ [![License](https://img.shields.io/packagist/l/overclokk/cookie.svg)]()
5
+ [![Total Downloads](https://img.shields.io/packagist/dt/overclokk/cookie.svg)](https://packagist.org/packages/overclokk/cookie)
6
+
7
+ ### A simple and light php class for Cookie!
8
+
9
+ Get and set cookies in PHP with ease.
10
+
11
+ PHP >= 5.3
12
+
13
+ ## Installation
14
+
15
+ Install this package through Composer:
16
+
17
+ composer require overclokk/cookie
18
+
19
+ ## PHP Implementation
20
+
21
+ Autoload the vendor classes:
22
+
23
+ ```php
24
+ require_once 'vendor/autoload.php'; // Path may vary
25
+ ```
26
+
27
+ And then use the `Cookie` implementation:
28
+
29
+ ```php
30
+ $cookie = new \Overclokk\Cookie\Cookie();
31
+ ```
32
+ or
33
+ ```php
34
+ $cookie = new \Overclokk\Cookie\Cookie( $_COOKIE );
35
+ ```
36
+
37
+
38
+ ## Usage
39
+
40
+ ### Get a cookie
41
+
42
+ This will return `null` if the cookie doesn't exist or is expired.
43
+
44
+ ```php
45
+ $cookie_value = $cookie->get( 'cookie_name' );
46
+ ```
47
+
48
+ ### Store a cookie for a limited time
49
+
50
+ If you don't specify `$minutes`, a default of 0 will be used.
51
+
52
+ ```php
53
+ $minutes = 120 * 60;
54
+ $cookie->set( 'cookie_name', 'cookie_value', $minutes );
55
+ ```
56
+
57
+ ### Set a cookie forever
58
+
59
+ ```php
60
+ $cookie->forever( 'cookie_name', 'cookie_value' );
61
+ ```
62
+
63
+ ### Delete a cookie
64
+
65
+ If the cookie doesn't exist, nothing will happen...
66
+
67
+ ```php
68
+ $cookie->delete('cookie_name');
69
+ ```
vendor/overclokk/cookie/src/Cookie.php ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Cookie Manager API
4
+ *
5
+ * This is a simple and light cookie manager class
6
+ *
7
+ * @link http://php.net/manual/en/function.setcookie.php
8
+ *
9
+ * @link www.overclokk,net
10
+ * @since 1.0.0
11
+ *
12
+ * @version 1.0.1
13
+ *
14
+ * @package Overclokk\Cookie
15
+ */
16
+
17
+ namespace Overclokk\Cookie;
18
+
19
+ /**
20
+ * Cookie API
21
+ */
22
+ class Cookie implements Cookie_Interface {
23
+
24
+ /**
25
+ * $_COOKIE global variable
26
+ *
27
+ * @var array
28
+ */
29
+ private $cookie = array();
30
+
31
+ /**
32
+ * Init class
33
+ *
34
+ * @param array $cookie $_COOKIE global variable.
35
+ */
36
+ public function __construct( array $cookie = array() ) {
37
+ $this->cookie = empty( $cookie ) ? $_COOKIE : $cookie;
38
+ }
39
+
40
+ /**
41
+ * Get the value of a cookie
42
+ *
43
+ * @param string $name The cookie name.
44
+ *
45
+ * @return null|string Return the cookie value
46
+ */
47
+ public function get( $name ) {
48
+
49
+ if ( ! isset( $this->cookie[ $name ] ) ) { // Input var okay.
50
+ return null;
51
+ }
52
+
53
+ return strip_tags( stripslashes( $this->cookie[ $name ] ) ); // Input var okay.
54
+ }
55
+
56
+ /**
57
+ * Set cookie
58
+ *
59
+ * @param string $name The cookie name.
60
+ * @param string $value The cookie value.
61
+ * @param int $expire Expiration time in seconds.
62
+ * @param string $path The path on the server in which the cookie will be available on.
63
+ * If set to '/', the cookie will be available within the
64
+ * entire domain. If set to '/foo/', the cookie will only be
65
+ * available within the /foo/ directory and all sub-directories
66
+ * such as /foo/bar/ of domain. The default value is the current
67
+ * directory that the cookie is being set in.
68
+ * @param string $domain The (sub)domain that the cookie is available to.
69
+ * @param bool $secure Indicates that the cookie should only be transmitted over
70
+ * a secure HTTPS connection from the client.
71
+ * @param bool $httponly When TRUE the cookie will be made accessible only through
72
+ * the HTTP protocol.
73
+ *
74
+ * @return bool If output exists prior to calling this function, setcookie()
75
+ * will fail and return FALSE. If setcookie() successfully runs,
76
+ * it will return TRUE. This does not indicate whether the
77
+ * user accepted the cookie.
78
+ */
79
+ public function set( $name, $value, $expire = 0, $path = null, $domain = null, $secure = null, $httponly = null ) {
80
+
81
+ return setcookie(
82
+ $name,
83
+ $value,
84
+ $this->calculate_expiration_time( $expire ),
85
+ $path,
86
+ $domain,
87
+ $secure,
88
+ $httponly
89
+ );
90
+ }
91
+
92
+ /**
93
+ * Store a cookie for a long, long time.
94
+ *
95
+ * @author https://github.com/codezero-be
96
+ *
97
+ * @param string $name The cookie name.
98
+ * @param string $value The cookie value.
99
+ *
100
+ * @return bool If output exists prior to calling this function, setcookie()
101
+ * will fail and return FALSE. If setcookie() successfully runs,
102
+ * it will return TRUE. This does not indicate whether the
103
+ * user accepted the cookie.
104
+ */
105
+ public function forever( $name, $value, $expire = 0 ) {
106
+
107
+ if ( 0 === $expire ) {
108
+ $expire = 31536000 * 5;
109
+ }
110
+
111
+ return $this->set( $name, $value, $expire );
112
+ }
113
+
114
+ /**
115
+ * Delete a cookie
116
+ *
117
+ * @param string $name Cookie name.
118
+ *
119
+ * @return bool @see Class::set();
120
+ */
121
+ public function delete( $name ) {
122
+ unset( $this->cookie[ $name ] ); // Input var okay.
123
+ return $this->set( $name, null, time() - 15 * 60 );
124
+ }
125
+
126
+ /**
127
+ * Calculate the expiration time
128
+ *
129
+ * @author https://github.com/codezero-be
130
+ *
131
+ * @param int $expire The espiration time
132
+ *
133
+ * @return int
134
+ */
135
+ private function calculate_expiration_time( $expire = 0 ) {
136
+ return intval( $expire > 0 ? time() + $expire : -1 );
137
+ }
138
+ }
vendor/overclokk/cookie/src/Cookie_Interface.php ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Cookie Interface API
4
+ *
5
+ * The contract for the Cookie API
6
+ *
7
+ * @link www.overclokk.met
8
+ * @since 1.0.0
9
+ *
10
+ * @package Overclokk\Cookie
11
+ */
12
+
13
+ namespace Overclokk\Cookie;
14
+
15
+ interface Cookie_Interface {
16
+
17
+ /**
18
+ * Get the value of a cookie
19
+ *
20
+ * @param string $name The cookie name.
21
+ *
22
+ * @return null|string Return the cookie value
23
+ */
24
+ public function get( $name );
25
+
26
+ /**
27
+ * Set cookie
28
+ *
29
+ * @param string $name The cookie name.
30
+ * @param string $value The cookie value.
31
+ * @param int $expire Expiration time in seconds.
32
+ * @param string $path The path on the server in which the cookie will be available on.
33
+ * If set to '/', the cookie will be available within the
34
+ * entire domain. If set to '/foo/', the cookie will only be
35
+ * available within the /foo/ directory and all sub-directories
36
+ * such as /foo/bar/ of domain. The default value is the current
37
+ * directory that the cookie is being set in.
38
+ * @param string $domain The (sub)domain that the cookie is available to.
39
+ * @param bool $secure Indicates that the cookie should only be transmitted over
40
+ * a secure HTTPS connection from the client.
41
+ * @param bool $httponly When TRUE the cookie will be made accessible only through
42
+ * the HTTP protocol.
43
+ *
44
+ * @return bool If output exists prior to calling this function, setcookie()
45
+ * will fail and return FALSE. If setcookie() successfully runs,
46
+ * it will return TRUE. This does not indicate whether the
47
+ * user accepted the cookie.
48
+ */
49
+ public function set( $name, $value, $expire = 0, $path = null, $domain = null, $secure = null, $httponly = null );
50
+
51
+ /**
52
+ * Delete a cookie
53
+ *
54
+ * @param string $name Cookie name.
55
+ *
56
+ * @return bool @see Interface::set();
57
+ */
58
+ public function delete( $name );
59
+ }
vendor/overclokk/minimum-requirements/README.md CHANGED
@@ -29,7 +29,7 @@ php composer.phar require overclokk/minimum-requirements
29
  /**
30
  * Require minimum-requirements class to load minimum compatibility theme/plugin
31
  */
32
- require( YOUR_PLUGIN_PATH . 'minimum-requirements.php' );
33
 
34
  /**
35
  * Instantiate the class
29
  /**
30
  * Require minimum-requirements class to load minimum compatibility theme/plugin
31
  */
32
+ require( dirname( __FILE__ ) . '/vendor/overclokk/minimum-requirements/minimum-requirements.php' );
33
 
34
  /**
35
  * Instantiate the class
vendor/overclokk/minimum-requirements/codeception.dist.yml DELETED
@@ -1,59 +0,0 @@
1
- actor: Tester
2
- paths:
3
- tests: tests
4
- log: tests/_output
5
- data: tests/_data
6
- helpers: tests/_support
7
- settings:
8
- bootstrap: _bootstrap.php
9
- colors: true
10
- memory_limit: 1024M
11
- modules:
12
- config:
13
- Db:
14
- dsn: 'mysql:host=127.0.0.1;dbname=wp-tests'
15
- user: root
16
- password: root
17
- dump: tests/_data/dump.sql
18
- WPBrowser:
19
- url: 'http://wp.dev'
20
- adminUsername: admin
21
- adminPassword: admin
22
- adminUrl: /wp-admin
23
- WPDb:
24
- dsn: 'mysql:host=127.0.0.1;dbname=wp-tests'
25
- user: root
26
- password: root
27
- dump: tests/_data/dump.sql
28
- populate: true
29
- cleanup: true
30
- url: 'http://wp.dev'
31
- tablePrefix: wp_
32
- WPLoader:
33
- wpRootFolder: /Users/Luca/Sites/wp
34
- dbName: wp-tests
35
- dbHost: 127.0.0.1
36
- dbUser: root
37
- dbPassword: root
38
- wpDebug: true
39
- dbCharset: utf8
40
- dbCollate: ''
41
- tablePrefix: wpmr_
42
- domain: wp.dev
43
- adminEmail: admin@wp.dev
44
- title: 'WP Minimum Requirements Tests'
45
- phpBinary: php
46
- language: ''
47
- plugins:
48
- - minimum-requirements/minimum-requirements.php
49
- activatePlugins:
50
- - minimum-requirements/minimum-requirements.php
51
- WPWebDriver:
52
- url: 'http://wp.dev'
53
- browser: phantomjs
54
- port: 4444
55
- restart: true
56
- wait: 2
57
- adminUsername: admin
58
- adminPassword: admin
59
- adminUrl: /wp-admin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/composer.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "name": "overclokk/minimum-requirements",
3
- "description": "Check the minimum requirements for your WordPress theme or plugin",
4
- "keywords": ["wordpress", "plugin", "wordpress plugin"],
5
- "homepage": "https://github.com/overclokk/minimum-requirements",
6
- "type": "wordpress-plugin",
7
- "require": {
8
- "php": ">=5.2"
9
- },
10
- "license": "GPL-2.0+",
11
- "authors": [
12
- {
13
- "name": "overclokk",
14
- "email": "info@overclokk.net",
15
- "homepage": "http://www.overclokk.net",
16
- "role": "Developer"
17
- }
18
- ],
19
- "require-dev": {
20
- "lucatume/wp-browser": "^1.10",
21
- "lucatume/function-mocker": "^1.0"
22
- }
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/composer.lock DELETED
@@ -1,2460 +0,0 @@
1
- {
2
- "_readme": [
3
- "This file locks the dependencies of your project to a known state",
4
- "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file",
5
- "This file is @generated automatically"
6
- ],
7
- "hash": "ea8393b36c060970d95b66e017b09b83",
8
- "content-hash": "980bdf25ebb43b311becaa0970c1e89b",
9
- "packages": [],
10
- "packages-dev": [
11
- {
12
- "name": "antecedent/patchwork",
13
- "version": "1.3.5",
14
- "source": {
15
- "type": "git",
16
- "url": "https://github.com/antecedent/patchwork.git",
17
- "reference": "908a233f8a374f02b02ff5e3d6ba687ca506d57d"
18
- },
19
- "dist": {
20
- "type": "zip",
21
- "url": "https://api.github.com/repos/antecedent/patchwork/zipball/908a233f8a374f02b02ff5e3d6ba687ca506d57d",
22
- "reference": "908a233f8a374f02b02ff5e3d6ba687ca506d57d",
23
- "shasum": ""
24
- },
25
- "require": {
26
- "php": ">=5.3.0"
27
- },
28
- "type": "library",
29
- "notification-url": "https://packagist.org/downloads/",
30
- "license": [
31
- "MIT"
32
- ],
33
- "authors": [
34
- {
35
- "name": "Ignas Rudaitis",
36
- "email": "ignas.rudaitis@gmail.com"
37
- }
38
- ],
39
- "description": "A pure PHP library that lets you redefine user-defined functions at runtime.",
40
- "homepage": "http://antecedent.github.io/patchwork/",
41
- "keywords": [
42
- "aop",
43
- "aspect",
44
- "interception",
45
- "monkeypatching",
46
- "redefinition",
47
- "runkit",
48
- "testing"
49
- ],
50
- "time": "2015-10-09 18:20:06"
51
- },
52
- {
53
- "name": "bacon/bacon-string-utils",
54
- "version": "1.0.3",
55
- "source": {
56
- "type": "git",
57
- "url": "https://github.com/Bacon/BaconStringUtils.git",
58
- "reference": "3810c78cdfe895cca9d6a2eea7712cb643186d05"
59
- },
60
- "dist": {
61
- "type": "zip",
62
- "url": "https://api.github.com/repos/Bacon/BaconStringUtils/zipball/3810c78cdfe895cca9d6a2eea7712cb643186d05",
63
- "reference": "3810c78cdfe895cca9d6a2eea7712cb643186d05",
64
- "shasum": ""
65
- },
66
- "require": {
67
- "php": ">=5.3.3"
68
- },
69
- "suggest": {
70
- "zendframework/zend-filter": "To use the Slugifier as a Zend\\Filter instance"
71
- },
72
- "type": "library",
73
- "autoload": {
74
- "psr-0": {
75
- "BaconStringUtils": "src/"
76
- },
77
- "classmap": [
78
- "./Module.php"
79
- ]
80
- },
81
- "notification-url": "https://packagist.org/downloads/",
82
- "license": [
83
- "BSD-2-Clause"
84
- ],
85
- "authors": [
86
- {
87
- "name": "Ben Scholzen 'DASPRiD'",
88
- "email": "mail@dasprids.de",
89
- "homepage": "http://www.dasprids.de",
90
- "role": "Developer"
91
- }
92
- ],
93
- "description": "BaconStringUtils contain utitilies to work with strings.",
94
- "homepage": "https://github.com/Bacon/BaconStringUtils",
95
- "time": "2013-10-11 13:59:45"
96
- },
97
- {
98
- "name": "codeception/codeception",
99
- "version": "2.1.7",
100
- "source": {
101
- "type": "git",
102
- "url": "https://github.com/Codeception/Codeception.git",
103
- "reference": "65971b0dee4972710365b6102154cd412a9bf7b1"
104
- },
105
- "dist": {
106
- "type": "zip",
107
- "url": "https://api.github.com/repos/Codeception/Codeception/zipball/65971b0dee4972710365b6102154cd412a9bf7b1",
108
- "reference": "65971b0dee4972710365b6102154cd412a9bf7b1",
109
- "shasum": ""
110
- },
111
- "require": {
112
- "ext-json": "*",
113
- "ext-mbstring": "*",
114
- "facebook/webdriver": ">=1.0.1 <2.0",
115
- "guzzlehttp/guzzle": ">=4.1.4 <7.0",
116
- "guzzlehttp/psr7": "~1.0",
117
- "php": ">=5.4.0 <8.0",
118
- "phpunit/php-code-coverage": ">=2.1.3",
119
- "phpunit/phpunit": ">4.8.20 <6.0",
120
- "symfony/browser-kit": ">=2.5 <3.1",
121
- "symfony/console": ">=2.5 <3.1",
122
- "symfony/css-selector": ">=2.5 <3.1",
123
- "symfony/dom-crawler": ">=2.5 <3.1",
124
- "symfony/event-dispatcher": ">=2.5 <3.1",
125
- "symfony/finder": ">=2.5 <3.1",
126
- "symfony/yaml": ">=2.5 <3.1"
127
- },
128
- "require-dev": {
129
- "codeception/specify": "~0.3",
130
- "facebook/php-sdk-v4": "~5.0",
131
- "flow/jsonpath": "~0.2",
132
- "monolog/monolog": "~1.8",
133
- "pda/pheanstalk": "~2.0",
134
- "php-amqplib/php-amqplib": "~2.4"
135
- },
136
- "suggest": {
137
- "codeception/phpbuiltinserver": "Extension to start and stop PHP built-in web server for your tests",
138
- "codeception/specify": "BDD-style code blocks",
139
- "codeception/verify": "BDD-style assertions",
140
- "monolog/monolog": "Log test steps",
141
- "phpseclib/phpseclib": "Extension required to use the SFTP option in the FTP Module."
142
- },
143
- "bin": [
144
- "codecept"
145
- ],
146
- "type": "library",
147
- "extra": {
148
- "branch-alias": []
149
- },
150
- "autoload": {
151
- "psr-4": {
152
- "Codeception\\": "src\\Codeception",
153
- "Codeception\\Extension\\": "ext"
154
- }
155
- },
156
- "notification-url": "https://packagist.org/downloads/",
157
- "license": [
158
- "MIT"
159
- ],
160
- "authors": [
161
- {
162
- "name": "Michael Bodnarchuk",
163
- "email": "davert@mail.ua",
164
- "homepage": "http://codegyre.com"
165
- }
166
- ],
167
- "description": "BDD-style testing framework",
168
- "homepage": "http://codeception.com/",
169
- "keywords": [
170
- "BDD",
171
- "TDD",
172
- "acceptance testing",
173
- "functional testing",
174
- "unit testing"
175
- ],
176
- "time": "2016-03-12 01:15:25"
177
- },
178
- {
179
- "name": "doctrine/inflector",
180
- "version": "v1.1.0",
181
- "source": {
182
- "type": "git",
183
- "url": "https://github.com/doctrine/inflector.git",
184
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae"
185
- },
186
- "dist": {
187
- "type": "zip",
188
- "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae",
189
- "reference": "90b2128806bfde671b6952ab8bea493942c1fdae",
190
- "shasum": ""
191
- },
192
- "require": {
193
- "php": ">=5.3.2"
194
- },
195
- "require-dev": {
196
- "phpunit/phpunit": "4.*"
197
- },
198
- "type": "library",
199
- "extra": {
200
- "branch-alias": {
201
- "dev-master": "1.1.x-dev"
202
- }
203
- },
204
- "autoload": {
205
- "psr-0": {
206
- "Doctrine\\Common\\Inflector\\": "lib/"
207
- }
208
- },
209
- "notification-url": "https://packagist.org/downloads/",
210
- "license": [
211
- "MIT"
212
- ],
213
- "authors": [
214
- {
215
- "name": "Roman Borschel",
216
- "email": "roman@code-factory.org"
217
- },
218
- {
219
- "name": "Benjamin Eberlei",
220
- "email": "kontakt@beberlei.de"
221
- },
222
- {
223
- "name": "Guilherme Blanco",
224
- "email": "guilhermeblanco@gmail.com"
225
- },
226
- {
227
- "name": "Jonathan Wage",
228
- "email": "jonwage@gmail.com"
229
- },
230
- {
231
- "name": "Johannes Schmitt",
232
- "email": "schmittjoh@gmail.com"
233
- }
234
- ],
235
- "description": "Common String Manipulations with regard to casing and singular/plural rules.",
236
- "homepage": "http://www.doctrine-project.org",
237
- "keywords": [
238
- "inflection",
239
- "pluralize",
240
- "singularize",
241
- "string"
242
- ],
243
- "time": "2015-11-06 14:35:42"
244
- },
245
- {
246
- "name": "doctrine/instantiator",
247
- "version": "1.0.5",
248
- "source": {
249
- "type": "git",
250
- "url": "https://github.com/doctrine/instantiator.git",
251
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d"
252
- },
253
- "dist": {
254
- "type": "zip",
255
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d",
256
- "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d",
257
- "shasum": ""
258
- },
259
- "require": {
260
- "php": ">=5.3,<8.0-DEV"
261
- },
262
- "require-dev": {
263
- "athletic/athletic": "~0.1.8",
264
- "ext-pdo": "*",
265
- "ext-phar": "*",
266
- "phpunit/phpunit": "~4.0",
267
- "squizlabs/php_codesniffer": "~2.0"
268
- },
269
- "type": "library",
270
- "extra": {
271
- "branch-alias": {
272
- "dev-master": "1.0.x-dev"
273
- }
274
- },
275
- "autoload": {
276
- "psr-4": {
277
- "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
278
- }
279
- },
280
- "notification-url": "https://packagist.org/downloads/",
281
- "license": [
282
- "MIT"
283
- ],
284
- "authors": [
285
- {
286
- "name": "Marco Pivetta",
287
- "email": "ocramius@gmail.com",
288
- "homepage": "http://ocramius.github.com/"
289
- }
290
- ],
291
- "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
292
- "homepage": "https://github.com/doctrine/instantiator",
293
- "keywords": [
294
- "constructor",
295
- "instantiate"
296
- ],
297
- "time": "2015-06-14 21:17:01"
298
- },
299
- {
300
- "name": "facebook/webdriver",
301
- "version": "1.1.1",
302
- "source": {
303
- "type": "git",
304
- "url": "https://github.com/facebook/php-webdriver.git",
305
- "reference": "1c98108ba3eb435b681655764de11502a0653705"
306
- },
307
- "dist": {
308
- "type": "zip",
309
- "url": "https://api.github.com/repos/facebook/php-webdriver/zipball/1c98108ba3eb435b681655764de11502a0653705",
310
- "reference": "1c98108ba3eb435b681655764de11502a0653705",
311
- "shasum": ""
312
- },
313
- "require": {
314
- "php": ">=5.3.19"
315
- },
316
- "require-dev": {
317
- "phpunit/phpunit": "4.6.*"
318
- },
319
- "suggest": {
320
- "phpdocumentor/phpdocumentor": "2.*"
321
- },
322
- "type": "library",
323
- "autoload": {
324
- "psr-4": {
325
- "Facebook\\WebDriver\\": "lib/"
326
- }
327
- },
328
- "notification-url": "https://packagist.org/downloads/",
329
- "license": [
330
- "Apache-2.0"
331
- ],
332
- "description": "A PHP client for WebDriver",
333
- "homepage": "https://github.com/facebook/php-webdriver",
334
- "keywords": [
335
- "facebook",
336
- "php",
337
- "selenium",
338
- "webdriver"
339
- ],
340
- "time": "2015-12-31 15:58:49"
341
- },
342
- {
343
- "name": "guzzlehttp/guzzle",
344
- "version": "6.1.1",
345
- "source": {
346
- "type": "git",
347
- "url": "https://github.com/guzzle/guzzle.git",
348
- "reference": "c6851d6e48f63b69357cbfa55bca116448140e0c"
349
- },
350
- "dist": {
351
- "type": "zip",
352
- "url": "https://api.github.com/repos/guzzle/guzzle/zipball/c6851d6e48f63b69357cbfa55bca116448140e0c",
353
- "reference": "c6851d6e48f63b69357cbfa55bca116448140e0c",
354
- "shasum": ""
355
- },
356
- "require": {
357
- "guzzlehttp/promises": "~1.0",
358
- "guzzlehttp/psr7": "~1.1",
359
- "php": ">=5.5.0"
360
- },
361
- "require-dev": {
362
- "ext-curl": "*",
363
- "phpunit/phpunit": "~4.0",
364
- "psr/log": "~1.0"
365
- },
366
- "type": "library",
367
- "extra": {
368
- "branch-alias": {
369
- "dev-master": "6.1-dev"
370
- }
371
- },
372
- "autoload": {
373
- "files": [
374
- "src/functions_include.php"
375
- ],
376
- "psr-4": {
377
- "GuzzleHttp\\": "src/"
378
- }
379
- },
380
- "notification-url": "https://packagist.org/downloads/",
381
- "license": [
382
- "MIT"
383
- ],
384
- "authors": [
385
- {
386
- "name": "Michael Dowling",
387
- "email": "mtdowling@gmail.com",
388
- "homepage": "https://github.com/mtdowling"
389
- }
390
- ],
391
- "description": "Guzzle is a PHP HTTP client library",
392
- "homepage": "http://guzzlephp.org/",
393
- "keywords": [
394
- "client",
395
- "curl",
396
- "framework",
397
- "http",
398
- "http client",
399
- "rest",
400
- "web service"
401
- ],
402
- "time": "2015-11-23 00:47:50"
403
- },
404
- {
405
- "name": "guzzlehttp/promises",
406
- "version": "1.1.0",
407
- "source": {
408
- "type": "git",
409
- "url": "https://github.com/guzzle/promises.git",
410
- "reference": "bb9024c526b22f3fe6ae55a561fd70653d470aa8"
411
- },
412
- "dist": {
413
- "type": "zip",
414
- "url": "https://api.github.com/repos/guzzle/promises/zipball/bb9024c526b22f3fe6ae55a561fd70653d470aa8",
415
- "reference": "bb9024c526b22f3fe6ae55a561fd70653d470aa8",
416
- "shasum": ""
417
- },
418
- "require": {
419
- "php": ">=5.5.0"
420
- },
421
- "require-dev": {
422
- "phpunit/phpunit": "~4.0"
423
- },
424
- "type": "library",
425
- "extra": {
426
- "branch-alias": {
427
- "dev-master": "1.0-dev"
428
- }
429
- },
430
- "autoload": {
431
- "psr-4": {
432
- "GuzzleHttp\\Promise\\": "src/"
433
- },
434
- "files": [
435
- "src/functions_include.php"
436
- ]
437
- },
438
- "notification-url": "https://packagist.org/downloads/",
439
- "license": [
440
- "MIT"
441
- ],
442
- "authors": [
443
- {
444
- "name": "Michael Dowling",
445
- "email": "mtdowling@gmail.com",
446
- "homepage": "https://github.com/mtdowling"
447
- }
448
- ],
449
- "description": "Guzzle promises library",
450
- "keywords": [
451
- "promise"
452
- ],
453
- "time": "2016-03-08 01:15:46"
454
- },
455
- {
456
- "name": "guzzlehttp/psr7",
457
- "version": "1.2.3",
458
- "source": {
459
- "type": "git",
460
- "url": "https://github.com/guzzle/psr7.git",
461
- "reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b"
462
- },
463
- "dist": {
464
- "type": "zip",
465
- "url": "https://api.github.com/repos/guzzle/psr7/zipball/2e89629ff057ebb49492ba08e6995d3a6a80021b",
466
- "reference": "2e89629ff057ebb49492ba08e6995d3a6a80021b",
467
- "shasum": ""
468
- },
469
- "require": {
470
- "php": ">=5.4.0",
471
- "psr/http-message": "~1.0"
472
- },
473
- "provide": {
474
- "psr/http-message-implementation": "1.0"
475
- },
476
- "require-dev": {
477
- "phpunit/phpunit": "~4.0"
478
- },
479
- "type": "library",
480
- "extra": {
481
- "branch-alias": {
482
- "dev-master": "1.0-dev"
483
- }
484
- },
485
- "autoload": {
486
- "psr-4": {
487
- "GuzzleHttp\\Psr7\\": "src/"
488
- },
489
- "files": [
490
- "src/functions_include.php"
491
- ]
492
- },
493
- "notification-url": "https://packagist.org/downloads/",
494
- "license": [
495
- "MIT"
496
- ],
497
- "authors": [
498
- {
499
- "name": "Michael Dowling",
500
- "email": "mtdowling@gmail.com",
501
- "homepage": "https://github.com/mtdowling"
502
- }
503
- ],
504
- "description": "PSR-7 message implementation",
505
- "keywords": [
506
- "http",
507
- "message",
508
- "stream",
509
- "uri"
510
- ],
511
- "time": "2016-02-18 21:54:00"
512
- },
513
- {
514
- "name": "hautelook/phpass",
515
- "version": "0.3.3",
516
- "source": {
517
- "type": "git",
518
- "url": "https://github.com/hautelook/phpass.git",
519
- "reference": "9590c12bf7c92f67f646d7bf2cf6384e7292cc41"
520
- },
521
- "dist": {
522
- "type": "zip",
523
- "url": "https://api.github.com/repos/hautelook/phpass/zipball/9590c12bf7c92f67f646d7bf2cf6384e7292cc41",
524
- "reference": "9590c12bf7c92f67f646d7bf2cf6384e7292cc41",
525
- "shasum": ""
526
- },
527
- "require": {
528
- "php": ">=5.3.3"
529
- },
530
- "type": "library",
531
- "autoload": {
532
- "psr-0": {
533
- "Hautelook": "src/"
534
- }
535
- },
536
- "notification-url": "https://packagist.org/downloads/",
537
- "license": [
538
- "Public Domain"
539
- ],
540
- "authors": [
541
- {
542
- "name": "Solar Designer",
543
- "email": "solar@openwall.com",
544
- "homepage": "http://openwall.com/phpass/"
545
- }
546
- ],
547
- "description": "Portable PHP password hashing framework",
548
- "homepage": "http://github.com/hautelook/phpass/",
549
- "keywords": [
550
- "blowfish",
551
- "crypt",
552
- "password",
553
- "security"
554
- ],
555
- "time": "2012-08-31 00:00:00"
556
- },
557
- {
558
- "name": "illuminate/contracts",
559
- "version": "v5.2.21",
560
- "source": {
561
- "type": "git",
562
- "url": "https://github.com/illuminate/contracts.git",
563
- "reference": "eea3cf7ce90651e067a914d16383b019da45fcb5"
564
- },
565
- "dist": {
566
- "type": "zip",
567
- "url": "https://api.github.com/repos/illuminate/contracts/zipball/eea3cf7ce90651e067a914d16383b019da45fcb5",
568
- "reference": "eea3cf7ce90651e067a914d16383b019da45fcb5",
569
- "shasum": ""
570
- },
571
- "require": {
572
- "php": ">=5.5.9"
573
- },
574
- "type": "library",
575
- "extra": {
576
- "branch-alias": {
577
- "dev-master": "5.2-dev"
578
- }
579
- },
580
- "autoload": {
581
- "psr-4": {
582
- "Illuminate\\Contracts\\": ""
583
- }
584
- },
585
- "notification-url": "https://packagist.org/downloads/",
586
- "license": [
587
- "MIT"
588
- ],
589
- "authors": [
590
- {
591
- "name": "Taylor Otwell",
592
- "email": "taylorotwell@gmail.com"
593
- }
594
- ],
595
- "description": "The Illuminate Contracts package.",
596
- "homepage": "http://laravel.com",
597
- "time": "2016-02-22 09:18:57"
598
- },
599
- {
600
- "name": "illuminate/support",
601
- "version": "v5.2.21",
602
- "source": {
603
- "type": "git",
604
- "url": "https://github.com/illuminate/support.git",
605
- "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e"
606
- },
607
- "dist": {
608
- "type": "zip",
609
- "url": "https://api.github.com/repos/illuminate/support/zipball/6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
610
- "reference": "6749fab3f3d38d8b15427536a8e7bbdc57497c9e",
611
- "shasum": ""
612
- },
613
- "require": {
614
- "doctrine/inflector": "~1.0",
615
- "ext-mbstring": "*",
616
- "illuminate/contracts": "5.2.*",
617
- "php": ">=5.5.9"
618
- },
619
- "suggest": {
620
- "illuminate/filesystem": "Required to use the composer class (5.2.*).",
621
- "jeremeamia/superclosure": "Required to be able to serialize closures (~2.2).",
622
- "paragonie/random_compat": "Provides a compatible interface like PHP7's random_bytes() in PHP 5 projects (~1.1).",
623
- "symfony/polyfill-php56": "Required to use the hash_equals function on PHP 5.5 (~1.0).",
624
- "symfony/process": "Required to use the composer class (2.8.*|3.0.*).",
625
- "symfony/var-dumper": "Improves the dd function (2.8.*|3.0.*)."
626
- },
627
- "type": "library",
628
- "extra": {
629
- "branch-alias": {
630
- "dev-master": "5.2-dev"
631
- }
632
- },
633
- "autoload": {
634
- "psr-4": {
635
- "Illuminate\\Support\\": ""
636
- },
637
- "files": [
638
- "helpers.php"
639
- ]
640
- },
641
- "notification-url": "https://packagist.org/downloads/",
642
- "license": [
643
- "MIT"
644
- ],
645
- "authors": [
646
- {
647
- "name": "Taylor Otwell",
648
- "email": "taylorotwell@gmail.com"
649
- }
650
- ],
651
- "description": "The Illuminate Support package.",
652
- "homepage": "http://laravel.com",
653
- "time": "2016-02-22 20:29:02"
654
- },
655
- {
656
- "name": "lucatume/args",
657
- "version": "0.1.10",
658
- "source": {
659
- "type": "git",
660
- "url": "https://github.com/lucatume/args.git",
661
- "reference": "0be8ba515ad238eb0bec6ddd1602da51c6c7171b"
662
- },
663
- "dist": {
664
- "type": "zip",
665
- "url": "https://api.github.com/repos/lucatume/args/zipball/0be8ba515ad238eb0bec6ddd1602da51c6c7171b",
666
- "reference": "0be8ba515ad238eb0bec6ddd1602da51c6c7171b",
667
- "shasum": ""
668
- },
669
- "require": {
670
- "xrstf/composer-php52": "1.*"
671
- },
672
- "require-dev": {
673
- "codeception/codeception": "*"
674
- },
675
- "type": "library",
676
- "autoload": {
677
- "psr-0": {
678
- "Arg": "src/",
679
- "tad_": "src/"
680
- }
681
- },
682
- "notification-url": "https://packagist.org/downloads/",
683
- "license": [
684
- "GPL2"
685
- ],
686
- "authors": [
687
- {
688
- "name": "Luca Tumedei",
689
- "email": "luca@theaveragedev.com"
690
- }
691
- ],
692
- "description": "A PHP 5.2 compatible arguments handling library.",
693
- "time": "2015-04-20 19:02:17"
694
- },
695
- {
696
- "name": "lucatume/function-mocker",
697
- "version": "1.0.4",
698
- "source": {
699
- "type": "git",
700
- "url": "https://github.com/lucatume/function-mocker.git",
701
- "reference": "f8ecf3eb786d9f18b7e35aa18f2546ef11e82103"
702
- },
703
- "dist": {
704
- "type": "zip",
705
- "url": "https://api.github.com/repos/lucatume/function-mocker/zipball/f8ecf3eb786d9f18b7e35aa18f2546ef11e82103",
706
- "reference": "f8ecf3eb786d9f18b7e35aa18f2546ef11e82103",
707
- "shasum": ""
708
- },
709
- "require": {
710
- "antecedent/patchwork": "1.3.5",
711
- "lucatume/args": "~0.1"
712
- },
713
- "require-dev": {
714
- "phpspec/phpspec": "~2.1"
715
- },
716
- "type": "library",
717
- "autoload": {
718
- "psr-0": {
719
- "tad\\FunctionMocker": "src"
720
- }
721
- },
722
- "notification-url": "https://packagist.org/downloads/",
723
- "license": [
724
- "GPL-2.0+"
725
- ],
726
- "authors": [
727
- {
728
- "name": "theAverageDev",
729
- "email": "luca@theaveragedev.com"
730
- }
731
- ],
732
- "description": "Function mocking with Patchwork",
733
- "time": "2016-03-16 17:50:23"
734
- },
735
- {
736
- "name": "lucatume/wp-browser",
737
- "version": "1.10.4",
738
- "source": {
739
- "type": "git",
740
- "url": "https://github.com/lucatume/wp-browser.git",
741
- "reference": "dde7f0fdc295a77d43069b9dc940465ac345cf8c"
742
- },
743
- "dist": {
744
- "type": "zip",
745
- "url": "https://api.github.com/repos/lucatume/wp-browser/zipball/dde7f0fdc295a77d43069b9dc940465ac345cf8c",
746
- "reference": "dde7f0fdc295a77d43069b9dc940465ac345cf8c",
747
- "shasum": ""
748
- },
749
- "require": {
750
- "bacon/bacon-string-utils": "~1.0",
751
- "codeception/codeception": "~2.0",
752
- "mikemclin/laravel-wp-password": "~2.0.0",
753
- "php": ">=5.4.0",
754
- "symfony/filesystem": "^2.7",
755
- "xamin/handlebars.php": "~0.10"
756
- },
757
- "require-dev": {
758
- "codeception/codeception": "*",
759
- "mikey179/vfsstream": "^1.6"
760
- },
761
- "bin": [
762
- "wpcept"
763
- ],
764
- "type": "library",
765
- "autoload": {
766
- "psr-4": {
767
- "Codeception\\": "src\\Codeception",
768
- "tad\\": "src\\tad"
769
- }
770
- },
771
- "notification-url": "https://packagist.org/downloads/",
772
- "license": [
773
- "MIT"
774
- ],
775
- "authors": [
776
- {
777
- "name": "theAverageDev (Luca Tumedei)",
778
- "email": "luca@theaveragedev.com",
779
- "homepage": "http://theaveragedev.com",
780
- "role": "Developer"
781
- }
782
- ],
783
- "description": "WordPress extension of the PhpBrowser class.",
784
- "homepage": "http://github.com/lucatume/wp-browser",
785
- "keywords": [
786
- "codeception",
787
- "wordpress"
788
- ],
789
- "time": "2016-02-23 10:50:00"
790
- },
791
- {
792
- "name": "mikemclin/laravel-wp-password",
793
- "version": "2.0.0",
794
- "source": {
795
- "type": "git",
796
- "url": "https://github.com/mikemclin/laravel-wp-password.git",
797
- "reference": "3460f1e38dea501c5d0cbe9bff67d043f6821724"
798
- },
799
- "dist": {
800
- "type": "zip",
801
- "url": "https://api.github.com/repos/mikemclin/laravel-wp-password/zipball/3460f1e38dea501c5d0cbe9bff67d043f6821724",
802
- "reference": "3460f1e38dea501c5d0cbe9bff67d043f6821724",
803
- "shasum": ""
804
- },
805
- "require": {
806
- "hautelook/phpass": "0.3.3",
807
- "illuminate/support": ">=4.0.0",
808
- "php": ">=5.3.0"
809
- },
810
- "replace": {
811
- "mikemclin/laravel-wp-password": "self.version"
812
- },
813
- "require-dev": {
814
- "mockery/mockery": "~0.9",
815
- "phpunit/phpunit": "~4.0",
816
- "satooshi/php-coveralls": "dev-master"
817
- },
818
- "type": "laravel-package",
819
- "autoload": {
820
- "psr-4": {
821
- "MikeMcLin\\WpPassword\\": "src/"
822
- }
823
- },
824
- "notification-url": "https://packagist.org/downloads/",
825
- "license": [
826
- "MIT"
827
- ],
828
- "authors": [
829
- {
830
- "name": "Mike McLin",
831
- "email": "mike@mikemclin.com",
832
- "homepage": "http://mikemclin.net"
833
- }
834
- ],
835
- "description": "Laravel package that checks and creates WordPress password hashes",
836
- "homepage": "https://github.com/mikemclin/laravel-wp-password",
837
- "keywords": [
838
- "hashing",
839
- "laravel",
840
- "password",
841
- "wordpress"
842
- ],
843
- "time": "2015-02-12 03:09:57"
844
- },
845
- {
846
- "name": "myclabs/deep-copy",
847
- "version": "1.5.0",
848
- "source": {
849
- "type": "git",
850
- "url": "https://github.com/myclabs/DeepCopy.git",
851
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc"
852
- },
853
- "dist": {
854
- "type": "zip",
855
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
856
- "reference": "e3abefcd7f106677fd352cd7c187d6c969aa9ddc",
857
- "shasum": ""
858
- },
859
- "require": {
860
- "php": ">=5.4.0"
861
- },
862
- "require-dev": {
863
- "doctrine/collections": "1.*",
864
- "phpunit/phpunit": "~4.1"
865
- },
866
- "type": "library",
867
- "autoload": {
868
- "psr-4": {
869
- "DeepCopy\\": "src/DeepCopy/"
870
- }
871
- },
872
- "notification-url": "https://packagist.org/downloads/",
873
- "license": [
874
- "MIT"
875
- ],
876
- "description": "Create deep copies (clones) of your objects",
877
- "homepage": "https://github.com/myclabs/DeepCopy",
878
- "keywords": [
879
- "clone",
880
- "copy",
881
- "duplicate",
882
- "object",
883
- "object graph"
884
- ],
885
- "time": "2015-11-07 22:20:37"
886
- },
887
- {
888
- "name": "phpdocumentor/reflection-docblock",
889
- "version": "2.0.4",
890
- "source": {
891
- "type": "git",
892
- "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
893
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8"
894
- },
895
- "dist": {
896
- "type": "zip",
897
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8",
898
- "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8",
899
- "shasum": ""
900
- },
901
- "require": {
902
- "php": ">=5.3.3"
903
- },
904
- "require-dev": {
905
- "phpunit/phpunit": "~4.0"
906
- },
907
- "suggest": {
908
- "dflydev/markdown": "~1.0",
909
- "erusev/parsedown": "~1.0"
910
- },
911
- "type": "library",
912
- "extra": {
913
- "branch-alias": {
914
- "dev-master": "2.0.x-dev"
915
- }
916
- },
917
- "autoload": {
918
- "psr-0": {
919
- "phpDocumentor": [
920
- "src/"
921
- ]
922
- }
923
- },
924
- "notification-url": "https://packagist.org/downloads/",
925
- "license": [
926
- "MIT"
927
- ],
928
- "authors": [
929
- {
930
- "name": "Mike van Riel",
931
- "email": "mike.vanriel@naenius.com"
932
- }
933
- ],
934
- "time": "2015-02-03 12:10:50"
935
- },
936
- {
937
- "name": "phpspec/prophecy",
938
- "version": "v1.6.0",
939
- "source": {
940
- "type": "git",
941
- "url": "https://github.com/phpspec/prophecy.git",
942
- "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972"
943
- },
944
- "dist": {
945
- "type": "zip",
946
- "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972",
947
- "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972",
948
- "shasum": ""
949
- },
950
- "require": {
951
- "doctrine/instantiator": "^1.0.2",
952
- "php": "^5.3|^7.0",
953
- "phpdocumentor/reflection-docblock": "~2.0",
954
- "sebastian/comparator": "~1.1",
955
- "sebastian/recursion-context": "~1.0"
956
- },
957
- "require-dev": {
958
- "phpspec/phpspec": "~2.0"
959
- },
960
- "type": "library",
961
- "extra": {
962
- "branch-alias": {
963
- "dev-master": "1.5.x-dev"
964
- }
965
- },
966
- "autoload": {
967
- "psr-0": {
968
- "Prophecy\\": "src/"
969
- }
970
- },
971
- "notification-url": "https://packagist.org/downloads/",
972
- "license": [
973
- "MIT"
974
- ],
975
- "authors": [
976
- {
977
- "name": "Konstantin Kudryashov",
978
- "email": "ever.zet@gmail.com",
979
- "homepage": "http://everzet.com"
980
- },
981
- {
982
- "name": "Marcello Duarte",
983
- "email": "marcello.duarte@gmail.com"
984
- }
985
- ],
986
- "description": "Highly opinionated mocking framework for PHP 5.3+",
987
- "homepage": "https://github.com/phpspec/prophecy",
988
- "keywords": [
989
- "Double",
990
- "Dummy",
991
- "fake",
992
- "mock",
993
- "spy",
994
- "stub"
995
- ],
996
- "time": "2016-02-15 07:46:21"
997
- },
998
- {
999
- "name": "phpunit/php-code-coverage",
1000
- "version": "3.3.0",
1001
- "source": {
1002
- "type": "git",
1003
- "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
1004
- "reference": "fe33716763b604ade4cb442c0794f5bd5ad73004"
1005
- },
1006
- "dist": {
1007
- "type": "zip",
1008
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/fe33716763b604ade4cb442c0794f5bd5ad73004",
1009
- "reference": "fe33716763b604ade4cb442c0794f5bd5ad73004",
1010
- "shasum": ""
1011
- },
1012
- "require": {
1013
- "php": "^5.6 || ^7.0",
1014
- "phpunit/php-file-iterator": "~1.3",
1015
- "phpunit/php-text-template": "~1.2",
1016
- "phpunit/php-token-stream": "^1.4.2",
1017
- "sebastian/code-unit-reverse-lookup": "~1.0",
1018
- "sebastian/environment": "^1.3.2",
1019
- "sebastian/version": "~1.0|~2.0"
1020
- },
1021
- "require-dev": {
1022
- "ext-xdebug": ">=2.1.4",
1023
- "phpunit/phpunit": "~5"
1024
- },
1025
- "suggest": {
1026
- "ext-dom": "*",
1027
- "ext-xdebug": ">=2.2.1",
1028
- "ext-xmlwriter": "*"
1029
- },
1030
- "type": "library",
1031
- "extra": {
1032
- "branch-alias": {
1033
- "dev-master": "3.3.x-dev"
1034
- }
1035
- },
1036
- "autoload": {
1037
- "classmap": [
1038
- "src/"
1039
- ]
1040
- },
1041
- "notification-url": "https://packagist.org/downloads/",
1042
- "license": [
1043
- "BSD-3-Clause"
1044
- ],
1045
- "authors": [
1046
- {
1047
- "name": "Sebastian Bergmann",
1048
- "email": "sb@sebastian-bergmann.de",
1049
- "role": "lead"
1050
- }
1051
- ],
1052
- "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
1053
- "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
1054
- "keywords": [
1055
- "coverage",
1056
- "testing",
1057
- "xunit"
1058
- ],
1059
- "time": "2016-03-03 08:49:08"
1060
- },
1061
- {
1062
- "name": "phpunit/php-file-iterator",
1063
- "version": "1.4.1",
1064
- "source": {
1065
- "type": "git",
1066
- "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
1067
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0"
1068
- },
1069
- "dist": {
1070
- "type": "zip",
1071
- "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
1072
- "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0",
1073
- "shasum": ""
1074
- },
1075
- "require": {
1076
- "php": ">=5.3.3"
1077
- },
1078
- "type": "library",
1079
- "extra": {
1080
- "branch-alias": {
1081
- "dev-master": "1.4.x-dev"
1082
- }
1083
- },
1084
- "autoload": {
1085
- "classmap": [
1086
- "src/"
1087
- ]
1088
- },
1089
- "notification-url": "https://packagist.org/downloads/",
1090
- "license": [
1091
- "BSD-3-Clause"
1092
- ],
1093
- "authors": [
1094
- {
1095
- "name": "Sebastian Bergmann",
1096
- "email": "sb@sebastian-bergmann.de",
1097
- "role": "lead"
1098
- }
1099
- ],
1100
- "description": "FilterIterator implementation that filters files based on a list of suffixes.",
1101
- "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
1102
- "keywords": [
1103
- "filesystem",
1104
- "iterator"
1105
- ],
1106
- "time": "2015-06-21 13:08:43"
1107
- },
1108
- {
1109
- "name": "phpunit/php-text-template",
1110
- "version": "1.2.1",
1111
- "source": {
1112
- "type": "git",
1113
- "url": "https://github.com/sebastianbergmann/php-text-template.git",
1114
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
1115
- },
1116
- "dist": {
1117
- "type": "zip",
1118
- "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1119
- "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
1120
- "shasum": ""
1121
- },
1122
- "require": {
1123
- "php": ">=5.3.3"
1124
- },
1125
- "type": "library",
1126
- "autoload": {
1127
- "classmap": [
1128
- "src/"
1129
- ]
1130
- },
1131
- "notification-url": "https://packagist.org/downloads/",
1132
- "license": [
1133
- "BSD-3-Clause"
1134
- ],
1135
- "authors": [
1136
- {
1137
- "name": "Sebastian Bergmann",
1138
- "email": "sebastian@phpunit.de",
1139
- "role": "lead"
1140
- }
1141
- ],
1142
- "description": "Simple template engine.",
1143
- "homepage": "https://github.com/sebastianbergmann/php-text-template/",
1144
- "keywords": [
1145
- "template"
1146
- ],
1147
- "time": "2015-06-21 13:50:34"
1148
- },
1149
- {
1150
- "name": "phpunit/php-timer",
1151
- "version": "1.0.7",
1152
- "source": {
1153
- "type": "git",
1154
- "url": "https://github.com/sebastianbergmann/php-timer.git",
1155
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b"
1156
- },
1157
- "dist": {
1158
- "type": "zip",
1159
- "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
1160
- "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b",
1161
- "shasum": ""
1162
- },
1163
- "require": {
1164
- "php": ">=5.3.3"
1165
- },
1166
- "type": "library",
1167
- "autoload": {
1168
- "classmap": [
1169
- "src/"
1170
- ]
1171
- },
1172
- "notification-url": "https://packagist.org/downloads/",
1173
- "license": [
1174
- "BSD-3-Clause"
1175
- ],
1176
- "authors": [
1177
- {
1178
- "name": "Sebastian Bergmann",
1179
- "email": "sb@sebastian-bergmann.de",
1180
- "role": "lead"
1181
- }
1182
- ],
1183
- "description": "Utility class for timing",
1184
- "homepage": "https://github.com/sebastianbergmann/php-timer/",
1185
- "keywords": [
1186
- "timer"
1187
- ],
1188
- "time": "2015-06-21 08:01:12"
1189
- },
1190
- {
1191
- "name": "phpunit/php-token-stream",
1192
- "version": "1.4.8",
1193
- "source": {
1194
- "type": "git",
1195
- "url": "https://github.com/sebastianbergmann/php-token-stream.git",
1196
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da"
1197
- },
1198
- "dist": {
1199
- "type": "zip",
1200
- "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
1201
- "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da",
1202
- "shasum": ""
1203
- },
1204
- "require": {
1205
- "ext-tokenizer": "*",
1206
- "php": ">=5.3.3"
1207
- },
1208
- "require-dev": {
1209
- "phpunit/phpunit": "~4.2"
1210
- },
1211
- "type": "library",
1212
- "extra": {
1213
- "branch-alias": {
1214
- "dev-master": "1.4-dev"
1215
- }
1216
- },
1217
- "autoload": {
1218
- "classmap": [
1219
- "src/"
1220
- ]
1221
- },
1222
- "notification-url": "https://packagist.org/downloads/",
1223
- "license": [
1224
- "BSD-3-Clause"
1225
- ],
1226
- "authors": [
1227
- {
1228
- "name": "Sebastian Bergmann",
1229
- "email": "sebastian@phpunit.de"
1230
- }
1231
- ],
1232
- "description": "Wrapper around PHP's tokenizer extension.",
1233
- "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
1234
- "keywords": [
1235
- "tokenizer"
1236
- ],
1237
- "time": "2015-09-15 10:49:45"
1238
- },
1239
- {
1240
- "name": "phpunit/phpunit",
1241
- "version": "5.2.12",
1242
- "source": {
1243
- "type": "git",
1244
- "url": "https://github.com/sebastianbergmann/phpunit.git",
1245
- "reference": "6f0948bab32270352f97d1913d82a49338dcb0da"
1246
- },
1247
- "dist": {
1248
- "type": "zip",
1249
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6f0948bab32270352f97d1913d82a49338dcb0da",
1250
- "reference": "6f0948bab32270352f97d1913d82a49338dcb0da",
1251
- "shasum": ""
1252
- },
1253
- "require": {
1254
- "ext-dom": "*",
1255
- "ext-json": "*",
1256
- "ext-pcre": "*",
1257
- "ext-reflection": "*",
1258
- "ext-spl": "*",
1259
- "myclabs/deep-copy": "~1.3",
1260
- "php": "^5.6 || ^7.0",
1261
- "phpspec/prophecy": "^1.3.1",
1262
- "phpunit/php-code-coverage": "^3.3.0",
1263
- "phpunit/php-file-iterator": "~1.4",
1264
- "phpunit/php-text-template": "~1.2",
1265
- "phpunit/php-timer": ">=1.0.6",
1266
- "phpunit/phpunit-mock-objects": ">=3.0.5",
1267
- "sebastian/comparator": "~1.1",
1268
- "sebastian/diff": "~1.2",
1269
- "sebastian/environment": "~1.3",
1270
- "sebastian/exporter": "~1.2",
1271
- "sebastian/global-state": "~1.0",
1272
- "sebastian/resource-operations": "~1.0",
1273
- "sebastian/version": "~1.0|~2.0",
1274
- "symfony/yaml": "~2.1|~3.0"
1275
- },
1276
- "suggest": {
1277
- "phpunit/php-invoker": "~1.1"
1278
- },
1279
- "bin": [
1280
- "phpunit"
1281
- ],
1282
- "type": "library",
1283
- "extra": {
1284
- "branch-alias": {
1285
- "dev-master": "5.2.x-dev"
1286
- }
1287
- },
1288
- "autoload": {
1289
- "classmap": [
1290
- "src/"
1291
- ]
1292
- },
1293
- "notification-url": "https://packagist.org/downloads/",
1294
- "license": [
1295
- "BSD-3-Clause"
1296
- ],
1297
- "authors": [
1298
- {
1299
- "name": "Sebastian Bergmann",
1300
- "email": "sebastian@phpunit.de",
1301
- "role": "lead"
1302
- }
1303
- ],
1304
- "description": "The PHP Unit Testing framework.",
1305
- "homepage": "https://phpunit.de/",
1306
- "keywords": [
1307
- "phpunit",
1308
- "testing",
1309
- "xunit"
1310
- ],
1311
- "time": "2016-03-15 05:59:58"
1312
- },
1313
- {
1314
- "name": "phpunit/phpunit-mock-objects",
1315
- "version": "3.0.6",
1316
- "source": {
1317
- "type": "git",
1318
- "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git",
1319
- "reference": "49bc700750196c04dd6bc2c4c99cb632b893836b"
1320
- },
1321
- "dist": {
1322
- "type": "zip",
1323
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/49bc700750196c04dd6bc2c4c99cb632b893836b",
1324
- "reference": "49bc700750196c04dd6bc2c4c99cb632b893836b",
1325
- "shasum": ""
1326
- },
1327
- "require": {
1328
- "doctrine/instantiator": "^1.0.2",
1329
- "php": ">=5.6",
1330
- "phpunit/php-text-template": "~1.2",
1331
- "sebastian/exporter": "~1.2"
1332
- },
1333
- "require-dev": {
1334
- "phpunit/phpunit": "~5"
1335
- },
1336
- "suggest": {
1337
- "ext-soap": "*"
1338
- },
1339
- "type": "library",
1340
- "extra": {
1341
- "branch-alias": {
1342
- "dev-master": "3.0.x-dev"
1343
- }
1344
- },
1345
- "autoload": {
1346
- "classmap": [
1347
- "src/"
1348
- ]
1349
- },
1350
- "notification-url": "https://packagist.org/downloads/",
1351
- "license": [
1352
- "BSD-3-Clause"
1353
- ],
1354
- "authors": [
1355
- {
1356
- "name": "Sebastian Bergmann",
1357
- "email": "sb@sebastian-bergmann.de",
1358
- "role": "lead"
1359
- }
1360
- ],
1361
- "description": "Mock Object library for PHPUnit",
1362
- "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/",
1363
- "keywords": [
1364
- "mock",
1365
- "xunit"
1366
- ],
1367
- "time": "2015-12-08 08:47:06"
1368
- },
1369
- {
1370
- "name": "psr/http-message",
1371
- "version": "1.0",
1372
- "source": {
1373
- "type": "git",
1374
- "url": "https://github.com/php-fig/http-message.git",
1375
- "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298"
1376
- },
1377
- "dist": {
1378
- "type": "zip",
1379
- "url": "https://api.github.com/repos/php-fig/http-message/zipball/85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
1380
- "reference": "85d63699f0dbedb190bbd4b0d2b9dc707ea4c298",
1381
- "shasum": ""
1382
- },
1383
- "require": {
1384
- "php": ">=5.3.0"
1385
- },
1386
- "type": "library",
1387
- "extra": {
1388
- "branch-alias": {
1389
- "dev-master": "1.0.x-dev"
1390
- }
1391
- },
1392
- "autoload": {
1393
- "psr-4": {
1394
- "Psr\\Http\\Message\\": "src/"
1395
- }
1396
- },
1397
- "notification-url": "https://packagist.org/downloads/",
1398
- "license": [
1399
- "MIT"
1400
- ],
1401
- "authors": [
1402
- {
1403
- "name": "PHP-FIG",
1404
- "homepage": "http://www.php-fig.org/"
1405
- }
1406
- ],
1407
- "description": "Common interface for HTTP messages",
1408
- "keywords": [
1409
- "http",
1410
- "http-message",
1411
- "psr",
1412
- "psr-7",
1413
- "request",
1414
- "response"
1415
- ],
1416
- "time": "2015-05-04 20:22:00"
1417
- },
1418
- {
1419
- "name": "sebastian/code-unit-reverse-lookup",
1420
- "version": "1.0.0",
1421
- "source": {
1422
- "type": "git",
1423
- "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
1424
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe"
1425
- },
1426
- "dist": {
1427
- "type": "zip",
1428
- "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
1429
- "reference": "c36f5e7cfce482fde5bf8d10d41a53591e0198fe",
1430
- "shasum": ""
1431
- },
1432
- "require": {
1433
- "php": ">=5.6"
1434
- },
1435
- "require-dev": {
1436
- "phpunit/phpunit": "~5"
1437
- },
1438
- "type": "library",
1439
- "extra": {
1440
- "branch-alias": {
1441
- "dev-master": "1.0.x-dev"
1442
- }
1443
- },
1444
- "autoload": {
1445
- "classmap": [
1446
- "src/"
1447
- ]
1448
- },
1449
- "notification-url": "https://packagist.org/downloads/",
1450
- "license": [
1451
- "BSD-3-Clause"
1452
- ],
1453
- "authors": [
1454
- {
1455
- "name": "Sebastian Bergmann",
1456
- "email": "sebastian@phpunit.de"
1457
- }
1458
- ],
1459
- "description": "Looks up which function or method a line of code belongs to",
1460
- "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
1461
- "time": "2016-02-13 06:45:14"
1462
- },
1463
- {
1464
- "name": "sebastian/comparator",
1465
- "version": "1.2.0",
1466
- "source": {
1467
- "type": "git",
1468
- "url": "https://github.com/sebastianbergmann/comparator.git",
1469
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22"
1470
- },
1471
- "dist": {
1472
- "type": "zip",
1473
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22",
1474
- "reference": "937efb279bd37a375bcadf584dec0726f84dbf22",
1475
- "shasum": ""
1476
- },
1477
- "require": {
1478
- "php": ">=5.3.3",
1479
- "sebastian/diff": "~1.2",
1480
- "sebastian/exporter": "~1.2"
1481
- },
1482
- "require-dev": {
1483
- "phpunit/phpunit": "~4.4"
1484
- },
1485
- "type": "library",
1486
- "extra": {
1487
- "branch-alias": {
1488
- "dev-master": "1.2.x-dev"
1489
- }
1490
- },
1491
- "autoload": {
1492
- "classmap": [
1493
- "src/"
1494
- ]
1495
- },
1496
- "notification-url": "https://packagist.org/downloads/",
1497
- "license": [
1498
- "BSD-3-Clause"
1499
- ],
1500
- "authors": [
1501
- {
1502
- "name": "Jeff Welch",
1503
- "email": "whatthejeff@gmail.com"
1504
- },
1505
- {
1506
- "name": "Volker Dusch",
1507
- "email": "github@wallbash.com"
1508
- },
1509
- {
1510
- "name": "Bernhard Schussek",
1511
- "email": "bschussek@2bepublished.at"
1512
- },
1513
- {
1514
- "name": "Sebastian Bergmann",
1515
- "email": "sebastian@phpunit.de"
1516
- }
1517
- ],
1518
- "description": "Provides the functionality to compare PHP values for equality",
1519
- "homepage": "http://www.github.com/sebastianbergmann/comparator",
1520
- "keywords": [
1521
- "comparator",
1522
- "compare",
1523
- "equality"
1524
- ],
1525
- "time": "2015-07-26 15:48:44"
1526
- },
1527
- {
1528
- "name": "sebastian/diff",
1529
- "version": "1.4.1",
1530
- "source": {
1531
- "type": "git",
1532
- "url": "https://github.com/sebastianbergmann/diff.git",
1533
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e"
1534
- },
1535
- "dist": {
1536
- "type": "zip",
1537
- "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e",
1538
- "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e",
1539
- "shasum": ""
1540
- },
1541
- "require": {
1542
- "php": ">=5.3.3"
1543
- },
1544
- "require-dev": {
1545
- "phpunit/phpunit": "~4.8"
1546
- },
1547
- "type": "library",
1548
- "extra": {
1549
- "branch-alias": {
1550
- "dev-master": "1.4-dev"
1551
- }
1552
- },
1553
- "autoload": {
1554
- "classmap": [
1555
- "src/"
1556
- ]
1557
- },
1558
- "notification-url": "https://packagist.org/downloads/",
1559
- "license": [
1560
- "BSD-3-Clause"
1561
- ],
1562
- "authors": [
1563
- {
1564
- "name": "Kore Nordmann",
1565
- "email": "mail@kore-nordmann.de"
1566
- },
1567
- {
1568
- "name": "Sebastian Bergmann",
1569
- "email": "sebastian@phpunit.de"
1570
- }
1571
- ],
1572
- "description": "Diff implementation",
1573
- "homepage": "https://github.com/sebastianbergmann/diff",
1574
- "keywords": [
1575
- "diff"
1576
- ],
1577
- "time": "2015-12-08 07:14:41"
1578
- },
1579
- {
1580
- "name": "sebastian/environment",
1581
- "version": "1.3.5",
1582
- "source": {
1583
- "type": "git",
1584
- "url": "https://github.com/sebastianbergmann/environment.git",
1585
- "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf"
1586
- },
1587
- "dist": {
1588
- "type": "zip",
1589
- "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
1590
- "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf",
1591
- "shasum": ""
1592
- },
1593
- "require": {
1594
- "php": ">=5.3.3"
1595
- },
1596
- "require-dev": {
1597
- "phpunit/phpunit": "~4.4"
1598
- },
1599
- "type": "library",
1600
- "extra": {
1601
- "branch-alias": {
1602
- "dev-master": "1.3.x-dev"
1603
- }
1604
- },
1605
- "autoload": {
1606
- "classmap": [
1607
- "src/"
1608
- ]
1609
- },
1610
- "notification-url": "https://packagist.org/downloads/",
1611
- "license": [
1612
- "BSD-3-Clause"
1613
- ],
1614
- "authors": [
1615
- {
1616
- "name": "Sebastian Bergmann",
1617
- "email": "sebastian@phpunit.de"
1618
- }
1619
- ],
1620
- "description": "Provides functionality to handle HHVM/PHP environments",
1621
- "homepage": "http://www.github.com/sebastianbergmann/environment",
1622
- "keywords": [
1623
- "Xdebug",
1624
- "environment",
1625
- "hhvm"
1626
- ],
1627
- "time": "2016-02-26 18:40:46"
1628
- },
1629
- {
1630
- "name": "sebastian/exporter",
1631
- "version": "1.2.1",
1632
- "source": {
1633
- "type": "git",
1634
- "url": "https://github.com/sebastianbergmann/exporter.git",
1635
- "reference": "7ae5513327cb536431847bcc0c10edba2701064e"
1636
- },
1637
- "dist": {
1638
- "type": "zip",
1639
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e",
1640
- "reference": "7ae5513327cb536431847bcc0c10edba2701064e",
1641
- "shasum": ""
1642
- },
1643
- "require": {
1644
- "php": ">=5.3.3",
1645
- "sebastian/recursion-context": "~1.0"
1646
- },
1647
- "require-dev": {
1648
- "phpunit/phpunit": "~4.4"
1649
- },
1650
- "type": "library",
1651
- "extra": {
1652
- "branch-alias": {
1653
- "dev-master": "1.2.x-dev"
1654
- }
1655
- },
1656
- "autoload": {
1657
- "classmap": [
1658
- "src/"
1659
- ]
1660
- },
1661
- "notification-url": "https://packagist.org/downloads/",
1662
- "license": [
1663
- "BSD-3-Clause"
1664
- ],
1665
- "authors": [
1666
- {
1667
- "name": "Jeff Welch",
1668
- "email": "whatthejeff@gmail.com"
1669
- },
1670
- {
1671
- "name": "Volker Dusch",
1672
- "email": "github@wallbash.com"
1673
- },
1674
- {
1675
- "name": "Bernhard Schussek",
1676
- "email": "bschussek@2bepublished.at"
1677
- },
1678
- {
1679
- "name": "Sebastian Bergmann",
1680
- "email": "sebastian@phpunit.de"
1681
- },
1682
- {
1683
- "name": "Adam Harvey",
1684
- "email": "aharvey@php.net"
1685
- }
1686
- ],
1687
- "description": "Provides the functionality to export PHP variables for visualization",
1688
- "homepage": "http://www.github.com/sebastianbergmann/exporter",
1689
- "keywords": [
1690
- "export",
1691
- "exporter"
1692
- ],
1693
- "time": "2015-06-21 07:55:53"
1694
- },
1695
- {
1696
- "name": "sebastian/global-state",
1697
- "version": "1.1.1",
1698
- "source": {
1699
- "type": "git",
1700
- "url": "https://github.com/sebastianbergmann/global-state.git",
1701
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4"
1702
- },
1703
- "dist": {
1704
- "type": "zip",
1705
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4",
1706
- "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4",
1707
- "shasum": ""
1708
- },
1709
- "require": {
1710
- "php": ">=5.3.3"
1711
- },
1712
- "require-dev": {
1713
- "phpunit/phpunit": "~4.2"
1714
- },
1715
- "suggest": {
1716
- "ext-uopz": "*"
1717
- },
1718
- "type": "library",
1719
- "extra": {
1720
- "branch-alias": {
1721
- "dev-master": "1.0-dev"
1722
- }
1723
- },
1724
- "autoload": {
1725
- "classmap": [
1726
- "src/"
1727
- ]
1728
- },
1729
- "notification-url": "https://packagist.org/downloads/",
1730
- "license": [
1731
- "BSD-3-Clause"
1732
- ],
1733
- "authors": [
1734
- {
1735
- "name": "Sebastian Bergmann",
1736
- "email": "sebastian@phpunit.de"
1737
- }
1738
- ],
1739
- "description": "Snapshotting of global state",
1740
- "homepage": "http://www.github.com/sebastianbergmann/global-state",
1741
- "keywords": [
1742
- "global state"
1743
- ],
1744
- "time": "2015-10-12 03:26:01"
1745
- },
1746
- {
1747
- "name": "sebastian/recursion-context",
1748
- "version": "1.0.2",
1749
- "source": {
1750
- "type": "git",
1751
- "url": "https://github.com/sebastianbergmann/recursion-context.git",
1752
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791"
1753
- },
1754
- "dist": {
1755
- "type": "zip",
1756
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791",
1757
- "reference": "913401df809e99e4f47b27cdd781f4a258d58791",
1758
- "shasum": ""
1759
- },
1760
- "require": {
1761
- "php": ">=5.3.3"
1762
- },
1763
- "require-dev": {
1764
- "phpunit/phpunit": "~4.4"
1765
- },
1766
- "type": "library",
1767
- "extra": {
1768
- "branch-alias": {
1769
- "dev-master": "1.0.x-dev"
1770
- }
1771
- },
1772
- "autoload": {
1773
- "classmap": [
1774
- "src/"
1775
- ]
1776
- },
1777
- "notification-url": "https://packagist.org/downloads/",
1778
- "license": [
1779
- "BSD-3-Clause"
1780
- ],
1781
- "authors": [
1782
- {
1783
- "name": "Jeff Welch",
1784
- "email": "whatthejeff@gmail.com"
1785
- },
1786
- {
1787
- "name": "Sebastian Bergmann",
1788
- "email": "sebastian@phpunit.de"
1789
- },
1790
- {
1791
- "name": "Adam Harvey",
1792
- "email": "aharvey@php.net"
1793
- }
1794
- ],
1795
- "description": "Provides functionality to recursively process PHP variables",
1796
- "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
1797
- "time": "2015-11-11 19:50:13"
1798
- },
1799
- {
1800
- "name": "sebastian/resource-operations",
1801
- "version": "1.0.0",
1802
- "source": {
1803
- "type": "git",
1804
- "url": "https://github.com/sebastianbergmann/resource-operations.git",
1805
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52"
1806
- },
1807
- "dist": {
1808
- "type": "zip",
1809
- "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
1810
- "reference": "ce990bb21759f94aeafd30209e8cfcdfa8bc3f52",
1811
- "shasum": ""
1812
- },
1813
- "require": {
1814
- "php": ">=5.6.0"
1815
- },
1816
- "type": "library",
1817
- "extra": {
1818
- "branch-alias": {
1819
- "dev-master": "1.0.x-dev"
1820
- }
1821
- },
1822
- "autoload": {
1823
- "classmap": [
1824
- "src/"
1825
- ]
1826
- },
1827
- "notification-url": "https://packagist.org/downloads/",
1828
- "license": [
1829
- "BSD-3-Clause"
1830
- ],
1831
- "authors": [
1832
- {
1833
- "name": "Sebastian Bergmann",
1834
- "email": "sebastian@phpunit.de"
1835
- }
1836
- ],
1837
- "description": "Provides a list of PHP built-in functions that operate on resources",
1838
- "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
1839
- "time": "2015-07-28 20:34:47"
1840
- },
1841
- {
1842
- "name": "sebastian/version",
1843
- "version": "2.0.0",
1844
- "source": {
1845
- "type": "git",
1846
- "url": "https://github.com/sebastianbergmann/version.git",
1847
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5"
1848
- },
1849
- "dist": {
1850
- "type": "zip",
1851
- "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
1852
- "reference": "c829badbd8fdf16a0bad8aa7fa7971c029f1b9c5",
1853
- "shasum": ""
1854
- },
1855
- "require": {
1856
- "php": ">=5.6"
1857
- },
1858
- "type": "library",
1859
- "extra": {
1860
- "branch-alias": {
1861
- "dev-master": "2.0.x-dev"
1862
- }
1863
- },
1864
- "autoload": {
1865
- "classmap": [
1866
- "src/"
1867
- ]
1868
- },
1869
- "notification-url": "https://packagist.org/downloads/",
1870
- "license": [
1871
- "BSD-3-Clause"
1872
- ],
1873
- "authors": [
1874
- {
1875
- "name": "Sebastian Bergmann",
1876
- "email": "sebastian@phpunit.de",
1877
- "role": "lead"
1878
- }
1879
- ],
1880
- "description": "Library that helps with managing the version number of Git-hosted PHP projects",
1881
- "homepage": "https://github.com/sebastianbergmann/version",
1882
- "time": "2016-02-04 12:56:52"
1883
- },
1884
- {
1885
- "name": "symfony/browser-kit",
1886
- "version": "v3.0.3",
1887
- "source": {
1888
- "type": "git",
1889
- "url": "https://github.com/symfony/browser-kit.git",
1890
- "reference": "dde849a0485b70a24b36f826ed3fb95b904d80c3"
1891
- },
1892
- "dist": {
1893
- "type": "zip",
1894
- "url": "https://api.github.com/repos/symfony/browser-kit/zipball/dde849a0485b70a24b36f826ed3fb95b904d80c3",
1895
- "reference": "dde849a0485b70a24b36f826ed3fb95b904d80c3",
1896
- "shasum": ""
1897
- },
1898
- "require": {
1899
- "php": ">=5.5.9",
1900
- "symfony/dom-crawler": "~2.8|~3.0"
1901
- },
1902
- "require-dev": {
1903
- "symfony/css-selector": "~2.8|~3.0",
1904
- "symfony/process": "~2.8|~3.0"
1905
- },
1906
- "suggest": {
1907
- "symfony/process": ""
1908
- },
1909
- "type": "library",
1910
- "extra": {
1911
- "branch-alias": {
1912
- "dev-master": "3.0-dev"
1913
- }
1914
- },
1915
- "autoload": {
1916
- "psr-4": {
1917
- "Symfony\\Component\\BrowserKit\\": ""
1918
- },
1919
- "exclude-from-classmap": [
1920
- "/Tests/"
1921
- ]
1922
- },
1923
- "notification-url": "https://packagist.org/downloads/",
1924
- "license": [
1925
- "MIT"
1926
- ],
1927
- "authors": [
1928
- {
1929
- "name": "Fabien Potencier",
1930
- "email": "fabien@symfony.com"
1931
- },
1932
- {
1933
- "name": "Symfony Community",
1934
- "homepage": "https://symfony.com/contributors"
1935
- }
1936
- ],
1937
- "description": "Symfony BrowserKit Component",
1938
- "homepage": "https://symfony.com",
1939
- "time": "2016-01-27 11:34:55"
1940
- },
1941
- {
1942
- "name": "symfony/console",
1943
- "version": "v3.0.3",
1944
- "source": {
1945
- "type": "git",
1946
- "url": "https://github.com/symfony/console.git",
1947
- "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04"
1948
- },
1949
- "dist": {
1950
- "type": "zip",
1951
- "url": "https://api.github.com/repos/symfony/console/zipball/2ed5e2706ce92313d120b8fe50d1063bcfd12e04",
1952
- "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04",
1953
- "shasum": ""
1954
- },
1955
- "require": {
1956
- "php": ">=5.5.9",
1957
- "symfony/polyfill-mbstring": "~1.0"
1958
- },
1959
- "require-dev": {
1960
- "psr/log": "~1.0",
1961
- "symfony/event-dispatcher": "~2.8|~3.0",
1962
- "symfony/process": "~2.8|~3.0"
1963
- },
1964
- "suggest": {
1965
- "psr/log": "For using the console logger",
1966
- "symfony/event-dispatcher": "",
1967
- "symfony/process": ""
1968
- },
1969
- "type": "library",
1970
- "extra": {
1971
- "branch-alias": {
1972
- "dev-master": "3.0-dev"
1973
- }
1974
- },
1975
- "autoload": {
1976
- "psr-4": {
1977
- "Symfony\\Component\\Console\\": ""
1978
- },
1979
- "exclude-from-classmap": [
1980
- "/Tests/"
1981
- ]
1982
- },
1983
- "notification-url": "https://packagist.org/downloads/",
1984
- "license": [
1985
- "MIT"
1986
- ],
1987
- "authors": [
1988
- {
1989
- "name": "Fabien Potencier",
1990
- "email": "fabien@symfony.com"
1991
- },
1992
- {
1993
- "name": "Symfony Community",
1994
- "homepage": "https://symfony.com/contributors"
1995
- }
1996
- ],
1997
- "description": "Symfony Console Component",
1998
- "homepage": "https://symfony.com",
1999
- "time": "2016-02-28 16:24:34"
2000
- },
2001
- {
2002
- "name": "symfony/css-selector",
2003
- "version": "v3.0.3",
2004
- "source": {
2005
- "type": "git",
2006
- "url": "https://github.com/symfony/css-selector.git",
2007
- "reference": "6605602690578496091ac20ec7a5cbd160d4dff4"
2008
- },
2009
- "dist": {
2010
- "type": "zip",
2011
- "url": "https://api.github.com/repos/symfony/css-selector/zipball/6605602690578496091ac20ec7a5cbd160d4dff4",
2012
- "reference": "6605602690578496091ac20ec7a5cbd160d4dff4",
2013
- "shasum": ""
2014
- },
2015
- "require": {
2016
- "php": ">=5.5.9"
2017
- },
2018
- "type": "library",
2019
- "extra": {
2020
- "branch-alias": {
2021
- "dev-master": "3.0-dev"
2022
- }
2023
- },
2024
- "autoload": {
2025
- "psr-4": {
2026
- "Symfony\\Component\\CssSelector\\": ""
2027
- },
2028
- "exclude-from-classmap": [
2029
- "/Tests/"
2030
- ]
2031
- },
2032
- "notification-url": "https://packagist.org/downloads/",
2033
- "license": [
2034
- "MIT"
2035
- ],
2036
- "authors": [
2037
- {
2038
- "name": "Jean-François Simon",
2039
- "email": "jeanfrancois.simon@sensiolabs.com"
2040
- },
2041
- {
2042
- "name": "Fabien Potencier",
2043
- "email": "fabien@symfony.com"
2044
- },
2045
- {
2046
- "name": "Symfony Community",
2047
- "homepage": "https://symfony.com/contributors"
2048
- }
2049
- ],
2050
- "description": "Symfony CssSelector Component",
2051
- "homepage": "https://symfony.com",
2052
- "time": "2016-01-27 05:14:46"
2053
- },
2054
- {
2055
- "name": "symfony/dom-crawler",
2056
- "version": "v3.0.3",
2057
- "source": {
2058
- "type": "git",
2059
- "url": "https://github.com/symfony/dom-crawler.git",
2060
- "reference": "981c8edb4538f88ba976ed44bdcaa683fce3d6c6"
2061
- },
2062
- "dist": {
2063
- "type": "zip",
2064
- "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/981c8edb4538f88ba976ed44bdcaa683fce3d6c6",
2065
- "reference": "981c8edb4538f88ba976ed44bdcaa683fce3d6c6",
2066
- "shasum": ""
2067
- },
2068
- "require": {
2069
- "php": ">=5.5.9",
2070
- "symfony/polyfill-mbstring": "~1.0"
2071
- },
2072
- "require-dev": {
2073
- "symfony/css-selector": "~2.8|~3.0"
2074
- },
2075
- "suggest": {
2076
- "symfony/css-selector": ""
2077
- },
2078
- "type": "library",
2079
- "extra": {
2080
- "branch-alias": {
2081
- "dev-master": "3.0-dev"
2082
- }
2083
- },
2084
- "autoload": {
2085
- "psr-4": {
2086
- "Symfony\\Component\\DomCrawler\\": ""
2087
- },
2088
- "exclude-from-classmap": [
2089
- "/Tests/"
2090
- ]
2091
- },
2092
- "notification-url": "https://packagist.org/downloads/",
2093
- "license": [
2094
- "MIT"
2095
- ],
2096
- "authors": [
2097
- {
2098
- "name": "Fabien Potencier",
2099
- "email": "fabien@symfony.com"
2100
- },
2101
- {
2102
- "name": "Symfony Community",
2103
- "homepage": "https://symfony.com/contributors"
2104
- }
2105
- ],
2106
- "description": "Symfony DomCrawler Component",
2107
- "homepage": "https://symfony.com",
2108
- "time": "2016-02-28 16:24:34"
2109
- },
2110
- {
2111
- "name": "symfony/event-dispatcher",
2112
- "version": "v3.0.3",
2113
- "source": {
2114
- "type": "git",
2115
- "url": "https://github.com/symfony/event-dispatcher.git",
2116
- "reference": "4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa"
2117
- },
2118
- "dist": {
2119
- "type": "zip",
2120
- "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa",
2121
- "reference": "4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa",
2122
- "shasum": ""
2123
- },
2124
- "require": {
2125
- "php": ">=5.5.9"
2126
- },
2127
- "require-dev": {
2128
- "psr/log": "~1.0",
2129
- "symfony/config": "~2.8|~3.0",
2130
- "symfony/dependency-injection": "~2.8|~3.0",
2131
- "symfony/expression-language": "~2.8|~3.0",
2132
- "symfony/stopwatch": "~2.8|~3.0"
2133
- },
2134
- "suggest": {
2135
- "symfony/dependency-injection": "",
2136
- "symfony/http-kernel": ""
2137
- },
2138
- "type": "library",
2139
- "extra": {
2140
- "branch-alias": {
2141
- "dev-master": "3.0-dev"
2142
- }
2143
- },
2144
- "autoload": {
2145
- "psr-4": {
2146
- "Symfony\\Component\\EventDispatcher\\": ""
2147
- },
2148
- "exclude-from-classmap": [
2149
- "/Tests/"
2150
- ]
2151
- },
2152
- "notification-url": "https://packagist.org/downloads/",
2153
- "license": [
2154
- "MIT"
2155
- ],
2156
- "authors": [
2157
- {
2158
- "name": "Fabien Potencier",
2159
- "email": "fabien@symfony.com"
2160
- },
2161
- {
2162
- "name": "Symfony Community",
2163
- "homepage": "https://symfony.com/contributors"
2164
- }
2165
- ],
2166
- "description": "Symfony EventDispatcher Component",
2167
- "homepage": "https://symfony.com",
2168
- "time": "2016-01-27 05:14:46"
2169
- },
2170
- {
2171
- "name": "symfony/filesystem",
2172
- "version": "v2.8.3",
2173
- "source": {
2174
- "type": "git",
2175
- "url": "https://github.com/symfony/filesystem.git",
2176
- "reference": "65cb36b6539b1d446527d60457248f30d045464d"
2177
- },
2178
- "dist": {
2179
- "type": "zip",
2180
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/65cb36b6539b1d446527d60457248f30d045464d",
2181
- "reference": "65cb36b6539b1d446527d60457248f30d045464d",
2182
- "shasum": ""
2183
- },
2184
- "require": {
2185
- "php": ">=5.3.9"
2186
- },
2187
- "type": "library",
2188
- "extra": {
2189
- "branch-alias": {
2190
- "dev-master": "2.8-dev"
2191
- }
2192
- },
2193
- "autoload": {
2194
- "psr-4": {
2195
- "Symfony\\Component\\Filesystem\\": ""
2196
- },
2197
- "exclude-from-classmap": [
2198
- "/Tests/"
2199
- ]
2200
- },
2201
- "notification-url": "https://packagist.org/downloads/",
2202
- "license": [
2203
- "MIT"
2204
- ],
2205
- "authors": [
2206
- {
2207
- "name": "Fabien Potencier",
2208
- "email": "fabien@symfony.com"
2209
- },
2210
- {
2211
- "name": "Symfony Community",
2212
- "homepage": "https://symfony.com/contributors"
2213
- }
2214
- ],
2215
- "description": "Symfony Filesystem Component",
2216
- "homepage": "https://symfony.com",
2217
- "time": "2016-02-22 15:02:30"
2218
- },
2219
- {
2220
- "name": "symfony/finder",
2221
- "version": "v3.0.3",
2222
- "source": {
2223
- "type": "git",
2224
- "url": "https://github.com/symfony/finder.git",
2225
- "reference": "623bda0abd9aa29e529c8e9c08b3b84171914723"
2226
- },
2227
- "dist": {
2228
- "type": "zip",
2229
- "url": "https://api.github.com/repos/symfony/finder/zipball/623bda0abd9aa29e529c8e9c08b3b84171914723",
2230
- "reference": "623bda0abd9aa29e529c8e9c08b3b84171914723",
2231
- "shasum": ""
2232
- },
2233
- "require": {
2234
- "php": ">=5.5.9"
2235
- },
2236
- "type": "library",
2237
- "extra": {
2238
- "branch-alias": {
2239
- "dev-master": "3.0-dev"
2240
- }
2241
- },
2242
- "autoload": {
2243
- "psr-4": {
2244
- "Symfony\\Component\\Finder\\": ""
2245
- },
2246
- "exclude-from-classmap": [
2247
- "/Tests/"
2248
- ]
2249
- },
2250
- "notification-url": "https://packagist.org/downloads/",
2251
- "license": [
2252
- "MIT"
2253
- ],
2254
- "authors": [
2255
- {
2256
- "name": "Fabien Potencier",
2257
- "email": "fabien@symfony.com"
2258
- },
2259
- {
2260
- "name": "Symfony Community",
2261
- "homepage": "https://symfony.com/contributors"
2262
- }
2263
- ],
2264
- "description": "Symfony Finder Component",
2265
- "homepage": "https://symfony.com",
2266
- "time": "2016-01-27 05:14:46"
2267
- },
2268
- {
2269
- "name": "symfony/polyfill-mbstring",
2270
- "version": "v1.1.1",
2271
- "source": {
2272
- "type": "git",
2273
- "url": "https://github.com/symfony/polyfill-mbstring.git",
2274
- "reference": "1289d16209491b584839022f29257ad859b8532d"
2275
- },
2276
- "dist": {
2277
- "type": "zip",
2278
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d",
2279
- "reference": "1289d16209491b584839022f29257ad859b8532d",
2280
- "shasum": ""
2281
- },
2282
- "require": {
2283
- "php": ">=5.3.3"
2284
- },
2285
- "suggest": {
2286
- "ext-mbstring": "For best performance"
2287
- },
2288
- "type": "library",
2289
- "extra": {
2290
- "branch-alias": {
2291
- "dev-master": "1.1-dev"
2292
- }
2293
- },
2294
- "autoload": {
2295
- "psr-4": {
2296
- "Symfony\\Polyfill\\Mbstring\\": ""
2297
- },
2298
- "files": [
2299
- "bootstrap.php"
2300
- ]
2301
- },
2302
- "notification-url": "https://packagist.org/downloads/",
2303
- "license": [
2304
- "MIT"
2305
- ],
2306
- "authors": [
2307
- {
2308
- "name": "Nicolas Grekas",
2309
- "email": "p@tchwork.com"
2310
- },
2311
- {
2312
- "name": "Symfony Community",
2313
- "homepage": "https://symfony.com/contributors"
2314
- }
2315
- ],
2316
- "description": "Symfony polyfill for the Mbstring extension",
2317
- "homepage": "https://symfony.com",
2318
- "keywords": [
2319
- "compatibility",
2320
- "mbstring",
2321
- "polyfill",
2322
- "portable",
2323
- "shim"
2324
- ],
2325
- "time": "2016-01-20 09:13:37"
2326
- },
2327
- {
2328
- "name": "symfony/yaml",
2329
- "version": "v3.0.3",
2330
- "source": {
2331
- "type": "git",
2332
- "url": "https://github.com/symfony/yaml.git",
2333
- "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c"
2334
- },
2335
- "dist": {
2336
- "type": "zip",
2337
- "url": "https://api.github.com/repos/symfony/yaml/zipball/b5ba64cd67ecd6887f63868fa781ca094bd1377c",
2338
- "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c",
2339
- "shasum": ""
2340
- },
2341
- "require": {
2342
- "php": ">=5.5.9"
2343
- },
2344
- "type": "library",
2345
- "extra": {
2346
- "branch-alias": {
2347
- "dev-master": "3.0-dev"
2348
- }
2349
- },
2350
- "autoload": {
2351
- "psr-4": {
2352
- "Symfony\\Component\\Yaml\\": ""
2353
- },
2354
- "exclude-from-classmap": [
2355
- "/Tests/"
2356
- ]
2357
- },
2358
- "notification-url": "https://packagist.org/downloads/",
2359
- "license": [
2360
- "MIT"
2361
- ],
2362
- "authors": [
2363
- {
2364
- "name": "Fabien Potencier",
2365
- "email": "fabien@symfony.com"
2366
- },
2367
- {
2368
- "name": "Symfony Community",
2369
- "homepage": "https://symfony.com/contributors"
2370
- }
2371
- ],
2372
- "description": "Symfony Yaml Component",
2373
- "homepage": "https://symfony.com",
2374
- "time": "2016-02-23 15:16:06"
2375
- },
2376
- {
2377
- "name": "xamin/handlebars.php",
2378
- "version": "v0.10.3",
2379
- "source": {
2380
- "type": "git",
2381
- "url": "https://github.com/XaminProject/handlebars.php.git",
2382
- "reference": "5e1db1d1c7969fae32eab331a3b4d9b93257a709"
2383
- },
2384
- "dist": {
2385
- "type": "zip",
2386
- "url": "https://api.github.com/repos/XaminProject/handlebars.php/zipball/5e1db1d1c7969fae32eab331a3b4d9b93257a709",
2387
- "reference": "5e1db1d1c7969fae32eab331a3b4d9b93257a709",
2388
- "shasum": ""
2389
- },
2390
- "require-dev": {
2391
- "phpunit/phpunit": "~4.4",
2392
- "squizlabs/php_codesniffer": "~1.5"
2393
- },
2394
- "type": "library",
2395
- "autoload": {
2396
- "psr-0": {
2397
- "Handlebars": "src/"
2398
- }
2399
- },
2400
- "notification-url": "https://packagist.org/downloads/",
2401
- "license": [
2402
- "MIT"
2403
- ],
2404
- "authors": [
2405
- {
2406
- "name": "fzerorubigd",
2407
- "email": "fzerorubigd@gmail.com"
2408
- },
2409
- {
2410
- "name": "Behrooz Shabani (everplays)",
2411
- "email": "everplays@gmail.com"
2412
- }
2413
- ],
2414
- "description": "Handlebars processor for php",
2415
- "homepage": "https://github.com/XaminProject/handlebars.php",
2416
- "time": "2015-08-06 22:16:36"
2417
- },
2418
- {
2419
- "name": "xrstf/composer-php52",
2420
- "version": "v1.0.19",
2421
- "source": {
2422
- "type": "hg",
2423
- "url": "https://bitbucket.org/xrstf/composer-php52",
2424
- "reference": "9a4a9c46d0347b39bf9159815301dc66fc25324e"
2425
- },
2426
- "dist": {
2427
- "type": "zip",
2428
- "url": "https://bitbucket.org/xrstf/composer-php52/get/9a4a9c46d0347b39bf9159815301dc66fc25324e.zip",
2429
- "reference": "9a4a9c46d0347b39bf9159815301dc66fc25324e",
2430
- "shasum": ""
2431
- },
2432
- "type": "library",
2433
- "extra": {
2434
- "branch-alias": {
2435
- "dev-default": "1.x-dev"
2436
- }
2437
- },
2438
- "autoload": {
2439
- "psr-0": {
2440
- "xrstf\\Composer52": "lib/"
2441
- }
2442
- },
2443
- "notification-url": "https://packagist.org/downloads/",
2444
- "license": [
2445
- "MIT"
2446
- ],
2447
- "homepage": "http://www.xrstf.de/",
2448
- "time": "2015-10-01 14:11:58"
2449
- }
2450
- ],
2451
- "aliases": [],
2452
- "minimum-stability": "stable",
2453
- "stability-flags": [],
2454
- "prefer-stable": false,
2455
- "prefer-lowest": false,
2456
- "platform": {
2457
- "php": ">=5.2"
2458
- },
2459
- "platform-dev": []
2460
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/minimum-requirements.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Minimum_Requirements for Theme and plugin
4
  *
5
- * @package WP_Requirements
6
  * @author Enea Overclokk
7
  * @license GPL-2.0+
8
  *
@@ -10,7 +10,7 @@
10
  * Plugin Name: Minimum_Requirements for Theme and plugin
11
  * Plugin URI: https://example.com/plugin-name
12
  * Description: ONLY FOR DEVELOPERS - Use it if you want to check the minimum requirements for you theme and plugin, include it in your project.
13
- * Version: 1.0.0beta
14
  * Author: Enea Overclokk
15
  * Author URI: https://www.italystrap.com
16
  * Text Domain: minimum_requirements
@@ -243,9 +243,9 @@ if ( ! class_exists( 'Minimum_Requirements' ) ) {
243
 
244
  if ( ! $this->is_compatible_version() ) {
245
 
246
- $message = __( 'Activation of %s in not possible', 'minimum_requirements' );
247
 
248
- $html = '<div>' . __( 'Activation of ' . $this->name . ' in not possible', 'minimum_requirements' ) . ':</div><ul>';
249
 
250
  if ( ! $this->is_compatible_php() ) {
251
  $html .= '<li>' . $this->get_admin_notices_php( false ) . '</li>';
@@ -261,7 +261,7 @@ if ( ! class_exists( 'Minimum_Requirements' ) ) {
261
 
262
  $html .= '</ul>';
263
 
264
- wp_die( $html, __( 'Activation of ' . $this->name . ' in not possible', 'minimum_requirements' ), array( 'back_link' => true ) ); // XSS ok.
265
  };
266
  }
267
 
2
  /**
3
  * Minimum_Requirements for Theme and plugin
4
  *
5
+ * @package Minimum_Requirements
6
  * @author Enea Overclokk
7
  * @license GPL-2.0+
8
  *
10
  * Plugin Name: Minimum_Requirements for Theme and plugin
11
  * Plugin URI: https://example.com/plugin-name
12
  * Description: ONLY FOR DEVELOPERS - Use it if you want to check the minimum requirements for you theme and plugin, include it in your project.
13
+ * Version: 1.0.0
14
  * Author: Enea Overclokk
15
  * Author URI: https://www.italystrap.com
16
  * Text Domain: minimum_requirements
243
 
244
  if ( ! $this->is_compatible_version() ) {
245
 
246
+ $message = __( 'Activation of %s is not possible', 'minimum_requirements' );
247
 
248
+ $html = '<div>' . sprintf( $message, $this->name ) . ':</div><ul>';
249
 
250
  if ( ! $this->is_compatible_php() ) {
251
  $html .= '<li>' . $this->get_admin_notices_php( false ) . '</li>';
261
 
262
  $html .= '</ul>';
263
 
264
+ wp_die( $html, sprintf( $message, $this->name ), array( 'back_link' => true ) ); // XSS ok.
265
  };
266
  }
267
 
vendor/overclokk/minimum-requirements/tests/_bootstrap.php DELETED
@@ -1,3 +0,0 @@
1
- <?php
2
- // This is global bootstrap for autoloading
3
- tad\FunctionMocker\FunctionMocker::init();
 
 
 
vendor/overclokk/minimum-requirements/tests/_data/dump.sql DELETED
@@ -1 +0,0 @@
1
- /* Replace this file with actual dump of your database */
 
vendor/overclokk/minimum-requirements/tests/_support/AcceptanceTester.php DELETED
@@ -1,26 +0,0 @@
1
- <?php
2
-
3
-
4
- /**
5
- * Inherited Methods
6
- * @method void wantToTest($text)
7
- * @method void wantTo($text)
8
- * @method void execute($callable)
9
- * @method void expectTo($prediction)
10
- * @method void expect($prediction)
11
- * @method void amGoingTo($argumentation)
12
- * @method void am($role)
13
- * @method void lookForwardTo($achieveValue)
14
- * @method void comment($description)
15
- * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
16
- *
17
- * @SuppressWarnings(PHPMD)
18
- */
19
- class AcceptanceTester extends \Codeception\Actor
20
- {
21
- use _generated\AcceptanceTesterActions;
22
-
23
- /**
24
- * Define custom actions here
25
- */
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/FunctionalTester.php DELETED
@@ -1,26 +0,0 @@
1
- <?php
2
-
3
-
4
- /**
5
- * Inherited Methods
6
- * @method void wantToTest($text)
7
- * @method void wantTo($text)
8
- * @method void execute($callable)
9
- * @method void expectTo($prediction)
10
- * @method void expect($prediction)
11
- * @method void amGoingTo($argumentation)
12
- * @method void am($role)
13
- * @method void lookForwardTo($achieveValue)
14
- * @method void comment($description)
15
- * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
16
- *
17
- * @SuppressWarnings(PHPMD)
18
- */
19
- class FunctionalTester extends \Codeception\Actor
20
- {
21
- use _generated\FunctionalTesterActions;
22
-
23
- /**
24
- * Define custom actions here
25
- */
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/Helper/Acceptance.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
- namespace Helper;
3
-
4
- // here you can define custom actions
5
- // all public methods declared in helper class will be available in $I
6
-
7
- class Acceptance extends \Codeception\Module
8
- {
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/Helper/Functional.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
- namespace Helper;
3
-
4
- // here you can define custom actions
5
- // all public methods declared in helper class will be available in $I
6
-
7
- class Functional extends \Codeception\Module
8
- {
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/Helper/Unit.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
- namespace Helper;
3
-
4
- // here you can define custom actions
5
- // all public methods declared in helper class will be available in $I
6
-
7
- class Unit extends \Codeception\Module
8
- {
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/Helper/Wpunit.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
- namespace Helper;
3
-
4
- // here you can define custom actions
5
- // all public methods declared in helper class will be available in $I
6
-
7
- class Wpunit extends \Codeception\Module
8
- {
9
-
10
- }
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/UnitTester.php DELETED
@@ -1,26 +0,0 @@
1
- <?php
2
-
3
-
4
- /**
5
- * Inherited Methods
6
- * @method void wantToTest($text)
7
- * @method void wantTo($text)
8
- * @method void execute($callable)
9
- * @method void expectTo($prediction)
10
- * @method void expect($prediction)
11
- * @method void amGoingTo($argumentation)
12
- * @method void am($role)
13
- * @method void lookForwardTo($achieveValue)
14
- * @method void comment($description)
15
- * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
16
- *
17
- * @SuppressWarnings(PHPMD)
18
- */
19
- class UnitTester extends \Codeception\Actor
20
- {
21
- use _generated\UnitTesterActions;
22
-
23
- /**
24
- * Define custom actions here
25
- */
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/WpunitTester.php DELETED
@@ -1,26 +0,0 @@
1
- <?php
2
-
3
-
4
- /**
5
- * Inherited Methods
6
- * @method void wantToTest($text)
7
- * @method void wantTo($text)
8
- * @method void execute($callable)
9
- * @method void expectTo($prediction)
10
- * @method void expect($prediction)
11
- * @method void amGoingTo($argumentation)
12
- * @method void am($role)
13
- * @method void lookForwardTo($achieveValue)
14
- * @method void comment($description)
15
- * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
16
- *
17
- * @SuppressWarnings(PHPMD)
18
- */
19
- class WpunitTester extends \Codeception\Actor
20
- {
21
- use _generated\WpunitTesterActions;
22
-
23
- /**
24
- * Define custom actions here
25
- */
26
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/_generated/AcceptanceTesterActions.php DELETED
@@ -1,2560 +0,0 @@
1
- <?php //[STAMP] 10b18dcc7198f3d537a7583e5824ecea
2
- namespace _generated;
3
-
4
- // This class was automatically generated by build task
5
- // You should not change it manually as it will be overwritten on next build
6
- // @codingStandardsIgnoreFile
7
-
8
- use Codeception\Module\WPBrowser;
9
- use Helper\Acceptance;
10
-
11
- trait AcceptanceTesterActions
12
- {
13
- /**
14
- * @return \Codeception\Scenario
15
- */
16
- abstract protected function getScenario();
17
-
18
-
19
- /**
20
- * [!] Method is generated. Documentation taken from corresponding module.
21
- *
22
- * Returns all the cookies whose name matches a regex pattern.
23
- *
24
- * @param string $cookiePattern
25
- *
26
- * @return Cookie|null
27
- * @see \Codeception\Module\WPBrowser::grabCookiesWithPattern()
28
- */
29
- public function grabCookiesWithPattern($cookiePattern) {
30
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabCookiesWithPattern', func_get_args()));
31
- }
32
-
33
-
34
- /**
35
- * [!] Method is generated. Documentation taken from corresponding module.
36
- *
37
- * Sets the HTTP header to the passed value - which is used on
38
- * subsequent HTTP requests through PhpBrowser.
39
- *
40
- * Example:
41
- * ```php
42
- * <?php
43
- * $I->setHeader('X-Requested-With', 'Codeception');
44
- * $I->amOnPage('test-headers.php');
45
- * ?>
46
- * ```
47
- *
48
- * @param string $name the name of the request header
49
- * @param string $value the value to set it to for subsequent
50
- * requests
51
- * @see \Codeception\Module\PhpBrowser::setHeader()
52
- */
53
- public function setHeader($name, $value) {
54
- return $this->getScenario()->runStep(new \Codeception\Step\Action('setHeader', func_get_args()));
55
- }
56
-
57
-
58
- /**
59
- * [!] Method is generated. Documentation taken from corresponding module.
60
- *
61
- * Deletes the header with the passed name. Subsequent requests
62
- * will not have the deleted header in its request.
63
- *
64
- * Example:
65
- * ```php
66
- * <?php
67
- * $I->setHeader('X-Requested-With', 'Codeception');
68
- * $I->amOnPage('test-headers.php');
69
- * // ...
70
- * $I->deleteHeader('X-Requested-With');
71
- * $I->amOnPage('some-other-page.php');
72
- * ?>
73
- * ```
74
- *
75
- * @param string $name the name of the header to delete.
76
- * @see \Codeception\Module\PhpBrowser::deleteHeader()
77
- */
78
- public function deleteHeader($name) {
79
- return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteHeader', func_get_args()));
80
- }
81
-
82
-
83
- /**
84
- * [!] Method is generated. Documentation taken from corresponding module.
85
- *
86
- * Authenticates user for HTTP_AUTH
87
- *
88
- * @param $username
89
- * @param $password
90
- * @see \Codeception\Module\PhpBrowser::amHttpAuthenticated()
91
- */
92
- public function amHttpAuthenticated($username, $password) {
93
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amHttpAuthenticated', func_get_args()));
94
- }
95
-
96
-
97
- /**
98
- * [!] Method is generated. Documentation taken from corresponding module.
99
- *
100
- * Open web page at the given absolute URL and sets its hostname as the base host.
101
- *
102
- * ``` php
103
- * <?php
104
- * $I->amOnUrl('http://codeception.com');
105
- * $I->amOnPage('/quickstart'); // moves to http://codeception.com/quickstart
106
- * ?>
107
- * ```
108
- * @see \Codeception\Module\PhpBrowser::amOnUrl()
109
- */
110
- public function amOnUrl($url) {
111
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnUrl', func_get_args()));
112
- }
113
-
114
-
115
- /**
116
- * [!] Method is generated. Documentation taken from corresponding module.
117
- *
118
- * Changes the subdomain for the 'url' configuration parameter.
119
- * Does not open a page; use `amOnPage` for that.
120
- *
121
- * ``` php
122
- * <?php
123
- * // If config is: 'http://mysite.com'
124
- * // or config is: 'http://www.mysite.com'
125
- * // or config is: 'http://company.mysite.com'
126
- *
127
- * $I->amOnSubdomain('user');
128
- * $I->amOnPage('/');
129
- * // moves to http://user.mysite.com/
130
- * ?>
131
- * ```
132
- *
133
- * @param $subdomain
134
- *
135
- * @return mixed
136
- * @see \Codeception\Module\PhpBrowser::amOnSubdomain()
137
- */
138
- public function amOnSubdomain($subdomain) {
139
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnSubdomain', func_get_args()));
140
- }
141
-
142
-
143
- /**
144
- * [!] Method is generated. Documentation taken from corresponding module.
145
- *
146
- * Low-level API method.
147
- * If Codeception commands are not enough, use [Guzzle HTTP Client](http://guzzlephp.org/) methods directly
148
- *
149
- * Example:
150
- *
151
- * ``` php
152
- * <?php
153
- * $I->executeInGuzzle(function (\GuzzleHttp\Client $client) {
154
- * $client->get('/get', ['query' => ['foo' => 'bar']]);
155
- * });
156
- * ?>
157
- * ```
158
- *
159
- * It is not recommended to use this command on a regular basis.
160
- * If Codeception lacks important Guzzle Client methods, implement them and submit patches.
161
- *
162
- * @param callable $function
163
- * @see \Codeception\Module\PhpBrowser::executeInGuzzle()
164
- */
165
- public function executeInGuzzle($function) {
166
- return $this->getScenario()->runStep(new \Codeception\Step\Action('executeInGuzzle', func_get_args()));
167
- }
168
-
169
-
170
- /**
171
- * [!] Method is generated. Documentation taken from corresponding module.
172
- *
173
- * Opens the page for the given relative URI.
174
- *
175
- * ``` php
176
- * <?php
177
- * // opens front page
178
- * $I->amOnPage('/');
179
- * // opens /register page
180
- * $I->amOnPage('/register');
181
- * ```
182
- *
183
- * @param $page
184
- * @see \Codeception\Lib\InnerBrowser::amOnPage()
185
- */
186
- public function amOnPage($page) {
187
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnPage', func_get_args()));
188
- }
189
-
190
-
191
- /**
192
- * [!] Method is generated. Documentation taken from corresponding module.
193
- *
194
- * Perform a click on a link or a button, given by a locator.
195
- * If a fuzzy locator is given, the page will be searched for a button, link, or image matching the locator string.
196
- * For buttons, the "value" attribute, "name" attribute, and inner text are searched.
197
- * For links, the link text is searched.
198
- * For images, the "alt" attribute and inner text of any parent links are searched.
199
- *
200
- * The second parameter is a context (CSS or XPath locator) to narrow the search.
201
- *
202
- * Note that if the locator matches a button of type `submit`, the form will be submitted.
203
- *
204
- * ``` php
205
- * <?php
206
- * // simple link
207
- * $I->click('Logout');
208
- * // button of form
209
- * $I->click('Submit');
210
- * // CSS button
211
- * $I->click('#form input[type=submit]');
212
- * // XPath
213
- * $I->click('//form/*[@type=submit]');
214
- * // link in context
215
- * $I->click('Logout', '#nav');
216
- * // using strict locator
217
- * $I->click(['link' => 'Login']);
218
- * ?>
219
- * ```
220
- *
221
- * @param $link
222
- * @param $context
223
- * @see \Codeception\Lib\InnerBrowser::click()
224
- */
225
- public function click($link, $context = null) {
226
- return $this->getScenario()->runStep(new \Codeception\Step\Action('click', func_get_args()));
227
- }
228
-
229
-
230
- /**
231
- * [!] Method is generated. Documentation taken from corresponding module.
232
- *
233
- * Checks that the current page contains the given string (case insensitive).
234
- *
235
- * You can specify a specific HTML element (via CSS or XPath) as the second
236
- * parameter to only search within that element.
237
- *
238
- * ``` php
239
- * <?php
240
- * $I->see('Logout'); // I can suppose user is logged in
241
- * $I->see('Sign Up', 'h1'); // I can suppose it's a signup page
242
- * $I->see('Sign Up', '//body/h1'); // with XPath
243
- * ```
244
- *
245
- * Note that the search is done after stripping all HTML tags from the body,
246
- * so `$I->see('strong')` will return true for strings like:
247
- *
248
- * - `<p>I am Stronger than thou</p>`
249
- * - `<script>document.createElement('strong');</script>`
250
- *
251
- * But will *not* be true for strings like:
252
- *
253
- * - `<strong>Home</strong>`
254
- * - `<div class="strong">Home</strong>`
255
- * - `<!-- strong -->`
256
- *
257
- * For checking the raw source code, use `seeInSource()`.
258
- *
259
- * @param $text
260
- * @param null $selector
261
- * Conditional Assertion: Test won't be stopped on fail
262
- * @see \Codeception\Lib\InnerBrowser::see()
263
- */
264
- public function canSee($text, $selector = null) {
265
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('see', func_get_args()));
266
- }
267
- /**
268
- * [!] Method is generated. Documentation taken from corresponding module.
269
- *
270
- * Checks that the current page contains the given string (case insensitive).
271
- *
272
- * You can specify a specific HTML element (via CSS or XPath) as the second
273
- * parameter to only search within that element.
274
- *
275
- * ``` php
276
- * <?php
277
- * $I->see('Logout'); // I can suppose user is logged in
278
- * $I->see('Sign Up', 'h1'); // I can suppose it's a signup page
279
- * $I->see('Sign Up', '//body/h1'); // with XPath
280
- * ```
281
- *
282
- * Note that the search is done after stripping all HTML tags from the body,
283
- * so `$I->see('strong')` will return true for strings like:
284
- *
285
- * - `<p>I am Stronger than thou</p>`
286
- * - `<script>document.createElement('strong');</script>`
287
- *
288
- * But will *not* be true for strings like:
289
- *
290
- * - `<strong>Home</strong>`
291
- * - `<div class="strong">Home</strong>`
292
- * - `<!-- strong -->`
293
- *
294
- * For checking the raw source code, use `seeInSource()`.
295
- *
296
- * @param $text
297
- * @param null $selector
298
- * @see \Codeception\Lib\InnerBrowser::see()
299
- */
300
- public function see($text, $selector = null) {
301
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('see', func_get_args()));
302
- }
303
-
304
-
305
- /**
306
- * [!] Method is generated. Documentation taken from corresponding module.
307
- *
308
- * Checks that the current page doesn't contain the text specified (case insensitive).
309
- * Give a locator as the second parameter to match a specific region.
310
- *
311
- * ```php
312
- * <?php
313
- * $I->dontSee('Login'); // I can suppose user is already logged in
314
- * $I->dontSee('Sign Up','h1'); // I can suppose it's not a signup page
315
- * $I->dontSee('Sign Up','//body/h1'); // with XPath
316
- * ```
317
- *
318
- * Note that the search is done after stripping all HTML tags from the body,
319
- * so `$I->dontSee('strong')` will fail on strings like:
320
- *
321
- * - `<p>I am Stronger than thou</p>`
322
- * - `<script>document.createElement('strong');</script>`
323
- *
324
- * But will ignore strings like:
325
- *
326
- * - `<strong>Home</strong>`
327
- * - `<div class="strong">Home</strong>`
328
- * - `<!-- strong -->`
329
- *
330
- * For checking the raw source code, use `seeInSource()`.
331
- *
332
- * @param $text
333
- * @param null $selector
334
- * Conditional Assertion: Test won't be stopped on fail
335
- * @see \Codeception\Lib\InnerBrowser::dontSee()
336
- */
337
- public function cantSee($text, $selector = null) {
338
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSee', func_get_args()));
339
- }
340
- /**
341
- * [!] Method is generated. Documentation taken from corresponding module.
342
- *
343
- * Checks that the current page doesn't contain the text specified (case insensitive).
344
- * Give a locator as the second parameter to match a specific region.
345
- *
346
- * ```php
347
- * <?php
348
- * $I->dontSee('Login'); // I can suppose user is already logged in
349
- * $I->dontSee('Sign Up','h1'); // I can suppose it's not a signup page
350
- * $I->dontSee('Sign Up','//body/h1'); // with XPath
351
- * ```
352
- *
353
- * Note that the search is done after stripping all HTML tags from the body,
354
- * so `$I->dontSee('strong')` will fail on strings like:
355
- *
356
- * - `<p>I am Stronger than thou</p>`
357
- * - `<script>document.createElement('strong');</script>`
358
- *
359
- * But will ignore strings like:
360
- *
361
- * - `<strong>Home</strong>`
362
- * - `<div class="strong">Home</strong>`
363
- * - `<!-- strong -->`
364
- *
365
- * For checking the raw source code, use `seeInSource()`.
366
- *
367
- * @param $text
368
- * @param null $selector
369
- * @see \Codeception\Lib\InnerBrowser::dontSee()
370
- */
371
- public function dontSee($text, $selector = null) {
372
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSee', func_get_args()));
373
- }
374
-
375
-
376
- /**
377
- * [!] Method is generated. Documentation taken from corresponding module.
378
- *
379
- * Checks that the current page contains the given string in its
380
- * raw source code.
381
- *
382
- * ``` php
383
- * <?php
384
- * $I->seeInSource('<h1>Green eggs &amp; ham</h1>');
385
- * ```
386
- *
387
- * @param $raw
388
- * Conditional Assertion: Test won't be stopped on fail
389
- * @see \Codeception\Lib\InnerBrowser::seeInSource()
390
- */
391
- public function canSeeInSource($raw) {
392
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInSource', func_get_args()));
393
- }
394
- /**
395
- * [!] Method is generated. Documentation taken from corresponding module.
396
- *
397
- * Checks that the current page contains the given string in its
398
- * raw source code.
399
- *
400
- * ``` php
401
- * <?php
402
- * $I->seeInSource('<h1>Green eggs &amp; ham</h1>');
403
- * ```
404
- *
405
- * @param $raw
406
- * @see \Codeception\Lib\InnerBrowser::seeInSource()
407
- */
408
- public function seeInSource($raw) {
409
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInSource', func_get_args()));
410
- }
411
-
412
-
413
- /**
414
- * [!] Method is generated. Documentation taken from corresponding module.
415
- *
416
- * Checks that the current page contains the given string in its
417
- * raw source code.
418
- *
419
- * ```php
420
- * <?php
421
- * $I->dontSeeInSource('<h1>Green eggs &amp; ham</h1>');
422
- * ```
423
- *
424
- * @param $raw
425
- * Conditional Assertion: Test won't be stopped on fail
426
- * @see \Codeception\Lib\InnerBrowser::dontSeeInSource()
427
- */
428
- public function cantSeeInSource($raw) {
429
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInSource', func_get_args()));
430
- }
431
- /**
432
- * [!] Method is generated. Documentation taken from corresponding module.
433
- *
434
- * Checks that the current page contains the given string in its
435
- * raw source code.
436
- *
437
- * ```php
438
- * <?php
439
- * $I->dontSeeInSource('<h1>Green eggs &amp; ham</h1>');
440
- * ```
441
- *
442
- * @param $raw
443
- * @see \Codeception\Lib\InnerBrowser::dontSeeInSource()
444
- */
445
- public function dontSeeInSource($raw) {
446
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInSource', func_get_args()));
447
- }
448
-
449
-
450
- /**
451
- * [!] Method is generated. Documentation taken from corresponding module.
452
- *
453
- * Checks that there's a link with the specified text.
454
- * Give a full URL as the second parameter to match links with that exact URL.
455
- *
456
- * ``` php
457
- * <?php
458
- * $I->seeLink('Logout'); // matches <a href="#">Logout</a>
459
- * $I->seeLink('Logout','/logout'); // matches <a href="/logout">Logout</a>
460
- * ?>
461
- * ```
462
- *
463
- * @param $text
464
- * @param null $url
465
- * Conditional Assertion: Test won't be stopped on fail
466
- * @see \Codeception\Lib\InnerBrowser::seeLink()
467
- */
468
- public function canSeeLink($text, $url = null) {
469
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeLink', func_get_args()));
470
- }
471
- /**
472
- * [!] Method is generated. Documentation taken from corresponding module.
473
- *
474
- * Checks that there's a link with the specified text.
475
- * Give a full URL as the second parameter to match links with that exact URL.
476
- *
477
- * ``` php
478
- * <?php
479
- * $I->seeLink('Logout'); // matches <a href="#">Logout</a>
480
- * $I->seeLink('Logout','/logout'); // matches <a href="/logout">Logout</a>
481
- * ?>
482
- * ```
483
- *
484
- * @param $text
485
- * @param null $url
486
- * @see \Codeception\Lib\InnerBrowser::seeLink()
487
- */
488
- public function seeLink($text, $url = null) {
489
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeLink', func_get_args()));
490
- }
491
-
492
-
493
- /**
494
- * [!] Method is generated. Documentation taken from corresponding module.
495
- *
496
- * Checks that the page doesn't contain a link with the given string.
497
- * If the second parameter is given, only links with a matching "href" attribute will be checked.
498
- *
499
- * ``` php
500
- * <?php
501
- * $I->dontSeeLink('Logout'); // I suppose user is not logged in
502
- * $I->dontSeeLink('Checkout now', '/store/cart.php');
503
- * ?>
504
- * ```
505
- *
506
- * @param $text
507
- * @param null $url
508
- * Conditional Assertion: Test won't be stopped on fail
509
- * @see \Codeception\Lib\InnerBrowser::dontSeeLink()
510
- */
511
- public function cantSeeLink($text, $url = null) {
512
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeLink', func_get_args()));
513
- }
514
- /**
515
- * [!] Method is generated. Documentation taken from corresponding module.
516
- *
517
- * Checks that the page doesn't contain a link with the given string.
518
- * If the second parameter is given, only links with a matching "href" attribute will be checked.
519
- *
520
- * ``` php
521
- * <?php
522
- * $I->dontSeeLink('Logout'); // I suppose user is not logged in
523
- * $I->dontSeeLink('Checkout now', '/store/cart.php');
524
- * ?>
525
- * ```
526
- *
527
- * @param $text
528
- * @param null $url
529
- * @see \Codeception\Lib\InnerBrowser::dontSeeLink()
530
- */
531
- public function dontSeeLink($text, $url = null) {
532
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeLink', func_get_args()));
533
- }
534
-
535
-
536
- /**
537
- * [!] Method is generated. Documentation taken from corresponding module.
538
- *
539
- * Checks that current URI contains the given string.
540
- *
541
- * ``` php
542
- * <?php
543
- * // to match: /home/dashboard
544
- * $I->seeInCurrentUrl('home');
545
- * // to match: /users/1
546
- * $I->seeInCurrentUrl('/users/');
547
- * ?>
548
- * ```
549
- *
550
- * @param $uri
551
- * Conditional Assertion: Test won't be stopped on fail
552
- * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl()
553
- */
554
- public function canSeeInCurrentUrl($uri) {
555
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInCurrentUrl', func_get_args()));
556
- }
557
- /**
558
- * [!] Method is generated. Documentation taken from corresponding module.
559
- *
560
- * Checks that current URI contains the given string.
561
- *
562
- * ``` php
563
- * <?php
564
- * // to match: /home/dashboard
565
- * $I->seeInCurrentUrl('home');
566
- * // to match: /users/1
567
- * $I->seeInCurrentUrl('/users/');
568
- * ?>
569
- * ```
570
- *
571
- * @param $uri
572
- * @see \Codeception\Lib\InnerBrowser::seeInCurrentUrl()
573
- */
574
- public function seeInCurrentUrl($uri) {
575
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInCurrentUrl', func_get_args()));
576
- }
577
-
578
-
579
- /**
580
- * [!] Method is generated. Documentation taken from corresponding module.
581
- *
582
- * Checks that the current URI doesn't contain the given string.
583
- *
584
- * ``` php
585
- * <?php
586
- * $I->dontSeeInCurrentUrl('/users/');
587
- * ?>
588
- * ```
589
- *
590
- * @param $uri
591
- * Conditional Assertion: Test won't be stopped on fail
592
- * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl()
593
- */
594
- public function cantSeeInCurrentUrl($uri) {
595
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInCurrentUrl', func_get_args()));
596
- }
597
- /**
598
- * [!] Method is generated. Documentation taken from corresponding module.
599
- *
600
- * Checks that the current URI doesn't contain the given string.
601
- *
602
- * ``` php
603
- * <?php
604
- * $I->dontSeeInCurrentUrl('/users/');
605
- * ?>
606
- * ```
607
- *
608
- * @param $uri
609
- * @see \Codeception\Lib\InnerBrowser::dontSeeInCurrentUrl()
610
- */
611
- public function dontSeeInCurrentUrl($uri) {
612
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInCurrentUrl', func_get_args()));
613
- }
614
-
615
-
616
- /**
617
- * [!] Method is generated. Documentation taken from corresponding module.
618
- *
619
- * Checks that the current URL is equal to the given string.
620
- * Unlike `seeInCurrentUrl`, this only matches the full URL.
621
- *
622
- * ``` php
623
- * <?php
624
- * // to match root url
625
- * $I->seeCurrentUrlEquals('/');
626
- * ?>
627
- * ```
628
- *
629
- * @param $uri
630
- * Conditional Assertion: Test won't be stopped on fail
631
- * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals()
632
- */
633
- public function canSeeCurrentUrlEquals($uri) {
634
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlEquals', func_get_args()));
635
- }
636
- /**
637
- * [!] Method is generated. Documentation taken from corresponding module.
638
- *
639
- * Checks that the current URL is equal to the given string.
640
- * Unlike `seeInCurrentUrl`, this only matches the full URL.
641
- *
642
- * ``` php
643
- * <?php
644
- * // to match root url
645
- * $I->seeCurrentUrlEquals('/');
646
- * ?>
647
- * ```
648
- *
649
- * @param $uri
650
- * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlEquals()
651
- */
652
- public function seeCurrentUrlEquals($uri) {
653
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlEquals', func_get_args()));
654
- }
655
-
656
-
657
- /**
658
- * [!] Method is generated. Documentation taken from corresponding module.
659
- *
660
- * Checks that the current URL doesn't equal the given string.
661
- * Unlike `dontSeeInCurrentUrl`, this only matches the full URL.
662
- *
663
- * ``` php
664
- * <?php
665
- * // current url is not root
666
- * $I->dontSeeCurrentUrlEquals('/');
667
- * ?>
668
- * ```
669
- *
670
- * @param $uri
671
- * Conditional Assertion: Test won't be stopped on fail
672
- * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals()
673
- */
674
- public function cantSeeCurrentUrlEquals($uri) {
675
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlEquals', func_get_args()));
676
- }
677
- /**
678
- * [!] Method is generated. Documentation taken from corresponding module.
679
- *
680
- * Checks that the current URL doesn't equal the given string.
681
- * Unlike `dontSeeInCurrentUrl`, this only matches the full URL.
682
- *
683
- * ``` php
684
- * <?php
685
- * // current url is not root
686
- * $I->dontSeeCurrentUrlEquals('/');
687
- * ?>
688
- * ```
689
- *
690
- * @param $uri
691
- * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlEquals()
692
- */
693
- public function dontSeeCurrentUrlEquals($uri) {
694
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlEquals', func_get_args()));
695
- }
696
-
697
-
698
- /**
699
- * [!] Method is generated. Documentation taken from corresponding module.
700
- *
701
- * Checks that the current URL matches the given regular expression.
702
- *
703
- * ``` php
704
- * <?php
705
- * // to match root url
706
- * $I->seeCurrentUrlMatches('~$/users/(\d+)~');
707
- * ?>
708
- * ```
709
- *
710
- * @param $uri
711
- * Conditional Assertion: Test won't be stopped on fail
712
- * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches()
713
- */
714
- public function canSeeCurrentUrlMatches($uri) {
715
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCurrentUrlMatches', func_get_args()));
716
- }
717
- /**
718
- * [!] Method is generated. Documentation taken from corresponding module.
719
- *
720
- * Checks that the current URL matches the given regular expression.
721
- *
722
- * ``` php
723
- * <?php
724
- * // to match root url
725
- * $I->seeCurrentUrlMatches('~$/users/(\d+)~');
726
- * ?>
727
- * ```
728
- *
729
- * @param $uri
730
- * @see \Codeception\Lib\InnerBrowser::seeCurrentUrlMatches()
731
- */
732
- public function seeCurrentUrlMatches($uri) {
733
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCurrentUrlMatches', func_get_args()));
734
- }
735
-
736
-
737
- /**
738
- * [!] Method is generated. Documentation taken from corresponding module.
739
- *
740
- * Checks that current url doesn't match the given regular expression.
741
- *
742
- * ``` php
743
- * <?php
744
- * // to match root url
745
- * $I->dontSeeCurrentUrlMatches('~$/users/(\d+)~');
746
- * ?>
747
- * ```
748
- *
749
- * @param $uri
750
- * Conditional Assertion: Test won't be stopped on fail
751
- * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches()
752
- */
753
- public function cantSeeCurrentUrlMatches($uri) {
754
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCurrentUrlMatches', func_get_args()));
755
- }
756
- /**
757
- * [!] Method is generated. Documentation taken from corresponding module.
758
- *
759
- * Checks that current url doesn't match the given regular expression.
760
- *
761
- * ``` php
762
- * <?php
763
- * // to match root url
764
- * $I->dontSeeCurrentUrlMatches('~$/users/(\d+)~');
765
- * ?>
766
- * ```
767
- *
768
- * @param $uri
769
- * @see \Codeception\Lib\InnerBrowser::dontSeeCurrentUrlMatches()
770
- */
771
- public function dontSeeCurrentUrlMatches($uri) {
772
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCurrentUrlMatches', func_get_args()));
773
- }
774
-
775
-
776
- /**
777
- * [!] Method is generated. Documentation taken from corresponding module.
778
- *
779
- * Executes the given regular expression against the current URI and returns the first match.
780
- * If no parameters are provided, the full URI is returned.
781
- *
782
- * ``` php
783
- * <?php
784
- * $user_id = $I->grabFromCurrentUrl('~$/user/(\d+)/~');
785
- * $uri = $I->grabFromCurrentUrl();
786
- * ?>
787
- * ```
788
- *
789
- * @param null $uri
790
- *
791
- * @return mixed
792
- * @see \Codeception\Lib\InnerBrowser::grabFromCurrentUrl()
793
- */
794
- public function grabFromCurrentUrl($uri = null) {
795
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabFromCurrentUrl', func_get_args()));
796
- }
797
-
798
-
799
- /**
800
- * [!] Method is generated. Documentation taken from corresponding module.
801
- *
802
- * Checks that the specified checkbox is checked.
803
- *
804
- * ``` php
805
- * <?php
806
- * $I->seeCheckboxIsChecked('#agree'); // I suppose user agreed to terms
807
- * $I->seeCheckboxIsChecked('#signup_form input[type=checkbox]'); // I suppose user agreed to terms, If there is only one checkbox in form.
808
- * $I->seeCheckboxIsChecked('//form/input[@type=checkbox and @name=agree]');
809
- * ?>
810
- * ```
811
- *
812
- * @param $checkbox
813
- * Conditional Assertion: Test won't be stopped on fail
814
- * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked()
815
- */
816
- public function canSeeCheckboxIsChecked($checkbox) {
817
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCheckboxIsChecked', func_get_args()));
818
- }
819
- /**
820
- * [!] Method is generated. Documentation taken from corresponding module.
821
- *
822
- * Checks that the specified checkbox is checked.
823
- *
824
- * ``` php
825
- * <?php
826
- * $I->seeCheckboxIsChecked('#agree'); // I suppose user agreed to terms
827
- * $I->seeCheckboxIsChecked('#signup_form input[type=checkbox]'); // I suppose user agreed to terms, If there is only one checkbox in form.
828
- * $I->seeCheckboxIsChecked('//form/input[@type=checkbox and @name=agree]');
829
- * ?>
830
- * ```
831
- *
832
- * @param $checkbox
833
- * @see \Codeception\Lib\InnerBrowser::seeCheckboxIsChecked()
834
- */
835
- public function seeCheckboxIsChecked($checkbox) {
836
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCheckboxIsChecked', func_get_args()));
837
- }
838
-
839
-
840
- /**
841
- * [!] Method is generated. Documentation taken from corresponding module.
842
- *
843
- * Check that the specified checkbox is unchecked.
844
- *
845
- * ``` php
846
- * <?php
847
- * $I->dontSeeCheckboxIsChecked('#agree'); // I suppose user didn't agree to terms
848
- * $I->seeCheckboxIsChecked('#signup_form input[type=checkbox]'); // I suppose user didn't check the first checkbox in form.
849
- * ?>
850
- * ```
851
- *
852
- * @param $checkbox
853
- * Conditional Assertion: Test won't be stopped on fail
854
- * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked()
855
- */
856
- public function cantSeeCheckboxIsChecked($checkbox) {
857
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCheckboxIsChecked', func_get_args()));
858
- }
859
- /**
860
- * [!] Method is generated. Documentation taken from corresponding module.
861
- *
862
- * Check that the specified checkbox is unchecked.
863
- *
864
- * ``` php
865
- * <?php
866
- * $I->dontSeeCheckboxIsChecked('#agree'); // I suppose user didn't agree to terms
867
- * $I->seeCheckboxIsChecked('#signup_form input[type=checkbox]'); // I suppose user didn't check the first checkbox in form.
868
- * ?>
869
- * ```
870
- *
871
- * @param $checkbox
872
- * @see \Codeception\Lib\InnerBrowser::dontSeeCheckboxIsChecked()
873
- */
874
- public function dontSeeCheckboxIsChecked($checkbox) {
875
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCheckboxIsChecked', func_get_args()));
876
- }
877
-
878
-
879
- /**
880
- * [!] Method is generated. Documentation taken from corresponding module.
881
- *
882
- * Checks that the given input field or textarea contains the given value.
883
- * For fuzzy locators, fields are matched by label text, the "name" attribute, CSS, and XPath.
884
- *
885
- * ``` php
886
- * <?php
887
- * $I->seeInField('Body','Type your comment here');
888
- * $I->seeInField('form textarea[name=body]','Type your comment here');
889
- * $I->seeInField('form input[type=hidden]','hidden_value');
890
- * $I->seeInField('#searchform input','Search');
891
- * $I->seeInField('//form/*[@name=search]','Search');
892
- * $I->seeInField(['name' => 'search'], 'Search');
893
- * ?>
894
- * ```
895
- *
896
- * @param $field
897
- * @param $value
898
- * Conditional Assertion: Test won't be stopped on fail
899
- * @see \Codeception\Lib\InnerBrowser::seeInField()
900
- */
901
- public function canSeeInField($field, $value) {
902
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInField', func_get_args()));
903
- }
904
- /**
905
- * [!] Method is generated. Documentation taken from corresponding module.
906
- *
907
- * Checks that the given input field or textarea contains the given value.
908
- * For fuzzy locators, fields are matched by label text, the "name" attribute, CSS, and XPath.
909
- *
910
- * ``` php
911
- * <?php
912
- * $I->seeInField('Body','Type your comment here');
913
- * $I->seeInField('form textarea[name=body]','Type your comment here');
914
- * $I->seeInField('form input[type=hidden]','hidden_value');
915
- * $I->seeInField('#searchform input','Search');
916
- * $I->seeInField('//form/*[@name=search]','Search');
917
- * $I->seeInField(['name' => 'search'], 'Search');
918
- * ?>
919
- * ```
920
- *
921
- * @param $field
922
- * @param $value
923
- * @see \Codeception\Lib\InnerBrowser::seeInField()
924
- */
925
- public function seeInField($field, $value) {
926
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInField', func_get_args()));
927
- }
928
-
929
-
930
- /**
931
- * [!] Method is generated. Documentation taken from corresponding module.
932
- *
933
- * Checks that an input field or textarea doesn't contain the given value.
934
- * For fuzzy locators, the field is matched by label text, CSS and XPath.
935
- *
936
- * ``` php
937
- * <?php
938
- * $I->dontSeeInField('Body','Type your comment here');
939
- * $I->dontSeeInField('form textarea[name=body]','Type your comment here');
940
- * $I->dontSeeInField('form input[type=hidden]','hidden_value');
941
- * $I->dontSeeInField('#searchform input','Search');
942
- * $I->dontSeeInField('//form/*[@name=search]','Search');
943
- * $I->dontSeeInField(['name' => 'search'], 'Search');
944
- * ?>
945
- * ```
946
- *
947
- * @param $field
948
- * @param $value
949
- * Conditional Assertion: Test won't be stopped on fail
950
- * @see \Codeception\Lib\InnerBrowser::dontSeeInField()
951
- */
952
- public function cantSeeInField($field, $value) {
953
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInField', func_get_args()));
954
- }
955
- /**
956
- * [!] Method is generated. Documentation taken from corresponding module.
957
- *
958
- * Checks that an input field or textarea doesn't contain the given value.
959
- * For fuzzy locators, the field is matched by label text, CSS and XPath.
960
- *
961
- * ``` php
962
- * <?php
963
- * $I->dontSeeInField('Body','Type your comment here');
964
- * $I->dontSeeInField('form textarea[name=body]','Type your comment here');
965
- * $I->dontSeeInField('form input[type=hidden]','hidden_value');
966
- * $I->dontSeeInField('#searchform input','Search');
967
- * $I->dontSeeInField('//form/*[@name=search]','Search');
968
- * $I->dontSeeInField(['name' => 'search'], 'Search');
969
- * ?>
970
- * ```
971
- *
972
- * @param $field
973
- * @param $value
974
- * @see \Codeception\Lib\InnerBrowser::dontSeeInField()
975
- */
976
- public function dontSeeInField($field, $value) {
977
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInField', func_get_args()));
978
- }
979
-
980
-
981
- /**
982
- * [!] Method is generated. Documentation taken from corresponding module.
983
- *
984
- * Checks if the array of form parameters (name => value) are set on the form matched with the
985
- * passed selector.
986
- *
987
- * ``` php
988
- * <?php
989
- * $I->seeInFormFields('form[name=myform]', [
990
- * 'input1' => 'value',
991
- * 'input2' => 'other value',
992
- * ]);
993
- * ?>
994
- * ```
995
- *
996
- * For multi-select elements, or to check values of multiple elements with the same name, an
997
- * array may be passed:
998
- *
999
- * ``` php
1000
- * <?php
1001
- * $I->seeInFormFields('.form-class', [
1002
- * 'multiselect' => [
1003
- * 'value1',
1004
- * 'value2',
1005
- * ],
1006
- * 'checkbox[]' => [
1007
- * 'a checked value',
1008
- * 'another checked value',
1009
- * ],
1010
- * ]);
1011
- * ?>
1012
- * ```
1013
- *
1014
- * Additionally, checkbox values can be checked with a boolean.
1015
- *
1016
- * ``` php
1017
- * <?php
1018
- * $I->seeInFormFields('#form-id', [
1019
- * 'checkbox1' => true, // passes if checked
1020
- * 'checkbox2' => false, // passes if unchecked
1021
- * ]);
1022
- * ?>
1023
- * ```
1024
- *
1025
- * Pair this with submitForm for quick testing magic.
1026
- *
1027
- * ``` php
1028
- * <?php
1029
- * $form = [
1030
- * 'field1' => 'value',
1031
- * 'field2' => 'another value',
1032
- * 'checkbox1' => true,
1033
- * // ...
1034
- * ];
1035
- * $I->submitForm('//form[@id=my-form]', $form, 'submitButton');
1036
- * // $I->amOnPage('/path/to/form-page') may be needed
1037
- * $I->seeInFormFields('//form[@id=my-form]', $form);
1038
- * ?>
1039
- * ```
1040
- *
1041
- * @param $formSelector
1042
- * @param $params
1043
- * Conditional Assertion: Test won't be stopped on fail
1044
- * @see \Codeception\Lib\InnerBrowser::seeInFormFields()
1045
- */
1046
- public function canSeeInFormFields($formSelector, $params) {
1047
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInFormFields', func_get_args()));
1048
- }
1049
- /**
1050
- * [!] Method is generated. Documentation taken from corresponding module.
1051
- *
1052
- * Checks if the array of form parameters (name => value) are set on the form matched with the
1053
- * passed selector.
1054
- *
1055
- * ``` php
1056
- * <?php
1057
- * $I->seeInFormFields('form[name=myform]', [
1058
- * 'input1' => 'value',
1059
- * 'input2' => 'other value',
1060
- * ]);
1061
- * ?>
1062
- * ```
1063
- *
1064
- * For multi-select elements, or to check values of multiple elements with the same name, an
1065
- * array may be passed:
1066
- *
1067
- * ``` php
1068
- * <?php
1069
- * $I->seeInFormFields('.form-class', [
1070
- * 'multiselect' => [
1071
- * 'value1',
1072
- * 'value2',
1073
- * ],
1074
- * 'checkbox[]' => [
1075
- * 'a checked value',
1076
- * 'another checked value',
1077
- * ],
1078
- * ]);
1079
- * ?>
1080
- * ```
1081
- *
1082
- * Additionally, checkbox values can be checked with a boolean.
1083
- *
1084
- * ``` php
1085
- * <?php
1086
- * $I->seeInFormFields('#form-id', [
1087
- * 'checkbox1' => true, // passes if checked
1088
- * 'checkbox2' => false, // passes if unchecked
1089
- * ]);
1090
- * ?>
1091
- * ```
1092
- *
1093
- * Pair this with submitForm for quick testing magic.
1094
- *
1095
- * ``` php
1096
- * <?php
1097
- * $form = [
1098
- * 'field1' => 'value',
1099
- * 'field2' => 'another value',
1100
- * 'checkbox1' => true,
1101
- * // ...
1102
- * ];
1103
- * $I->submitForm('//form[@id=my-form]', $form, 'submitButton');
1104
- * // $I->amOnPage('/path/to/form-page') may be needed
1105
- * $I->seeInFormFields('//form[@id=my-form]', $form);
1106
- * ?>
1107
- * ```
1108
- *
1109
- * @param $formSelector
1110
- * @param $params
1111
- * @see \Codeception\Lib\InnerBrowser::seeInFormFields()
1112
- */
1113
- public function seeInFormFields($formSelector, $params) {
1114
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInFormFields', func_get_args()));
1115
- }
1116
-
1117
-
1118
- /**
1119
- * [!] Method is generated. Documentation taken from corresponding module.
1120
- *
1121
- * Checks if the array of form parameters (name => value) are not set on the form matched with
1122
- * the passed selector.
1123
- *
1124
- * ``` php
1125
- * <?php
1126
- * $I->dontSeeInFormFields('form[name=myform]', [
1127
- * 'input1' => 'non-existent value',
1128
- * 'input2' => 'other non-existent value',
1129
- * ]);
1130
- * ?>
1131
- * ```
1132
- *
1133
- * To check that an element hasn't been assigned any one of many values, an array can be passed
1134
- * as the value:
1135
- *
1136
- * ``` php
1137
- * <?php
1138
- * $I->dontSeeInFormFields('.form-class', [
1139
- * 'fieldName' => [
1140
- * 'This value shouldn\'t be set',
1141
- * 'And this value shouldn\'t be set',
1142
- * ],
1143
- * ]);
1144
- * ?>
1145
- * ```
1146
- *
1147
- * Additionally, checkbox values can be checked with a boolean.
1148
- *
1149
- * ``` php
1150
- * <?php
1151
- * $I->dontSeeInFormFields('#form-id', [
1152
- * 'checkbox1' => true, // fails if checked
1153
- * 'checkbox2' => false, // fails if unchecked
1154
- * ]);
1155
- * ?>
1156
- * ```
1157
- *
1158
- * @param $formSelector
1159
- * @param $params
1160
- * Conditional Assertion: Test won't be stopped on fail
1161
- * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields()
1162
- */
1163
- public function cantSeeInFormFields($formSelector, $params) {
1164
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInFormFields', func_get_args()));
1165
- }
1166
- /**
1167
- * [!] Method is generated. Documentation taken from corresponding module.
1168
- *
1169
- * Checks if the array of form parameters (name => value) are not set on the form matched with
1170
- * the passed selector.
1171
- *
1172
- * ``` php
1173
- * <?php
1174
- * $I->dontSeeInFormFields('form[name=myform]', [
1175
- * 'input1' => 'non-existent value',
1176
- * 'input2' => 'other non-existent value',
1177
- * ]);
1178
- * ?>
1179
- * ```
1180
- *
1181
- * To check that an element hasn't been assigned any one of many values, an array can be passed
1182
- * as the value:
1183
- *
1184
- * ``` php
1185
- * <?php
1186
- * $I->dontSeeInFormFields('.form-class', [
1187
- * 'fieldName' => [
1188
- * 'This value shouldn\'t be set',
1189
- * 'And this value shouldn\'t be set',
1190
- * ],
1191
- * ]);
1192
- * ?>
1193
- * ```
1194
- *
1195
- * Additionally, checkbox values can be checked with a boolean.
1196
- *
1197
- * ``` php
1198
- * <?php
1199
- * $I->dontSeeInFormFields('#form-id', [
1200
- * 'checkbox1' => true, // fails if checked
1201
- * 'checkbox2' => false, // fails if unchecked
1202
- * ]);
1203
- * ?>
1204
- * ```
1205
- *
1206
- * @param $formSelector
1207
- * @param $params
1208
- * @see \Codeception\Lib\InnerBrowser::dontSeeInFormFields()
1209
- */
1210
- public function dontSeeInFormFields($formSelector, $params) {
1211
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInFormFields', func_get_args()));
1212
- }
1213
-
1214
-
1215
- /**
1216
- * [!] Method is generated. Documentation taken from corresponding module.
1217
- *
1218
- * Submits the given form on the page, optionally with the given form
1219
- * values. Pass the form field's values as an array in the second
1220
- * parameter.
1221
- *
1222
- * Although this function can be used as a short-hand version of
1223
- * `fillField()`, `selectOption()`, `click()` etc. it has some important
1224
- * differences:
1225
- *
1226
- * * Only field *names* may be used, not CSS/XPath selectors nor field labels
1227
- * * If a field is sent to this function that does *not* exist on the page,
1228
- * it will silently be added to the HTTP request. This is helpful for testing
1229
- * some types of forms, but be aware that you will *not* get an exception
1230
- * like you would if you called `fillField()` or `selectOption()` with
1231
- * a missing field.
1232
- *
1233
- * Fields that are not provided will be filled by their values from the page,
1234
- * or from any previous calls to `fillField()`, `selectOption()` etc.
1235
- * You don't need to click the 'Submit' button afterwards.
1236
- * This command itself triggers the request to form's action.
1237
- *
1238
- * You can optionally specify which button's value to include
1239
- * in the request with the last parameter (as an alternative to
1240
- * explicitly setting its value in the second parameter), as
1241
- * button values are not otherwise included in the request.
1242
- *
1243
- * Examples:
1244
- *
1245
- * ``` php
1246
- * <?php
1247
- * $I->submitForm('#login', [
1248
- * 'login' => 'davert',
1249
- * 'password' => '123456'
1250
- * ]);
1251
- * // or
1252
- * $I->submitForm('#login', [
1253
- * 'login' => 'davert',
1254
- * 'password' => '123456'
1255
- * ], 'submitButtonName');
1256
- *
1257
- * ```
1258
- *
1259
- * For example, given this sample "Sign Up" form:
1260
- *
1261
- * ``` html
1262
- * <form action="/sign_up">
1263
- * Login:
1264
- * <input type="text" name="user[login]" /><br/>
1265
- * Password:
1266
- * <input type="password" name="user[password]" /><br/>
1267
- * Do you agree to our terms?
1268
- * <input type="checkbox" name="user[agree]" /><br/>
1269
- * Select pricing plan:
1270
- * <select name="plan">
1271
- * <option value="1">Free</option>
1272
- * <option value="2" selected="selected">Paid</option>
1273
- * </select>
1274
- * <input type="submit" name="submitButton" value="Submit" />
1275
- * </form>
1276
- * ```
1277
- *
1278
- * You could write the following to submit it:
1279
- *
1280
- * ``` php
1281
- * <?php
1282
- * $I->submitForm(
1283
- * '#userForm',
1284
- * [
1285
- * 'user' => [
1286
- * 'login' => 'Davert',
1287
- * 'password' => '123456',
1288
- * 'agree' => true
1289
- * ]
1290
- * ],
1291
- * 'submitButton'
1292
- * );
1293
- * ```
1294
- * Note that "2" will be the submitted value for the "plan" field, as it is
1295
- * the selected option.
1296
- *
1297
- * You can also emulate a JavaScript submission by not specifying any
1298
- * buttons in the third parameter to submitForm.
1299
- *
1300
- * ```php
1301
- * <?php
1302
- * $I->submitForm(
1303
- * '#userForm',
1304
- * [
1305
- * 'user' => [
1306
- * 'login' => 'Davert',
1307
- * 'password' => '123456',
1308
- * 'agree' => true
1309
- * ]
1310
- * ]
1311
- * );
1312
- * ```
1313
- *
1314
- * This function works well when paired with `seeInFormFields()`
1315
- * for quickly testing CRUD interfaces and form validation logic.
1316
- *
1317
- * ``` php
1318
- * <?php
1319
- * $form = [
1320
- * 'field1' => 'value',
1321
- * 'field2' => 'another value',
1322
- * 'checkbox1' => true,
1323
- * // ...
1324
- * ];
1325
- * $I->submitForm('#my-form', $form, 'submitButton');
1326
- * // $I->amOnPage('/path/to/form-page') may be needed
1327
- * $I->seeInFormFields('#my-form', $form);
1328
- * ```
1329
- *
1330
- * Parameter values can be set to arrays for multiple input fields
1331
- * of the same name, or multi-select combo boxes. For checkboxes,
1332
- * you can use either the string value or boolean `true`/`false` which will
1333
- * be replaced by the checkbox's value in the DOM.
1334
- *
1335
- * ``` php
1336
- * <?php
1337
- * $I->submitForm('#my-form', [
1338
- * 'field1' => 'value',
1339
- * 'checkbox' => [
1340
- * 'value of first checkbox',
1341
- * 'value of second checkbox',
1342
- * ],
1343
- * 'otherCheckboxes' => [
1344
- * true,
1345
- * false,
1346
- * false
1347
- * ],
1348
- * 'multiselect' => [
1349
- * 'first option value',
1350
- * 'second option value'
1351
- * ]
1352
- * ]);
1353
- * ```
1354
- *
1355
- * Mixing string and boolean values for a checkbox's value is not supported
1356
- * and may produce unexpected results.
1357
- *
1358
- * Field names ending in `[]` must be passed without the trailing square
1359
- * bracket characters, and must contain an array for its value. This allows
1360
- * submitting multiple values with the same name, consider:
1361
- *
1362
- * ```php
1363
- * <?php
1364
- * // This will NOT work correctly
1365
- * $I->submitForm('#my-form', [
1366
- * 'field[]' => 'value',
1367
- * 'field[]' => 'another value', // 'field[]' is already a defined key
1368
- * ]);
1369
- * ```
1370
- *
1371
- * The solution is to pass an array value:
1372
- *
1373
- * ```php
1374
- * <?php
1375
- * // This way both values are submitted
1376
- * $I->submitForm('#my-form', [
1377
- * 'field' => [
1378
- * 'value',
1379
- * 'another value',
1380
- * ]
1381
- * ]);
1382
- * ```
1383
- *
1384
- * @param $selector
1385
- * @param $params
1386
- * @param $button
1387
- * @see \Codeception\Lib\InnerBrowser::submitForm()
1388
- */
1389
- public function submitForm($selector, $params, $button = null) {
1390
- return $this->getScenario()->runStep(new \Codeception\Step\Action('submitForm', func_get_args()));
1391
- }
1392
-
1393
-
1394
- /**
1395
- * [!] Method is generated. Documentation taken from corresponding module.
1396
- *
1397
- * Fills a text field or textarea with the given string.
1398
- *
1399
- * ``` php
1400
- * <?php
1401
- * $I->fillField("//input[@type='text']", "Hello World!");
1402
- * $I->fillField(['name' => 'email'], 'jon@mail.com');
1403
- * ?>
1404
- * ```
1405
- *
1406
- * @param $field
1407
- * @param $value
1408
- * @see \Codeception\Lib\InnerBrowser::fillField()
1409
- */
1410
- public function fillField($field, $value) {
1411
- return $this->getScenario()->runStep(new \Codeception\Step\Action('fillField', func_get_args()));
1412
- }
1413
-
1414
-
1415
- /**
1416
- * [!] Method is generated. Documentation taken from corresponding module.
1417
- *
1418
- * Selects an option in a select tag or in radio button group.
1419
- *
1420
- * ``` php
1421
- * <?php
1422
- * $I->selectOption('form select[name=account]', 'Premium');
1423
- * $I->selectOption('form input[name=payment]', 'Monthly');
1424
- * $I->selectOption('//form/select[@name=account]', 'Monthly');
1425
- * ?>
1426
- * ```
1427
- *
1428
- * Provide an array for the second argument to select multiple options:
1429
- *
1430
- * ``` php
1431
- * <?php
1432
- * $I->selectOption('Which OS do you use?', array('Windows','Linux'));
1433
- * ?>
1434
- * ```
1435
- *
1436
- * @param $select
1437
- * @param $option
1438
- * @see \Codeception\Lib\InnerBrowser::selectOption()
1439
- */
1440
- public function selectOption($select, $option) {
1441
- return $this->getScenario()->runStep(new \Codeception\Step\Action('selectOption', func_get_args()));
1442
- }
1443
-
1444
-
1445
- /**
1446
- * [!] Method is generated. Documentation taken from corresponding module.
1447
- *
1448
- * Ticks a checkbox. For radio buttons, use the `selectOption` method instead.
1449
- *
1450
- * ``` php
1451
- * <?php
1452
- * $I->checkOption('#agree');
1453
- * ?>
1454
- * ```
1455
- *
1456
- * @param $option
1457
- * @see \Codeception\Lib\InnerBrowser::checkOption()
1458
- */
1459
- public function checkOption($option) {
1460
- return $this->getScenario()->runStep(new \Codeception\Step\Action('checkOption', func_get_args()));
1461
- }
1462
-
1463
-
1464
- /**
1465
- * [!] Method is generated. Documentation taken from corresponding module.
1466
- *
1467
- * Unticks a checkbox.
1468
- *
1469
- * ``` php
1470
- * <?php
1471
- * $I->uncheckOption('#notify');
1472
- * ?>
1473
- * ```
1474
- *
1475
- * @param $option
1476
- * @see \Codeception\Lib\InnerBrowser::uncheckOption()
1477
- */
1478
- public function uncheckOption($option) {
1479
- return $this->getScenario()->runStep(new \Codeception\Step\Action('uncheckOption', func_get_args()));
1480
- }
1481
-
1482
-
1483
- /**
1484
- * [!] Method is generated. Documentation taken from corresponding module.
1485
- *
1486
- * Attaches a file relative to the Codeception data directory to the given file upload field.
1487
- *
1488
- * ``` php
1489
- * <?php
1490
- * // file is stored in 'tests/_data/prices.xls'
1491
- * $I->attachFile('input[@type="file"]', 'prices.xls');
1492
- * ?>
1493
- * ```
1494
- *
1495
- * @param $field
1496
- * @param $filename
1497
- * @see \Codeception\Lib\InnerBrowser::attachFile()
1498
- */
1499
- public function attachFile($field, $filename) {
1500
- return $this->getScenario()->runStep(new \Codeception\Step\Action('attachFile', func_get_args()));
1501
- }
1502
-
1503
-
1504
- /**
1505
- * [!] Method is generated. Documentation taken from corresponding module.
1506
- *
1507
- * If your page triggers an ajax request, you can perform it manually.
1508
- * This action sends a GET ajax request with specified params.
1509
- *
1510
- * See ->sendAjaxPostRequest for examples.
1511
- *
1512
- * @param $uri
1513
- * @param $params
1514
- * @see \Codeception\Lib\InnerBrowser::sendAjaxGetRequest()
1515
- */
1516
- public function sendAjaxGetRequest($uri, $params = null) {
1517
- return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxGetRequest', func_get_args()));
1518
- }
1519
-
1520
-
1521
- /**
1522
- * [!] Method is generated. Documentation taken from corresponding module.
1523
- *
1524
- * If your page triggers an ajax request, you can perform it manually.
1525
- * This action sends a POST ajax request with specified params.
1526
- * Additional params can be passed as array.
1527
- *
1528
- * Example:
1529
- *
1530
- * Imagine that by clicking checkbox you trigger ajax request which updates user settings.
1531
- * We emulate that click by running this ajax request manually.
1532
- *
1533
- * ``` php
1534
- * <?php
1535
- * $I->sendAjaxPostRequest('/updateSettings', array('notifications' => true)); // POST
1536
- * $I->sendAjaxGetRequest('/updateSettings', array('notifications' => true)); // GET
1537
- *
1538
- * ```
1539
- *
1540
- * @param $uri
1541
- * @param $params
1542
- * @see \Codeception\Lib\InnerBrowser::sendAjaxPostRequest()
1543
- */
1544
- public function sendAjaxPostRequest($uri, $params = null) {
1545
- return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxPostRequest', func_get_args()));
1546
- }
1547
-
1548
-
1549
- /**
1550
- * [!] Method is generated. Documentation taken from corresponding module.
1551
- *
1552
- * If your page triggers an ajax request, you can perform it manually.
1553
- * This action sends an ajax request with specified method and params.
1554
- *
1555
- * Example:
1556
- *
1557
- * You need to perform an ajax request specifying the HTTP method.
1558
- *
1559
- * ``` php
1560
- * <?php
1561
- * $I->sendAjaxRequest('PUT', '/posts/7', array('title' => 'new title'));
1562
- *
1563
- * ```
1564
- *
1565
- * @param $method
1566
- * @param $uri
1567
- * @param $params
1568
- * @see \Codeception\Lib\InnerBrowser::sendAjaxRequest()
1569
- */
1570
- public function sendAjaxRequest($method, $uri, $params = null) {
1571
- return $this->getScenario()->runStep(new \Codeception\Step\Action('sendAjaxRequest', func_get_args()));
1572
- }
1573
-
1574
-
1575
- /**
1576
- * [!] Method is generated. Documentation taken from corresponding module.
1577
- *
1578
- * Finds and returns the text contents of the given element.
1579
- * If a fuzzy locator is used, the element is found using CSS, XPath, and by matching the full page source by regular expression.
1580
- *
1581
- * ``` php
1582
- * <?php
1583
- * $heading = $I->grabTextFrom('h1');
1584
- * $heading = $I->grabTextFrom('descendant-or-self::h1');
1585
- * $value = $I->grabTextFrom('~<input value=(.*?)]~sgi'); // match with a regex
1586
- * ?>
1587
- * ```
1588
- *
1589
- * @param $cssOrXPathOrRegex
1590
- *
1591
- * @return mixed
1592
- * @see \Codeception\Lib\InnerBrowser::grabTextFrom()
1593
- */
1594
- public function grabTextFrom($cssOrXPathOrRegex) {
1595
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabTextFrom', func_get_args()));
1596
- }
1597
-
1598
-
1599
- /**
1600
- * [!] Method is generated. Documentation taken from corresponding module.
1601
- *
1602
- * Grabs the value of the given attribute value from the given element.
1603
- * Fails if element is not found.
1604
- *
1605
- * ``` php
1606
- * <?php
1607
- * $I->grabAttributeFrom('#tooltip', 'title');
1608
- * ?>
1609
- * ```
1610
- *
1611
- *
1612
- * @param $cssOrXpath
1613
- * @param $attribute
1614
- *
1615
- * @return mixed
1616
- * @see \Codeception\Lib\InnerBrowser::grabAttributeFrom()
1617
- */
1618
- public function grabAttributeFrom($cssOrXpath, $attribute) {
1619
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabAttributeFrom', func_get_args()));
1620
- }
1621
-
1622
-
1623
- /**
1624
- * [!] Method is generated. Documentation taken from corresponding module.
1625
- *
1626
- * Grabs either the text content, or attribute values, of nodes
1627
- * matched by $cssOrXpath and returns them as an array.
1628
- *
1629
- * ```html
1630
- * <a href="#first">First</a>
1631
- * <a href="#second">Second</a>
1632
- * <a href="#third">Third</a>
1633
- * ```
1634
- *
1635
- * ```php
1636
- * <?php
1637
- * // would return ['First', 'Second', 'Third']
1638
- * $aLinkText = $I->grabMultiple('a');
1639
- *
1640
- * // would return ['#first', '#second', '#third']
1641
- * $aLinks = $I->grabMultiple('a', 'href');
1642
- * ?>
1643
- * ```
1644
- *
1645
- * @param $cssOrXpath
1646
- * @param $attribute
1647
- * @return string[]
1648
- * @see \Codeception\Lib\InnerBrowser::grabMultiple()
1649
- */
1650
- public function grabMultiple($cssOrXpath, $attribute = null) {
1651
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabMultiple', func_get_args()));
1652
- }
1653
-
1654
-
1655
- /**
1656
- * [!] Method is generated. Documentation taken from corresponding module.
1657
- *
1658
- * @param $field
1659
- *
1660
- * @return array|mixed|null|string
1661
- * @see \Codeception\Lib\InnerBrowser::grabValueFrom()
1662
- */
1663
- public function grabValueFrom($field) {
1664
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabValueFrom', func_get_args()));
1665
- }
1666
-
1667
-
1668
- /**
1669
- * [!] Method is generated. Documentation taken from corresponding module.
1670
- *
1671
- * Sets a cookie with the given name and value.
1672
- * You can set additional cookie params like `domain`, `path`, `expires`, `secure` in array passed as last argument.
1673
- *
1674
- * ``` php
1675
- * <?php
1676
- * $I->setCookie('PHPSESSID', 'el4ukv0kqbvoirg7nkp4dncpk3');
1677
- * ?>
1678
- * ```
1679
- *
1680
- * @param $name
1681
- * @param $val
1682
- * @param array $params
1683
- *
1684
- * @return mixed
1685
- * @see \Codeception\Lib\InnerBrowser::setCookie()
1686
- */
1687
- public function setCookie($name, $val, $params = null) {
1688
- return $this->getScenario()->runStep(new \Codeception\Step\Action('setCookie', func_get_args()));
1689
- }
1690
-
1691
-
1692
- /**
1693
- * [!] Method is generated. Documentation taken from corresponding module.
1694
- *
1695
- * Grabs a cookie value.
1696
- * You can set additional cookie params like `domain`, `path` in array passed as last argument.
1697
- *
1698
- * @param $cookie
1699
- *
1700
- * @param array $params
1701
- * @return mixed
1702
- * @see \Codeception\Lib\InnerBrowser::grabCookie()
1703
- */
1704
- public function grabCookie($cookie, $params = null) {
1705
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabCookie', func_get_args()));
1706
- }
1707
-
1708
-
1709
- /**
1710
- * [!] Method is generated. Documentation taken from corresponding module.
1711
- *
1712
- * Checks that a cookie with the given name is set.
1713
- * You can set additional cookie params like `domain`, `path` as array passed in last argument.
1714
- *
1715
- * ``` php
1716
- * <?php
1717
- * $I->seeCookie('PHPSESSID');
1718
- * ?>
1719
- * ```
1720
- *
1721
- * @param $cookie
1722
- * @param array $params
1723
- * @return mixed
1724
- * Conditional Assertion: Test won't be stopped on fail
1725
- * @see \Codeception\Lib\InnerBrowser::seeCookie()
1726
- */
1727
- public function canSeeCookie($cookie, $params = null) {
1728
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeCookie', func_get_args()));
1729
- }
1730
- /**
1731
- * [!] Method is generated. Documentation taken from corresponding module.
1732
- *
1733
- * Checks that a cookie with the given name is set.
1734
- * You can set additional cookie params like `domain`, `path` as array passed in last argument.
1735
- *
1736
- * ``` php
1737
- * <?php
1738
- * $I->seeCookie('PHPSESSID');
1739
- * ?>
1740
- * ```
1741
- *
1742
- * @param $cookie
1743
- * @param array $params
1744
- * @return mixed
1745
- * @see \Codeception\Lib\InnerBrowser::seeCookie()
1746
- */
1747
- public function seeCookie($cookie, $params = null) {
1748
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeCookie', func_get_args()));
1749
- }
1750
-
1751
-
1752
- /**
1753
- * [!] Method is generated. Documentation taken from corresponding module.
1754
- *
1755
- * Checks that there isn't a cookie with the given name.
1756
- * You can set additional cookie params like `domain`, `path` as array passed in last argument.
1757
- *
1758
- * @param $cookie
1759
- *
1760
- * @param array $params
1761
- * @return mixed
1762
- * Conditional Assertion: Test won't be stopped on fail
1763
- * @see \Codeception\Lib\InnerBrowser::dontSeeCookie()
1764
- */
1765
- public function cantSeeCookie($cookie, $params = null) {
1766
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeCookie', func_get_args()));
1767
- }
1768
- /**
1769
- * [!] Method is generated. Documentation taken from corresponding module.
1770
- *
1771
- * Checks that there isn't a cookie with the given name.
1772
- * You can set additional cookie params like `domain`, `path` as array passed in last argument.
1773
- *
1774
- * @param $cookie
1775
- *
1776
- * @param array $params
1777
- * @return mixed
1778
- * @see \Codeception\Lib\InnerBrowser::dontSeeCookie()
1779
- */
1780
- public function dontSeeCookie($cookie, $params = null) {
1781
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeCookie', func_get_args()));
1782
- }
1783
-
1784
-
1785
- /**
1786
- * [!] Method is generated. Documentation taken from corresponding module.
1787
- *
1788
- * Unsets cookie with the given name.
1789
- * You can set additional cookie params like `domain`, `path` in array passed as last argument.
1790
- *
1791
- * @param $cookie
1792
- *
1793
- * @param array $params
1794
- * @return mixed
1795
- * @see \Codeception\Lib\InnerBrowser::resetCookie()
1796
- */
1797
- public function resetCookie($name, $params = null) {
1798
- return $this->getScenario()->runStep(new \Codeception\Step\Action('resetCookie', func_get_args()));
1799
- }
1800
-
1801
-
1802
- /**
1803
- * [!] Method is generated. Documentation taken from corresponding module.
1804
- *
1805
- * Checks that the given element exists on the page and is visible.
1806
- * You can also specify expected attributes of this element.
1807
- *
1808
- * ``` php
1809
- * <?php
1810
- * $I->seeElement('.error');
1811
- * $I->seeElement('//form/input[1]');
1812
- * $I->seeElement('input', ['name' => 'login']);
1813
- * $I->seeElement('input', ['value' => '123456']);
1814
- *
1815
- * // strict locator in first arg, attributes in second
1816
- * $I->seeElement(['css' => 'form input'], ['name' => 'login']);
1817
- * ?>
1818
- * ```
1819
- *
1820
- * @param $selector
1821
- * @param array $attributes
1822
- * @return
1823
- * Conditional Assertion: Test won't be stopped on fail
1824
- * @see \Codeception\Lib\InnerBrowser::seeElement()
1825
- */
1826
- public function canSeeElement($selector, $attributes = null) {
1827
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeElement', func_get_args()));
1828
- }
1829
- /**
1830
- * [!] Method is generated. Documentation taken from corresponding module.
1831
- *
1832
- * Checks that the given element exists on the page and is visible.
1833
- * You can also specify expected attributes of this element.
1834
- *
1835
- * ``` php
1836
- * <?php
1837
- * $I->seeElement('.error');
1838
- * $I->seeElement('//form/input[1]');
1839
- * $I->seeElement('input', ['name' => 'login']);
1840
- * $I->seeElement('input', ['value' => '123456']);
1841
- *
1842
- * // strict locator in first arg, attributes in second
1843
- * $I->seeElement(['css' => 'form input'], ['name' => 'login']);
1844
- * ?>
1845
- * ```
1846
- *
1847
- * @param $selector
1848
- * @param array $attributes
1849
- * @return
1850
- * @see \Codeception\Lib\InnerBrowser::seeElement()
1851
- */
1852
- public function seeElement($selector, $attributes = null) {
1853
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeElement', func_get_args()));
1854
- }
1855
-
1856
-
1857
- /**
1858
- * [!] Method is generated. Documentation taken from corresponding module.
1859
- *
1860
- * Checks that the given element is invisible or not present on the page.
1861
- * You can also specify expected attributes of this element.
1862
- *
1863
- * ``` php
1864
- * <?php
1865
- * $I->dontSeeElement('.error');
1866
- * $I->dontSeeElement('//form/input[1]');
1867
- * $I->dontSeeElement('input', ['name' => 'login']);
1868
- * $I->dontSeeElement('input', ['value' => '123456']);
1869
- * ?>
1870
- * ```
1871
- *
1872
- * @param $selector
1873
- * @param array $attributes
1874
- * Conditional Assertion: Test won't be stopped on fail
1875
- * @see \Codeception\Lib\InnerBrowser::dontSeeElement()
1876
- */
1877
- public function cantSeeElement($selector, $attributes = null) {
1878
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeElement', func_get_args()));
1879
- }
1880
- /**
1881
- * [!] Method is generated. Documentation taken from corresponding module.
1882
- *
1883
- * Checks that the given element is invisible or not present on the page.
1884
- * You can also specify expected attributes of this element.
1885
- *
1886
- * ``` php
1887
- * <?php
1888
- * $I->dontSeeElement('.error');
1889
- * $I->dontSeeElement('//form/input[1]');
1890
- * $I->dontSeeElement('input', ['name' => 'login']);
1891
- * $I->dontSeeElement('input', ['value' => '123456']);
1892
- * ?>
1893
- * ```
1894
- *
1895
- * @param $selector
1896
- * @param array $attributes
1897
- * @see \Codeception\Lib\InnerBrowser::dontSeeElement()
1898
- */
1899
- public function dontSeeElement($selector, $attributes = null) {
1900
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeElement', func_get_args()));
1901
- }
1902
-
1903
-
1904
- /**
1905
- * [!] Method is generated. Documentation taken from corresponding module.
1906
- *
1907
- * Checks that there are a certain number of elements matched by the given locator on the page.
1908
- *
1909
- * ``` php
1910
- * <?php
1911
- * $I->seeNumberOfElements('tr', 10);
1912
- * $I->seeNumberOfElements('tr', [0,10]); //between 0 and 10 elements
1913
- * ?>
1914
- * ```
1915
- * @param $selector
1916
- * @param mixed $expected :
1917
- * - string: strict number
1918
- * - array: range of numbers [0,10]
1919
- * Conditional Assertion: Test won't be stopped on fail
1920
- * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements()
1921
- */
1922
- public function canSeeNumberOfElements($selector, $expected) {
1923
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberOfElements', func_get_args()));
1924
- }
1925
- /**
1926
- * [!] Method is generated. Documentation taken from corresponding module.
1927
- *
1928
- * Checks that there are a certain number of elements matched by the given locator on the page.
1929
- *
1930
- * ``` php
1931
- * <?php
1932
- * $I->seeNumberOfElements('tr', 10);
1933
- * $I->seeNumberOfElements('tr', [0,10]); //between 0 and 10 elements
1934
- * ?>
1935
- * ```
1936
- * @param $selector
1937
- * @param mixed $expected :
1938
- * - string: strict number
1939
- * - array: range of numbers [0,10]
1940
- * @see \Codeception\Lib\InnerBrowser::seeNumberOfElements()
1941
- */
1942
- public function seeNumberOfElements($selector, $expected) {
1943
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberOfElements', func_get_args()));
1944
- }
1945
-
1946
-
1947
- /**
1948
- * [!] Method is generated. Documentation taken from corresponding module.
1949
- *
1950
- * Checks that the given option is selected.
1951
- *
1952
- * ``` php
1953
- * <?php
1954
- * $I->seeOptionIsSelected('#form input[name=payment]', 'Visa');
1955
- * ?>
1956
- * ```
1957
- *
1958
- * @param $selector
1959
- * @param $optionText
1960
- *
1961
- * @return mixed
1962
- * Conditional Assertion: Test won't be stopped on fail
1963
- * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected()
1964
- */
1965
- public function canSeeOptionIsSelected($selector, $optionText) {
1966
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeOptionIsSelected', func_get_args()));
1967
- }
1968
- /**
1969
- * [!] Method is generated. Documentation taken from corresponding module.
1970
- *
1971
- * Checks that the given option is selected.
1972
- *
1973
- * ``` php
1974
- * <?php
1975
- * $I->seeOptionIsSelected('#form input[name=payment]', 'Visa');
1976
- * ?>
1977
- * ```
1978
- *
1979
- * @param $selector
1980
- * @param $optionText
1981
- *
1982
- * @return mixed
1983
- * @see \Codeception\Lib\InnerBrowser::seeOptionIsSelected()
1984
- */
1985
- public function seeOptionIsSelected($selector, $optionText) {
1986
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeOptionIsSelected', func_get_args()));
1987
- }
1988
-
1989
-
1990
- /**
1991
- * [!] Method is generated. Documentation taken from corresponding module.
1992
- *
1993
- * Checks that the given option is not selected.
1994
- *
1995
- * ``` php
1996
- * <?php
1997
- * $I->dontSeeOptionIsSelected('#form input[name=payment]', 'Visa');
1998
- * ?>
1999
- * ```
2000
- *
2001
- * @param $selector
2002
- * @param $optionText
2003
- *
2004
- * @return mixed
2005
- * Conditional Assertion: Test won't be stopped on fail
2006
- * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected()
2007
- */
2008
- public function cantSeeOptionIsSelected($selector, $optionText) {
2009
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeOptionIsSelected', func_get_args()));
2010
- }
2011
- /**
2012
- * [!] Method is generated. Documentation taken from corresponding module.
2013
- *
2014
- * Checks that the given option is not selected.
2015
- *
2016
- * ``` php
2017
- * <?php
2018
- * $I->dontSeeOptionIsSelected('#form input[name=payment]', 'Visa');
2019
- * ?>
2020
- * ```
2021
- *
2022
- * @param $selector
2023
- * @param $optionText
2024
- *
2025
- * @return mixed
2026
- * @see \Codeception\Lib\InnerBrowser::dontSeeOptionIsSelected()
2027
- */
2028
- public function dontSeeOptionIsSelected($selector, $optionText) {
2029
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeOptionIsSelected', func_get_args()));
2030
- }
2031
-
2032
-
2033
- /**
2034
- * [!] Method is generated. Documentation taken from corresponding module.
2035
- *
2036
- * Asserts that current page has 404 response status code.
2037
- * Conditional Assertion: Test won't be stopped on fail
2038
- * @see \Codeception\Lib\InnerBrowser::seePageNotFound()
2039
- */
2040
- public function canSeePageNotFound() {
2041
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePageNotFound', func_get_args()));
2042
- }
2043
- /**
2044
- * [!] Method is generated. Documentation taken from corresponding module.
2045
- *
2046
- * Asserts that current page has 404 response status code.
2047
- * @see \Codeception\Lib\InnerBrowser::seePageNotFound()
2048
- */
2049
- public function seePageNotFound() {
2050
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePageNotFound', func_get_args()));
2051
- }
2052
-
2053
-
2054
- /**
2055
- * [!] Method is generated. Documentation taken from corresponding module.
2056
- *
2057
- * Checks that response code is equal to value provided.
2058
- *
2059
- * @param $code
2060
- *
2061
- * @return mixed
2062
- * Conditional Assertion: Test won't be stopped on fail
2063
- * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs()
2064
- */
2065
- public function canSeeResponseCodeIs($code) {
2066
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeResponseCodeIs', func_get_args()));
2067
- }
2068
- /**
2069
- * [!] Method is generated. Documentation taken from corresponding module.
2070
- *
2071
- * Checks that response code is equal to value provided.
2072
- *
2073
- * @param $code
2074
- *
2075
- * @return mixed
2076
- * @see \Codeception\Lib\InnerBrowser::seeResponseCodeIs()
2077
- */
2078
- public function seeResponseCodeIs($code) {
2079
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeResponseCodeIs', func_get_args()));
2080
- }
2081
-
2082
-
2083
- /**
2084
- * [!] Method is generated. Documentation taken from corresponding module.
2085
- *
2086
- * Checks that the page title contains the given string.
2087
- *
2088
- * ``` php
2089
- * <?php
2090
- * $I->seeInTitle('Blog - Post #1');
2091
- * ?>
2092
- * ```
2093
- *
2094
- * @param $title
2095
- *
2096
- * @return mixed
2097
- * Conditional Assertion: Test won't be stopped on fail
2098
- * @see \Codeception\Lib\InnerBrowser::seeInTitle()
2099
- */
2100
- public function canSeeInTitle($title) {
2101
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInTitle', func_get_args()));
2102
- }
2103
- /**
2104
- * [!] Method is generated. Documentation taken from corresponding module.
2105
- *
2106
- * Checks that the page title contains the given string.
2107
- *
2108
- * ``` php
2109
- * <?php
2110
- * $I->seeInTitle('Blog - Post #1');
2111
- * ?>
2112
- * ```
2113
- *
2114
- * @param $title
2115
- *
2116
- * @return mixed
2117
- * @see \Codeception\Lib\InnerBrowser::seeInTitle()
2118
- */
2119
- public function seeInTitle($title) {
2120
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInTitle', func_get_args()));
2121
- }
2122
-
2123
-
2124
- /**
2125
- * [!] Method is generated. Documentation taken from corresponding module.
2126
- *
2127
- * Checks that the page title does not contain the given string.
2128
- *
2129
- * @param $title
2130
- *
2131
- * @return mixed
2132
- * Conditional Assertion: Test won't be stopped on fail
2133
- * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle()
2134
- */
2135
- public function cantSeeInTitle($title) {
2136
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInTitle', func_get_args()));
2137
- }
2138
- /**
2139
- * [!] Method is generated. Documentation taken from corresponding module.
2140
- *
2141
- * Checks that the page title does not contain the given string.
2142
- *
2143
- * @param $title
2144
- *
2145
- * @return mixed
2146
- * @see \Codeception\Lib\InnerBrowser::dontSeeInTitle()
2147
- */
2148
- public function dontSeeInTitle($title) {
2149
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInTitle', func_get_args()));
2150
- }
2151
-
2152
-
2153
- /**
2154
- * [!] Method is generated. Documentation taken from corresponding module.
2155
- *
2156
- * Switch to iframe or frame on the page.
2157
- *
2158
- * Example:
2159
- * ``` html
2160
- * <iframe name="another_frame" src="http://example.com">
2161
- * ```
2162
- *
2163
- * ``` php
2164
- * <?php
2165
- * # switch to iframe
2166
- * $I->switchToIframe("another_frame");
2167
- * ```
2168
- *
2169
- * @param string $name
2170
- * @see \Codeception\Lib\InnerBrowser::switchToIframe()
2171
- */
2172
- public function switchToIframe($name) {
2173
- return $this->getScenario()->runStep(new \Codeception\Step\Action('switchToIframe', func_get_args()));
2174
- }
2175
-
2176
-
2177
- /**
2178
- * [!] Method is generated. Documentation taken from corresponding module.
2179
- *
2180
- * Moves back in history.
2181
- *
2182
- * @param int $numberOfSteps (default value 1)
2183
- * @see \Codeception\Lib\InnerBrowser::moveBack()
2184
- */
2185
- public function moveBack($numberOfSteps = null) {
2186
- return $this->getScenario()->runStep(new \Codeception\Step\Action('moveBack', func_get_args()));
2187
- }
2188
-
2189
-
2190
- /**
2191
- * [!] Method is generated. Documentation taken from corresponding module.
2192
- *
2193
- * Goes to the login page and logs in as the site admin.
2194
- *
2195
- * @return void
2196
- * @see \Codeception\Module\WPBrowser::loginAsAdmin()
2197
- */
2198
- public function loginAsAdmin() {
2199
- return $this->getScenario()->runStep(new \Codeception\Step\Action('loginAsAdmin', func_get_args()));
2200
- }
2201
-
2202
-
2203
- /**
2204
- * [!] Method is generated. Documentation taken from corresponding module.
2205
- *
2206
- * Goes to the login page and logs in using the given credentials.
2207
- *
2208
- * @param string $username
2209
- * @param string $password
2210
- *
2211
- * @return void
2212
- * @see \Codeception\Module\WPBrowser::loginAs()
2213
- */
2214
- public function loginAs($username, $password) {
2215
- return $this->getScenario()->runStep(new \Codeception\Step\Action('loginAs', func_get_args()));
2216
- }
2217
-
2218
-
2219
- /**
2220
- * [!] Method is generated. Documentation taken from corresponding module.
2221
- *
2222
- * In the plugin administration screen activates a plugin clicking the "Activate" link.
2223
- *
2224
- * The method will presume the browser is in the plugin screen already.
2225
- *
2226
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2227
- *
2228
- * @return void
2229
- * @see \Codeception\Module\WPBrowser::activatePlugin()
2230
- */
2231
- public function activatePlugin($pluginSlug) {
2232
- return $this->getScenario()->runStep(new \Codeception\Step\Action('activatePlugin', func_get_args()));
2233
- }
2234
-
2235
-
2236
- /**
2237
- * [!] Method is generated. Documentation taken from corresponding module.
2238
- *
2239
- * In the plugin administration screen deactivates a plugin clicking the "Deactivate" link.
2240
- *
2241
- * The method will presume the browser is in the plugin screen already.
2242
- *
2243
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2244
- *
2245
- * @return void
2246
- * @see \Codeception\Module\WPBrowser::deactivatePlugin()
2247
- */
2248
- public function deactivatePlugin($pluginSlug) {
2249
- return $this->getScenario()->runStep(new \Codeception\Step\Action('deactivatePlugin', func_get_args()));
2250
- }
2251
-
2252
-
2253
- /**
2254
- * [!] Method is generated. Documentation taken from corresponding module.
2255
- *
2256
- * Navigates the browser to the plugins administration screen.
2257
- *
2258
- * Makes no check about the user being logged in and authorized to do so.
2259
- *
2260
- * @return void
2261
- * @see \Codeception\Module\WPBrowser::amOnPluginsPage()
2262
- */
2263
- public function amOnPluginsPage() {
2264
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnPluginsPage', func_get_args()));
2265
- }
2266
-
2267
-
2268
- /**
2269
- * [!] Method is generated. Documentation taken from corresponding module.
2270
- *
2271
- * Navigates the browser to the Pages administration screen.
2272
- *
2273
- * Makes no check about the user being logged in and authorized to do so.
2274
- *
2275
- * @return void
2276
- * @see \Codeception\Module\WPBrowser::amOnPagesPage()
2277
- */
2278
- public function amOnPagesPage() {
2279
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnPagesPage', func_get_args()));
2280
- }
2281
-
2282
-
2283
- /**
2284
- * [!] Method is generated. Documentation taken from corresponding module.
2285
- *
2286
- * Looks for a deactivated plugin in the plugin administration screen.
2287
- *
2288
- * Will not navigate to the plugin administration screen.
2289
- *
2290
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2291
- *
2292
- * @return void
2293
- * Conditional Assertion: Test won't be stopped on fail
2294
- * @see \Codeception\Module\WPBrowser::seePluginDeactivated()
2295
- */
2296
- public function canSeePluginDeactivated($pluginSlug) {
2297
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePluginDeactivated', func_get_args()));
2298
- }
2299
- /**
2300
- * [!] Method is generated. Documentation taken from corresponding module.
2301
- *
2302
- * Looks for a deactivated plugin in the plugin administration screen.
2303
- *
2304
- * Will not navigate to the plugin administration screen.
2305
- *
2306
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2307
- *
2308
- * @return void
2309
- * @see \Codeception\Module\WPBrowser::seePluginDeactivated()
2310
- */
2311
- public function seePluginDeactivated($pluginSlug) {
2312
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePluginDeactivated', func_get_args()));
2313
- }
2314
-
2315
-
2316
- /**
2317
- * [!] Method is generated. Documentation taken from corresponding module.
2318
- *
2319
- * Looks for a plugin in the plugin administration screen.
2320
- *
2321
- * Will not navigate to the plugin administration screen.
2322
- *
2323
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2324
- *
2325
- * @return void
2326
- * Conditional Assertion: Test won't be stopped on fail
2327
- * @see \Codeception\Module\WPBrowser::seePluginInstalled()
2328
- */
2329
- public function canSeePluginInstalled($pluginSlug) {
2330
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePluginInstalled', func_get_args()));
2331
- }
2332
- /**
2333
- * [!] Method is generated. Documentation taken from corresponding module.
2334
- *
2335
- * Looks for a plugin in the plugin administration screen.
2336
- *
2337
- * Will not navigate to the plugin administration screen.
2338
- *
2339
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2340
- *
2341
- * @return void
2342
- * @see \Codeception\Module\WPBrowser::seePluginInstalled()
2343
- */
2344
- public function seePluginInstalled($pluginSlug) {
2345
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePluginInstalled', func_get_args()));
2346
- }
2347
-
2348
-
2349
- /**
2350
- * [!] Method is generated. Documentation taken from corresponding module.
2351
- *
2352
- * Looks for an activated plugin in the plugin administration screen.
2353
- *
2354
- * Will not navigate to the plugin administration screen.
2355
- *
2356
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2357
- *
2358
- * @return void
2359
- * Conditional Assertion: Test won't be stopped on fail
2360
- * @see \Codeception\Module\WPBrowser::seePluginActivated()
2361
- */
2362
- public function canSeePluginActivated($pluginSlug) {
2363
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seePluginActivated', func_get_args()));
2364
- }
2365
- /**
2366
- * [!] Method is generated. Documentation taken from corresponding module.
2367
- *
2368
- * Looks for an activated plugin in the plugin administration screen.
2369
- *
2370
- * Will not navigate to the plugin administration screen.
2371
- *
2372
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2373
- *
2374
- * @return void
2375
- * @see \Codeception\Module\WPBrowser::seePluginActivated()
2376
- */
2377
- public function seePluginActivated($pluginSlug) {
2378
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seePluginActivated', func_get_args()));
2379
- }
2380
-
2381
-
2382
- /**
2383
- * [!] Method is generated. Documentation taken from corresponding module.
2384
- *
2385
- * Looks for a missing plugin in the plugin administration screen.
2386
- *
2387
- * Will not navigate to the plugin administration screen.
2388
- *
2389
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2390
- *
2391
- * @return void
2392
- * Conditional Assertion: Test won't be stopped on fail
2393
- * @see \Codeception\Module\WPBrowser::dontSeePluginInstalled()
2394
- */
2395
- public function cantSeePluginInstalled($pluginSlug) {
2396
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeePluginInstalled', func_get_args()));
2397
- }
2398
- /**
2399
- * [!] Method is generated. Documentation taken from corresponding module.
2400
- *
2401
- * Looks for a missing plugin in the plugin administration screen.
2402
- *
2403
- * Will not navigate to the plugin administration screen.
2404
- *
2405
- * @param string $pluginSlug The plugin slug, like "hello-dolly".
2406
- *
2407
- * @return void
2408
- * @see \Codeception\Module\WPBrowser::dontSeePluginInstalled()
2409
- */
2410
- public function dontSeePluginInstalled($pluginSlug) {
2411
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeePluginInstalled', func_get_args()));
2412
- }
2413
-
2414
-
2415
- /**
2416
- * [!] Method is generated. Documentation taken from corresponding module.
2417
- *
2418
- * In an administration screen will look for an error message.
2419
- *
2420
- * Allows for class-based error checking to decouple from internationalization.
2421
- *
2422
- * @param array $classes A list of classes the error notice should have.
2423
- *
2424
- * @return void
2425
- * Conditional Assertion: Test won't be stopped on fail
2426
- * @see \Codeception\Module\WPBrowser::seeErrorMessage()
2427
- */
2428
- public function canSeeErrorMessage($classes = null) {
2429
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeErrorMessage', func_get_args()));
2430
- }
2431
- /**
2432
- * [!] Method is generated. Documentation taken from corresponding module.
2433
- *
2434
- * In an administration screen will look for an error message.
2435
- *
2436
- * Allows for class-based error checking to decouple from internationalization.
2437
- *
2438
- * @param array $classes A list of classes the error notice should have.
2439
- *
2440
- * @return void
2441
- * @see \Codeception\Module\WPBrowser::seeErrorMessage()
2442
- */
2443
- public function seeErrorMessage($classes = null) {
2444
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeErrorMessage', func_get_args()));
2445
- }
2446
-
2447
-
2448
- /**
2449
- * [!] Method is generated. Documentation taken from corresponding module.
2450
- *
2451
- * Checks that the current page is a wp_die generated one.
2452
- *
2453
- * @return void
2454
- * Conditional Assertion: Test won't be stopped on fail
2455
- * @see \Codeception\Module\WPBrowser::seeWpDiePage()
2456
- */
2457
- public function canSeeWpDiePage() {
2458
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeWpDiePage', func_get_args()));
2459
- }
2460
- /**
2461
- * [!] Method is generated. Documentation taken from corresponding module.
2462
- *
2463
- * Checks that the current page is a wp_die generated one.
2464
- *
2465
- * @return void
2466
- * @see \Codeception\Module\WPBrowser::seeWpDiePage()
2467
- */
2468
- public function seeWpDiePage() {
2469
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeWpDiePage', func_get_args()));
2470
- }
2471
-
2472
-
2473
- /**
2474
- * [!] Method is generated. Documentation taken from corresponding module.
2475
- *
2476
- * In an administration screen will look for a message.
2477
- *
2478
- * Allows for class-based error checking to decouple from internationalization.
2479
- *
2480
- * @param array $classes A list of classes the message should have.
2481
- *
2482
- * @return void
2483
- * Conditional Assertion: Test won't be stopped on fail
2484
- * @see \Codeception\Module\WPBrowser::seeMessage()
2485
- */
2486
- public function canSeeMessage($classes = null) {
2487
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeMessage', func_get_args()));
2488
- }
2489
- /**
2490
- * [!] Method is generated. Documentation taken from corresponding module.
2491
- *
2492
- * In an administration screen will look for a message.
2493
- *
2494
- * Allows for class-based error checking to decouple from internationalization.
2495
- *
2496
- * @param array $classes A list of classes the message should have.
2497
- *
2498
- * @return void
2499
- * @see \Codeception\Module\WPBrowser::seeMessage()
2500
- */
2501
- public function seeMessage($classes = null) {
2502
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeMessage', func_get_args()));
2503
- }
2504
-
2505
-
2506
- /**
2507
- * [!] Method is generated. Documentation taken from corresponding module.
2508
- *
2509
- * Returns WordPress default test cookie if present.
2510
- *
2511
- * @param null $pattern Optional, overrides the default cookie name.
2512
- *
2513
- * @return mixed Either a cookie or null.
2514
- * @see \Codeception\Module\WPBrowser::grabWordPressTestCookie()
2515
- */
2516
- public function grabWordPressTestCookie($pattern = null) {
2517
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabWordPressTestCookie', func_get_args()));
2518
- }
2519
-
2520
-
2521
- /**
2522
- * [!] Method is generated. Documentation taken from corresponding module.
2523
- *
2524
- * Returns WordPress default login cookie if present.
2525
- *
2526
- * @param null $pattern Optional, overrides the default cookie name.
2527
- *
2528
- * @return mixed Either a cookie or null.
2529
- * @see \Codeception\Module\WPBrowser::grabWordPressLoginCookie()
2530
- */
2531
- public function grabWordPressLoginCookie($pattern = null) {
2532
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabWordPressLoginCookie', func_get_args()));
2533
- }
2534
-
2535
-
2536
- /**
2537
- * [!] Method is generated. Documentation taken from corresponding module.
2538
- *
2539
- * Returns WordPress default auth cookie if present.
2540
- *
2541
- * @param null $pattern Optional, overrides the default cookie name.
2542
- *
2543
- * @return mixed Either a cookie or null.
2544
- * @see \Codeception\Module\WPBrowser::grabWordPressAuthCookie()
2545
- */
2546
- public function grabWordPressAuthCookie($pattern = null) {
2547
- return $this->getScenario()->runStep(new \Codeception\Step\Action('grabWordPressAuthCookie', func_get_args()));
2548
- }
2549
-
2550
-
2551
- /**
2552
- * [!] Method is generated. Documentation taken from corresponding module.
2553
- *
2554
- *
2555
- * @see \Codeception\Module\WPBrowser::amOnAdminPage()
2556
- */
2557
- public function amOnAdminPage($path) {
2558
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amOnAdminPage', func_get_args()));
2559
- }
2560
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/_generated/FunctionalTesterActions.php DELETED
@@ -1,438 +0,0 @@
1
- <?php //[STAMP] 122218524230b4673d45c4aaa0c93107
2
- namespace _generated;
3
-
4
- // This class was automatically generated by build task
5
- // You should not change it manually as it will be overwritten on next build
6
- // @codingStandardsIgnoreFile
7
-
8
- use Codeception\Module\Filesystem;
9
- use Codeception\Module\WPLoader;
10
- use Helper\Functional;
11
-
12
- trait FunctionalTesterActions
13
- {
14
- /**
15
- * @return \Codeception\Scenario
16
- */
17
- abstract protected function getScenario();
18
-
19
-
20
- /**
21
- * [!] Method is generated. Documentation taken from corresponding module.
22
- *
23
- * Enters a directory In local filesystem.
24
- * Project root directory is used by default
25
- *
26
- * @param $path
27
- * @see \Codeception\Module\Filesystem::amInPath()
28
- */
29
- public function amInPath($path) {
30
- return $this->getScenario()->runStep(new \Codeception\Step\Condition('amInPath', func_get_args()));
31
- }
32
-
33
-
34
- /**
35
- * [!] Method is generated. Documentation taken from corresponding module.
36
- *
37
- * Opens a file and stores it's content.
38
- *
39
- * Usage:
40
- *
41
- * ``` php
42
- * <?php
43
- * $I->openFile('composer.json');
44
- * $I->seeInThisFile('codeception/codeception');
45
- * ?>
46
- * ```
47
- *
48
- * @param $filename
49
- * @see \Codeception\Module\Filesystem::openFile()
50
- */
51
- public function openFile($filename) {
52
- return $this->getScenario()->runStep(new \Codeception\Step\Action('openFile', func_get_args()));
53
- }
54
-
55
-
56
- /**
57
- * [!] Method is generated. Documentation taken from corresponding module.
58
- *
59
- * Deletes a file
60
- *
61
- * ``` php
62
- * <?php
63
- * $I->deleteFile('composer.lock');
64
- * ?>
65
- * ```
66
- *
67
- * @param $filename
68
- * @see \Codeception\Module\Filesystem::deleteFile()
69
- */
70
- public function deleteFile($filename) {
71
- return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteFile', func_get_args()));
72
- }
73
-
74
-
75
- /**
76
- * [!] Method is generated. Documentation taken from corresponding module.
77
- *
78
- * Deletes directory with all subdirectories
79
- *
80
- * ``` php
81
- * <?php
82
- * $I->deleteDir('vendor');
83
- * ?>
84
- * ```
85
- *
86
- * @param $dirname
87
- * @see \Codeception\Module\Filesystem::deleteDir()
88
- */
89
- public function deleteDir($dirname) {
90
- return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteDir', func_get_args()));
91
- }
92
-
93
-
94
- /**
95
- * [!] Method is generated. Documentation taken from corresponding module.
96
- *
97
- * Copies directory with all contents
98
- *
99
- * ``` php
100
- * <?php
101
- * $I->copyDir('vendor','old_vendor');
102
- * ?>
103
- * ```
104
- *
105
- * @param $src
106
- * @param $dst
107
- * @see \Codeception\Module\Filesystem::copyDir()
108
- */
109
- public function copyDir($src, $dst) {
110
- return $this->getScenario()->runStep(new \Codeception\Step\Action('copyDir', func_get_args()));
111
- }
112
-
113
-
114
- /**
115
- * [!] Method is generated. Documentation taken from corresponding module.
116
- *
117
- * Checks If opened file has `text` in it.
118
- *
119
- * Usage:
120
- *
121
- * ``` php
122
- * <?php
123
- * $I->openFile('composer.json');
124
- * $I->seeInThisFile('codeception/codeception');
125
- * ?>
126
- * ```
127
- *
128
- * @param $text
129
- * Conditional Assertion: Test won't be stopped on fail
130
- * @see \Codeception\Module\Filesystem::seeInThisFile()
131
- */
132
- public function canSeeInThisFile($text) {
133
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInThisFile', func_get_args()));
134
- }
135
- /**
136
- * [!] Method is generated. Documentation taken from corresponding module.
137
- *
138
- * Checks If opened file has `text` in it.
139
- *
140
- * Usage:
141
- *
142
- * ``` php
143
- * <?php
144
- * $I->openFile('composer.json');
145
- * $I->seeInThisFile('codeception/codeception');
146
- * ?>
147
- * ```
148
- *
149
- * @param $text
150
- * @see \Codeception\Module\Filesystem::seeInThisFile()
151
- */
152
- public function seeInThisFile($text) {
153
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInThisFile', func_get_args()));
154
- }
155
-
156
-
157
- /**
158
- * [!] Method is generated. Documentation taken from corresponding module.
159
- *
160
- * Checks If opened file has the `number` of new lines.
161
- *
162
- * Usage:
163
- *
164
- * ``` php
165
- * <?php
166
- * $I->openFile('composer.json');
167
- * $I->seeNumberNewLines(5);
168
- * ?>
169
- * ```
170
- *
171
- * @param int $number New lines
172
- * Conditional Assertion: Test won't be stopped on fail
173
- * @see \Codeception\Module\Filesystem::seeNumberNewLines()
174
- */
175
- public function canSeeNumberNewLines($number) {
176
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberNewLines', func_get_args()));
177
- }
178
- /**
179
- * [!] Method is generated. Documentation taken from corresponding module.
180
- *
181
- * Checks If opened file has the `number` of new lines.
182
- *
183
- * Usage:
184
- *
185
- * ``` php
186
- * <?php
187
- * $I->openFile('composer.json');
188
- * $I->seeNumberNewLines(5);
189
- * ?>
190
- * ```
191
- *
192
- * @param int $number New lines
193
- * @see \Codeception\Module\Filesystem::seeNumberNewLines()
194
- */
195
- public function seeNumberNewLines($number) {
196
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberNewLines', func_get_args()));
197
- }
198
-
199
-
200
- /**
201
- * [!] Method is generated. Documentation taken from corresponding module.
202
- *
203
- * Checks the strict matching of file contents.
204
- * Unlike `seeInThisFile` will fail if file has something more than expected lines.
205
- * Better to use with HEREDOC strings.
206
- * Matching is done after removing "\r" chars from file content.
207
- *
208
- * ``` php
209
- * <?php
210
- * $I->openFile('process.pid');
211
- * $I->seeFileContentsEqual('3192');
212
- * ?>
213
- * ```
214
- *
215
- * @param $text
216
- * Conditional Assertion: Test won't be stopped on fail
217
- * @see \Codeception\Module\Filesystem::seeFileContentsEqual()
218
- */
219
- public function canSeeFileContentsEqual($text) {
220
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileContentsEqual', func_get_args()));
221
- }
222
- /**
223
- * [!] Method is generated. Documentation taken from corresponding module.
224
- *
225
- * Checks the strict matching of file contents.
226
- * Unlike `seeInThisFile` will fail if file has something more than expected lines.
227
- * Better to use with HEREDOC strings.
228
- * Matching is done after removing "\r" chars from file content.
229
- *
230
- * ``` php
231
- * <?php
232
- * $I->openFile('process.pid');
233
- * $I->seeFileContentsEqual('3192');
234
- * ?>
235
- * ```
236
- *
237
- * @param $text
238
- * @see \Codeception\Module\Filesystem::seeFileContentsEqual()
239
- */
240
- public function seeFileContentsEqual($text) {
241
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileContentsEqual', func_get_args()));
242
- }
243
-
244
-
245
- /**
246
- * [!] Method is generated. Documentation taken from corresponding module.
247
- *
248
- * Checks If opened file doesn't contain `text` in it
249
- *
250
- * ``` php
251
- * <?php
252
- * $I->openFile('composer.json');
253
- * $I->dontSeeInThisFile('codeception/codeception');
254
- * ?>
255
- * ```
256
- *
257
- * @param $text
258
- * Conditional Assertion: Test won't be stopped on fail
259
- * @see \Codeception\Module\Filesystem::dontSeeInThisFile()
260
- */
261
- public function cantSeeInThisFile($text) {
262
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInThisFile', func_get_args()));
263
- }
264
- /**
265
- * [!] Method is generated. Documentation taken from corresponding module.
266
- *
267
- * Checks If opened file doesn't contain `text` in it
268
- *
269
- * ``` php
270
- * <?php
271
- * $I->openFile('composer.json');
272
- * $I->dontSeeInThisFile('codeception/codeception');
273
- * ?>
274
- * ```
275
- *
276
- * @param $text
277
- * @see \Codeception\Module\Filesystem::dontSeeInThisFile()
278
- */
279
- public function dontSeeInThisFile($text) {
280
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInThisFile', func_get_args()));
281
- }
282
-
283
-
284
- /**
285
- * [!] Method is generated. Documentation taken from corresponding module.
286
- *
287
- * Deletes a file
288
- * @see \Codeception\Module\Filesystem::deleteThisFile()
289
- */
290
- public function deleteThisFile() {
291
- return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteThisFile', func_get_args()));
292
- }
293
-
294
-
295
- /**
296
- * [!] Method is generated. Documentation taken from corresponding module.
297
- *
298
- * Checks if file exists in path.
299
- * Opens a file when it's exists
300
- *
301
- * ``` php
302
- * <?php
303
- * $I->seeFileFound('UserModel.php','app/models');
304
- * ?>
305
- * ```
306
- *
307
- * @param $filename
308
- * @param string $path
309
- * Conditional Assertion: Test won't be stopped on fail
310
- * @see \Codeception\Module\Filesystem::seeFileFound()
311
- */
312
- public function canSeeFileFound($filename, $path = null) {
313
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileFound', func_get_args()));
314
- }
315
- /**
316
- * [!] Method is generated. Documentation taken from corresponding module.
317
- *
318
- * Checks if file exists in path.
319
- * Opens a file when it's exists
320
- *
321
- * ``` php
322
- * <?php
323
- * $I->seeFileFound('UserModel.php','app/models');
324
- * ?>
325
- * ```
326
- *
327
- * @param $filename
328
- * @param string $path
329
- * @see \Codeception\Module\Filesystem::seeFileFound()
330
- */
331
- public function seeFileFound($filename, $path = null) {
332
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileFound', func_get_args()));
333
- }
334
-
335
-
336
- /**
337
- * [!] Method is generated. Documentation taken from corresponding module.
338
- *
339
- * Checks if file does not exist in path
340
- *
341
- * @param $filename
342
- * @param string $path
343
- * Conditional Assertion: Test won't be stopped on fail
344
- * @see \Codeception\Module\Filesystem::dontSeeFileFound()
345
- */
346
- public function cantSeeFileFound($filename, $path = null) {
347
- return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeFileFound', func_get_args()));
348
- }
349
- /**
350
- * [!] Method is generated. Documentation taken from corresponding module.
351
- *
352
- * Checks if file does not exist in path
353
- *
354
- * @param $filename
355
- * @param string $path
356
- * @see \Codeception\Module\Filesystem::dontSeeFileFound()
357
- */
358
- public function dontSeeFileFound($filename, $path = null) {
359
- return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeFileFound', func_get_args()));
360
- }
361
-
362
-
363
- /**
364
- * [!] Method is generated. Documentation taken from corresponding module.
365
- *
366
- * Erases directory contents
367
- *
368
- * ``` php
369
- * <?php
370
- * $I->cleanDir('logs');
371
- * ?>
372
- * ```
373
- *
374
- * @param $dirname
375
- * @see \Codeception\Module\Filesystem::cleanDir()
376
- */
377
- public function cleanDir($dirname) {
378
- return $this->getScenario()->runStep(new \Codeception\Step\Action('cleanDir', func_get_args()));
379
- }
380
-
381
-
382
- /**
383
- * [!] Method is generated. Documentation taken from corresponding module.
384
- *
385
- * Saves contents to file
386
- *
387
- * @param $filename
388
- * @param $contents
389
- * @see \Codeception\Module\Filesystem::writeToFile()
390
- */
391
- public function writeToFile($filename, $contents) {
392
- return $this->getScenario()->runStep(new \Codeception\Step\Action('writeToFile', func_get_args()));
393
- }
394
-
395
-
396
- /**
397
- * [!] Method is generated. Documentation taken from corresponding module.
398
- *
399
- *
400
- * @see \Codeception\Module\WPLoader::ensureDbModuleCompat()
401
- */
402
- public function ensureDbModuleCompat() {
403
- return $this->getScenario()->runStep(new \Codeception\Step\Action('ensureDbModuleCompat', func_get_args()));
404
- }
405
-
406
-
407
- /**
408
- * [!] Method is generated. Documentation taken from corresponding module.
409
- *
410
- *
411
- * @see \Codeception\Module\WPLoader::activatePlugins()
412
- */
413
- public function activatePlugins() {
414
- return $this->getScenario()->runStep(new \Codeception\Step\Action('activatePlugins', func_get_args()));
415
- }
416
-
417
-
418
- /**
419
- * [!] Method is generated. Documentation taken from corresponding module.
420
- *
421
- * Loads the plugins required by the test.
422
- * @see \Codeception\Module\WPLoader::loadPlugins()
423
- */
424
- public function loadPlugins() {
425
- return $this->getScenario()->runStep(new \Codeception\Step\Action('loadPlugins', func_get_args()));
426
- }
427
-
428
-
429
- /**
430
- * [!] Method is generated. Documentation taken from corresponding module.
431
- *
432
- * Calls a list of user-defined actions needed in tests.
433
- * @see \Codeception\Module\WPLoader::bootstrapActions()
434
- */
435
- public function bootstrapActions() {
436
- return $this->getScenario()->runStep(new \Codeception\Step\Action('bootstrapActions', func_get_args()));
437
- }
438
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/_generated/UnitTesterActions.php DELETED
@@ -1,344 +0,0 @@
1
- <?php //[STAMP] 6f4d3327636d16498d984c179536c908
2
- namespace _generated;
3
-
4
- // This class was automatically generated by build task
5
- // You should not change it manually as it will be overwritten on next build
6
- // @codingStandardsIgnoreFile
7
-
8
- use Codeception\Module\Asserts;
9
- use Helper\Unit;
10
-
11
- trait UnitTesterActions
12
- {
13
- /**
14
- * @return \Codeception\Scenario
15
- */
16
- abstract protected function getScenario();
17
-
18
-
19
- /**
20
- * [!] Method is generated. Documentation taken from corresponding module.
21
- *
22
- * Checks that two variables are equal.
23
- *
24
- * @param $expected
25
- * @param $actual
26
- * @param string $message
27
- * @see \Codeception\Module\Asserts::assertEquals()
28
- */
29
- public function assertEquals($expected, $actual, $message = null) {
30
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEquals', func_get_args()));
31
- }
32
-
33
-
34
- /**
35
- * [!] Method is generated. Documentation taken from corresponding module.
36
- *
37
- * Checks that two variables are not equal
38
- *
39
- * @param $expected
40
- * @param $actual
41
- * @param string $message
42
- * @see \Codeception\Module\Asserts::assertNotEquals()
43
- */
44
- public function assertNotEquals($expected, $actual, $message = null) {
45
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEquals', func_get_args()));
46
- }
47
-
48
-
49
- /**
50
- * [!] Method is generated. Documentation taken from corresponding module.
51
- *
52
- * Checks that two variables are same
53
- *
54
- * @param $expected
55
- * @param $actual
56
- * @param string $message
57
- * @see \Codeception\Module\Asserts::assertSame()
58
- */
59
- public function assertSame($expected, $actual, $message = null) {
60
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertSame', func_get_args()));
61
- }
62
-
63
-
64
- /**
65
- * [!] Method is generated. Documentation taken from corresponding module.
66
- *
67
- * Checks that two variables are not same
68
- *
69
- * @param $expected
70
- * @param $actual
71
- * @param string $message
72
- * @see \Codeception\Module\Asserts::assertNotSame()
73
- */
74
- public function assertNotSame($expected, $actual, $message = null) {
75
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotSame', func_get_args()));
76
- }
77
-
78
-
79
- /**
80
- * [!] Method is generated. Documentation taken from corresponding module.
81
- *
82
- * Checks that actual is greater than expected
83
- *
84
- * @param $expected
85
- * @param $actual
86
- * @param string $message
87
- * @see \Codeception\Module\Asserts::assertGreaterThan()
88
- */
89
- public function assertGreaterThan($expected, $actual, $message = null) {
90
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThan', func_get_args()));
91
- }
92
-
93
-
94
- /**
95
- * [!] Method is generated. Documentation taken from corresponding module.
96
- *
97
- * @deprecated
98
- * @see \Codeception\Module\Asserts::assertGreaterThen()
99
- */
100
- public function assertGreaterThen($expected, $actual, $message = null) {
101
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThen', func_get_args()));
102
- }
103
-
104
-
105
- /**
106
- * [!] Method is generated. Documentation taken from corresponding module.
107
- *
108
- * Checks that actual is greater or equal than expected
109
- *
110
- * @param $expected
111
- * @param $actual
112
- * @param string $message
113
- * @see \Codeception\Module\Asserts::assertGreaterThanOrEqual()
114
- */
115
- public function assertGreaterThanOrEqual($expected, $actual, $message = null) {
116
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThanOrEqual', func_get_args()));
117
- }
118
-
119
-
120
- /**
121
- * [!] Method is generated. Documentation taken from corresponding module.
122
- *
123
- * @deprecated
124
- * @see \Codeception\Module\Asserts::assertGreaterThenOrEqual()
125
- */
126
- public function assertGreaterThenOrEqual($expected, $actual, $message = null) {
127
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThenOrEqual', func_get_args()));
128
- }
129
-
130
-
131
- /**
132
- * [!] Method is generated. Documentation taken from corresponding module.
133
- *
134
- * Checks that actual is less than expected
135
- *
136
- * @param $expected
137
- * @param $actual
138
- * @param string $message
139
- * @see \Codeception\Module\Asserts::assertLessThan()
140
- */
141
- public function assertLessThan($expected, $actual, $message = null) {
142
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThan', func_get_args()));
143
- }
144
-
145
-
146
- /**
147
- * [!] Method is generated. Documentation taken from corresponding module.
148
- *
149
- * Checks that actual is less or equal than expected
150
- *
151
- * @param $expected
152
- * @param $actual
153
- * @param string $message
154
- * @see \Codeception\Module\Asserts::assertLessThanOrEqual()
155
- */
156
- public function assertLessThanOrEqual($expected, $actual, $message = null) {
157
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThanOrEqual', func_get_args()));
158
- }
159
-
160
-
161
- /**
162
- * [!] Method is generated. Documentation taken from corresponding module.
163
- *
164
- * Checks that haystack contains needle
165
- *
166
- * @param $needle
167
- * @param $haystack
168
- * @param string $message
169
- * @see \Codeception\Module\Asserts::assertContains()
170
- */
171
- public function assertContains($needle, $haystack, $message = null) {
172
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContains', func_get_args()));
173
- }
174
-
175
-
176
- /**
177
- * [!] Method is generated. Documentation taken from corresponding module.
178
- *
179
- * Checks that haystack doesn't contain needle.
180
- *
181
- * @param $needle
182
- * @param $haystack
183
- * @param string $message
184
- * @see \Codeception\Module\Asserts::assertNotContains()
185
- */
186
- public function assertNotContains($needle, $haystack, $message = null) {
187
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotContains', func_get_args()));
188
- }
189
-
190
-
191
- /**
192
- * [!] Method is generated. Documentation taken from corresponding module.
193
- *
194
- * Checks that string match with pattern
195
- *
196
- * @param string $pattern
197
- * @param string $string
198
- * @param string $message
199
- * @see \Codeception\Module\Asserts::assertRegExp()
200
- */
201
- public function assertRegExp($pattern, $string, $message = null) {
202
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertRegExp', func_get_args()));
203
- }
204
-
205
-
206
- /**
207
- * [!] Method is generated. Documentation taken from corresponding module.
208
- *
209
- * Checks that string not match with pattern
210
- *
211
- * @param string $pattern
212
- * @param string $string
213
- * @param string $message
214
- * @see \Codeception\Module\Asserts::assertNotRegExp()
215
- */
216
- public function assertNotRegExp($pattern, $string, $message = null) {
217
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotRegExp', func_get_args()));
218
- }
219
-
220
-
221
- /**
222
- * [!] Method is generated. Documentation taken from corresponding module.
223
- *
224
- * Checks that variable is empty.
225
- *
226
- * @param $actual
227
- * @param string $message
228
- * @see \Codeception\Module\Asserts::assertEmpty()
229
- */
230
- public function assertEmpty($actual, $message = null) {
231
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args()));
232
- }
233
-
234
-
235
- /**
236
- * [!] Method is generated. Documentation taken from corresponding module.
237
- *
238
- * Checks that variable is not empty.
239
- *
240
- * @param $actual
241
- * @param string $message
242
- * @see \Codeception\Module\Asserts::assertNotEmpty()
243
- */
244
- public function assertNotEmpty($actual, $message = null) {
245
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEmpty', func_get_args()));
246
- }
247
-
248
-
249
- /**
250
- * [!] Method is generated. Documentation taken from corresponding module.
251
- *
252
- * Checks that variable is NULL
253
- *
254
- * @param $actual
255
- * @param string $message
256
- * @see \Codeception\Module\Asserts::assertNull()
257
- */
258
- public function assertNull($actual, $message = null) {
259
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNull', func_get_args()));
260
- }
261
-
262
-
263
- /**
264
- * [!] Method is generated. Documentation taken from corresponding module.
265
- *
266
- * Checks that variable is not NULL
267
- *
268
- * @param $actual
269
- * @param string $message
270
- * @see \Codeception\Module\Asserts::assertNotNull()
271
- */
272
- public function assertNotNull($actual, $message = null) {
273
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotNull', func_get_args()));
274
- }
275
-
276
-
277
- /**
278
- * [!] Method is generated. Documentation taken from corresponding module.
279
- *
280
- * Checks that condition is positive.
281
- *
282
- * @param $condition
283
- * @param string $message
284
- * @see \Codeception\Module\Asserts::assertTrue()
285
- */
286
- public function assertTrue($condition, $message = null) {
287
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertTrue', func_get_args()));
288
- }
289
-
290
-
291
- /**
292
- * [!] Method is generated. Documentation taken from corresponding module.
293
- *
294
- * Checks that condition is negative.
295
- *
296
- * @param $condition
297
- * @param string $message
298
- * @see \Codeception\Module\Asserts::assertFalse()
299
- */
300
- public function assertFalse($condition, $message = null) {
301
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFalse', func_get_args()));
302
- }
303
-
304
-
305
- /**
306
- * [!] Method is generated. Documentation taken from corresponding module.
307
- *
308
- * Checks if file exists
309
- *
310
- * @param string $filename
311
- * @param string $message
312
- * @see \Codeception\Module\Asserts::assertFileExists()
313
- */
314
- public function assertFileExists($filename, $message = null) {
315
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileExists', func_get_args()));
316
- }
317
-
318
-
319
- /**
320
- * [!] Method is generated. Documentation taken from corresponding module.
321
- *
322
- * Checks if file doesn't exist
323
- *
324
- * @param string $filename
325
- * @param string $message
326
- * @see \Codeception\Module\Asserts::assertFileNotExists()
327
- */
328
- public function assertFileNotExists($filename, $message = null) {
329
- return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotExists', func_get_args()));
330
- }
331
-
332
-
333
- /**
334
- * [!] Method is generated. Documentation taken from corresponding module.
335
- *
336
- * Fails the test with message.
337
- *
338
- * @param $message
339
- * @see \Codeception\Module\Asserts::fail()
340
- */
341
- public function fail($message) {
342
- return $this->getScenario()->runStep(new \Codeception\Step\Action('fail', func_get_args()));
343
- }
344
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/_support/_generated/WpunitTesterActions.php DELETED
@@ -1,61 +0,0 @@
1
- <?php //[STAMP] 61e6b71b4e38653032d8cba419bb8efe
2
- namespace _generated;
3
-
4
- // This class was automatically generated by build task
5
- // You should not change it manually as it will be overwritten on next build
6
- // @codingStandardsIgnoreFile
7
-
8
- use Codeception\Module\WPLoader;
9
- use Helper\Wpunit;
10
-
11
- trait WpunitTesterActions
12
- {
13
- /**
14
- * @return \Codeception\Scenario
15
- */
16
- abstract protected function getScenario();
17
-
18
-
19
- /**
20
- * [!] Method is generated. Documentation taken from corresponding module.
21
- *
22
- *
23
- * @see \Codeception\Module\WPLoader::ensureDbModuleCompat()
24
- */
25
- public function ensureDbModuleCompat() {
26
- return $this->getScenario()->runStep(new \Codeception\Step\Action('ensureDbModuleCompat', func_get_args()));
27
- }
28
-
29
-
30
- /**
31
- * [!] Method is generated. Documentation taken from corresponding module.
32
- *
33
- *
34
- * @see \Codeception\Module\WPLoader::activatePlugins()
35
- */
36
- public function activatePlugins() {
37
- return $this->getScenario()->runStep(new \Codeception\Step\Action('activatePlugins', func_get_args()));
38
- }
39
-
40
-
41
- /**
42
- * [!] Method is generated. Documentation taken from corresponding module.
43
- *
44
- * Loads the plugins required by the test.
45
- * @see \Codeception\Module\WPLoader::loadPlugins()
46
- */
47
- public function loadPlugins() {
48
- return $this->getScenario()->runStep(new \Codeception\Step\Action('loadPlugins', func_get_args()));
49
- }
50
-
51
-
52
- /**
53
- * [!] Method is generated. Documentation taken from corresponding module.
54
- *
55
- * Calls a list of user-defined actions needed in tests.
56
- * @see \Codeception\Module\WPLoader::bootstrapActions()
57
- */
58
- public function bootstrapActions() {
59
- return $this->getScenario()->runStep(new \Codeception\Step\Action('bootstrapActions', func_get_args()));
60
- }
61
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/acceptance.suite.yml DELETED
@@ -1,9 +0,0 @@
1
- # Codeception Test Suite Configuration
2
-
3
- # suite for WordPress acceptance tests.
4
- # perform tests in browser using WPBrowser or WPWebDriver modules.
5
- class_name: AcceptanceTester
6
- modules:
7
- enabled:
8
- - WPBrowser
9
- - \Helper\Acceptance
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/acceptance/_bootstrap.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Here you can initialize variables that will be available to your tests
 
 
vendor/overclokk/minimum-requirements/tests/functional.suite.yml DELETED
@@ -1,7 +0,0 @@
1
- # Codeception Test Suite Configuration
2
-
3
- # suite for WordPress functional tests.
4
- # Emulate web requests and make application process them.
5
- class_name: FunctionalTester
6
- modules:
7
- enabled: [Filesystem, WPLoader, \Helper\Functional]
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/functional/_bootstrap.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Here you can initialize variables that will be available to your tests
 
 
vendor/overclokk/minimum-requirements/tests/unit.suite.yml DELETED
@@ -1,9 +0,0 @@
1
- # Codeception Test Suite Configuration
2
- #
3
- # Suite for unit (internal) tests.
4
-
5
- class_name: UnitTester
6
- modules:
7
- enabled:
8
- - Asserts
9
- - \Helper\Unit
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/unit/_bootstrap.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Here you can initialize variables that will be available to your tests
 
 
vendor/overclokk/minimum-requirements/tests/wpunit.suite.yml DELETED
@@ -1,7 +0,0 @@
1
- # Codeception Test Suite Configuration
2
-
3
- # suite for WordPress unit tests.
4
- # Load WordPress and unit test classes that rely on it.
5
- class_name: WpunitTester
6
- modules:
7
- enabled: [WPLoader, \Helper\Wpunit]
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/wpunit/Minimum_RequirementsTest.php DELETED
@@ -1,143 +0,0 @@
1
- <?php
2
- use tad\FunctionMocker\FunctionMocker as Test;
3
-
4
- class Minimum_RequirementsTest extends \Codeception\TestCase\WPTestCase {
5
-
6
- public function setUp() {
7
- // before
8
- parent::setUp();
9
-
10
- // your set up methods here
11
- Test::setUp();
12
- }
13
-
14
- public function tearDown() {
15
- // your tear down methods here
16
-
17
- // then
18
- parent::tearDown();
19
- Test::tearDown();
20
- }
21
-
22
- /**
23
- * @test
24
- * it should be instantiatable
25
- */
26
- public function it_should_be_instantiatable() {
27
- $this->assertInstanceOf( 'Minimum_Requirements', new Minimum_Requirements( '5.2', '4.0' ) );
28
- }
29
-
30
- /**
31
- * @test
32
- * it should throw if php version is not a string
33
- */
34
- public function it_should_throw_if_php_version_is_not_a_string() {
35
- $this->setExpectedException( 'InvalidArgumentException' );
36
-
37
- new Minimum_Requirements( 23, '4.0' );
38
- }
39
-
40
- /**
41
- * @test
42
- * it should throw if wp version is not a string
43
- */
44
- public function it_should_throw_if_wp_version_is_not_a_string() {
45
- $this->setExpectedException( 'InvalidArgumentException' );
46
-
47
- new Minimum_Requirements( '5.2', 23 );
48
- }
49
-
50
- /**
51
- * @test
52
- * it should throw if name is not a string
53
- */
54
- public function it_should_throw_if_name_is_not_a_string() {
55
- $this->setExpectedException( 'InvalidArgumentException' );
56
-
57
- new Minimum_Requirements( '5.2', '4.3', 23 );
58
- }
59
-
60
- public function php_versions() {
61
- return [
62
- [ '5', true ],
63
- [ '5.2', true ],
64
- [ '5.2.19', true ],
65
- [ phpversion(), true ],
66
- [ '7', false ],
67
- [ '7.1', false ],
68
- [ '7.2.3', false ],
69
- ];
70
- }
71
-
72
- /**
73
- * @test
74
- * it should support semantic version of PHP
75
- * @dataProvider php_versions
76
- */
77
- public function it_should_support_semantic_version_of_php( $php_version, $expected ) {
78
- $sut = new Minimum_Requirements( $php_version, '4.3', 'Some plugin' );
79
-
80
- $out = $sut->is_compatible_php();
81
-
82
- $this->assertEquals( $expected, $out );
83
- }
84
-
85
- public function wp_versions() {
86
- return [
87
- [ '3', true ],
88
- [ '3.2', true ],
89
- [ '3.2.3', true ],
90
- [ '13', false ],
91
- [ '13.2', false ],
92
- [ '13.2.3', false ],
93
- ];
94
- }
95
-
96
- /**
97
- * @test
98
- * it should support semantic versioning of WP
99
- * @dataProvider wp_versions
100
- */
101
- public function it_should_support_semantic_versioning_of_wp( $wp_version, $expected ) {
102
- $sut = new Minimum_Requirements( '5.3', $wp_version, 'Some plugin' );
103
-
104
- $out = $sut->is_compatible_wordpress();
105
-
106
- $this->assertEquals( $expected, $out );
107
- }
108
-
109
- public function required_plugins() {
110
- // a and b are active and installed
111
- return [
112
- [ [ ], true ],
113
- [ [ 'plugin-a' ], true ],
114
- [ [ 'plugin-a', 'plugin-b' ], true ],
115
- [ [ 'plugin-b', 'plugin-c' ], false ],
116
- [ [ 'plugin-c', 'plugin-d' ], false ],
117
- [ [ 'plugin-d' ], false ],
118
- ];
119
- }
120
-
121
- /**
122
- * @test
123
- * it should spot missing required plugins
124
- * @dataProvider required_plugins
125
- */
126
- public function it_should_spot_missing_required_plugins( $plugins, $expected ) {
127
- Test::replace( 'wp_get_active_and_valid_plugins', [ WP_PLUGIN_DIR . '/plugin-a/plugin-a.php', WP_PLUGIN_DIR . '/plugin-b/plugin-b.php' ] );
128
- Test::replace( 'get_plugin_data',
129
- function ( $plugin ) {
130
- $map = [
131
- WP_PLUGIN_DIR . '/plugin-a/plugin-a.php' => [ 'Name' => 'Plugin A' ],
132
- WP_PLUGIN_DIR . '/plugin-b/plugin-b.php' => [ 'Name' => 'Plugin B' ],
133
- ];
134
-
135
- return isset( $map[ $plugin ] ) ? $map[ $plugin ] : \Patchwork\Interceptor\callOriginal( func_get_args() );
136
- } );
137
- $sut = new Minimum_Requirements( '5.2', '4.0', 'Some plugin', $plugins );
138
-
139
- $out = $sut->are_required_plugins_active();
140
-
141
- $this->assertEquals( $expected, $out );
142
- }
143
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendor/overclokk/minimum-requirements/tests/wpunit/_bootstrap.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Here you can initialize variables that will be available to your tests