Instant Articles for WP - Version 2.10

Version Description

Download this release

Release Info

Developer diegoquinteiro
Plugin Icon 128x128 Instant Articles for WP
Version 2.10
Comparing to
See all releases

Code changes from version 2.9 to 2.10

README.md CHANGED
@@ -8,6 +8,10 @@ This plugin adds support for Instant Articles for Facebook, which is a new way f
8
 
9
  With the plugin active, a new menu will be available for you to connect to your Facebook Page and start publishing your Instant Articles. You'll also see the status of each Instant Articles submission on the edit page of your posts.
10
 
 
 
 
 
11
  ## Feed submission to Facebook
12
 
13
  Facebook has a review process where they verify that all Instant Articles are properly formatted, have content consistency with their mobile web counterparts, and adhere to their community standards and content policies. You will not be able to publish Instant Articles in Facebook until your feed has been approved.
@@ -26,13 +30,29 @@ Facebook requires a minimum number of articles in your feed before they will rev
26
 
27
  ## Frequently Asked Questions
28
 
29
- **How do I customize the output for my site?**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
- There are a number of filters available in the plugin for modifying the output.
32
 
33
  **How do I post articles to Instant Articles after plugin is installed?**
34
 
35
- You can re-publish existing articles (simply edit + save) or post new articles in order to submit them to Instant Articles. After you have 50 articles added, you will be able to submit them for review.
36
 
37
  **How do I change the feed slug/URL if I'm using the RSS integration?**
38
 
8
 
9
  With the plugin active, a new menu will be available for you to connect to your Facebook Page and start publishing your Instant Articles. You'll also see the status of each Instant Articles submission on the edit page of your posts.
10
 
11
+ A best effort is made to generate valid Instant Article markup from your posts' content/metadata and publish it to Facebook. The plugin knows how to transform your posts' markup from a set of rules which forms a mapping between elements in you *source markup* and the valid *Instant Article components*. We refer to this “glue” between the two as the ***Transformer Rules***.
12
+
13
+ Built-in to the plugin are many [pre-defined transformer rules](https://github.com/Automattic/facebook-instant-articles-wp/blob/master/rules-configuration.json) which aims to cover standard WordPress installations. If your WordPress content contains elements which are not covered by the built-in ruleset, you can define your own additional rules to extend or override the defaults in the Settings of this plugin, under: **Plugin Configuration** > **Publishing Settings** > **Custom transformer rules**.
14
+
15
  ## Feed submission to Facebook
16
 
17
  Facebook has a review process where they verify that all Instant Articles are properly formatted, have content consistency with their mobile web counterparts, and adhere to their community standards and content policies. You will not be able to publish Instant Articles in Facebook until your feed has been approved.
30
 
31
  ## Frequently Asked Questions
32
 
33
+ **Why is there content from my post missing in the generated Instant Article?**
34
+
35
+ More likely than not, this is because there is markup in the body of your post that is not mapped to a recognized Instant Article component. On the “Edit Post” screen for your post, look for additional information about the *transformed* output shown within the **Facebook Instant Articles** module located at the bottom of the screen.
36
+
37
+ **In the Instant Articles module for my post, what does the “This post was transformed into an Instant Article with some warnings” message mean?**
38
+
39
+ When transforming your post into an Instant Article, this plugin will show warnings when it encounters content which might not be valid when published to Facebook. When you see this message, it is recommended to resolve each warning individually.
40
+
41
+ **What does the “No rules defined for ____ in the context of ____” warning mean?**
42
+
43
+ This plugin transforms your post into an Instant Article by matching markup in your content to one of the [components available](https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#transformer-classes) in Instant Articles markup. Although the plugin contains many [built-in rules](https://github.com/Automattic/facebook-instant-articles-wp/blob/master/rules-configuration.json) to handle common cases, there may be markup in your post which is not recognized by these existing rules. In this case, you may be required to define some of your own rules. See below for more details about where and how.
44
+
45
+ **How do I define my own transformer rules so that content from my site is rendered appropriately in an Instant Article?**
46
+
47
+ Your custom rules can be defined in the Settings of this plugin, under: **Plugin Configuration** > **Publishing Settings** > **Custom transformer rules**. More detailed instructions about all the options available is documented in the [Custom Transformer Rules](https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#custom-transformer-rules) section of the Facebook Instant Articles SDK.
48
+
49
+ **I know of a custom transformer rule which is pretty common in the community. How can it be included by default in the plugin?**
50
 
51
+ You can propose popular transformer rules to be included in the plugin by [suggesting it on GitHub](https://github.com/Automattic/facebook-instant-articles-wp/issues/new).
52
 
53
  **How do I post articles to Instant Articles after plugin is installed?**
54
 
55
+ You can re-publish existing articles (simply edit + save) or post new articles in order to submit them to Instant Articles. After you have 10 articles added, you will be able to submit them for review.
56
 
57
  **How do I change the feed slug/URL if I'm using the RSS integration?**
58
 
facebook-instant-articles.php CHANGED
@@ -4,7 +4,7 @@
4
  * Description: Add support for Instant Articles for Facebook to your WordPress site.
5
  * Author: Automattic, Dekode, Facebook
6
  * Author URI: https://vip.wordpress.com/plugins/instant-articles/
7
- * Version: 2.9
8
  * Text Domain: instant-articles
9
  * License: GPLv2
10
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -67,7 +67,7 @@ if ( version_compare( PHP_VERSION, '5.4', '<' ) ) {
67
 
68
  defined( 'ABSPATH' ) || die( 'Shame on you' );
69
 
70
- define( 'IA_PLUGIN_VERSION', '2.9' );
71
  define( 'IA_PLUGIN_PATH_FULL', __FILE__ );
72
  define( 'IA_PLUGIN_PATH', plugin_basename( __FILE__ ) );
73
  define( 'IA_PLUGIN_FILE_BASENAME', pathinfo( __FILE__, PATHINFO_FILENAME ) );
4
  * Description: Add support for Instant Articles for Facebook to your WordPress site.
5
  * Author: Automattic, Dekode, Facebook
6
  * Author URI: https://vip.wordpress.com/plugins/instant-articles/
7
+ * Version: 2.10
8
  * Text Domain: instant-articles
9
  * License: GPLv2
10
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
67
 
68
  defined( 'ABSPATH' ) || die( 'Shame on you' );
69
 
70
+ define( 'IA_PLUGIN_VERSION', '2.10' );
71
  define( 'IA_PLUGIN_PATH_FULL', __FILE__ );
72
  define( 'IA_PLUGIN_PATH', plugin_basename( __FILE__ ) );
73
  define( 'IA_PLUGIN_FILE_BASENAME', pathinfo( __FILE__, PATHINFO_FILENAME ) );
meta-box/meta-box-template.php CHANGED
@@ -139,9 +139,9 @@ use Facebook\InstantArticles\Client\ServerMessage;
139
  <p>
140
  <span class="dashicons dashicons-warning"></span>
141
  This post was transformed into an Instant Article with some warnings
142
- <a href="#" class="instant-articles-toggle-debug">
143
- (toggle debug information)
144
- </a>
145
  </p>
146
  <ul class="instant-articles-messages">
147
  <?php foreach ( $adapter->transformer->getWarnings() as $warning ) : ?>
@@ -166,9 +166,7 @@ use Facebook\InstantArticles\Client\ServerMessage;
166
  <p>
167
  <span class="dashicons dashicons-yes"></span>
168
  This post was transformed into an Instant Article with no warnings
169
- <a href="#" class="instant-articles-toggle-debug">
170
- (toggle debug information)
171
- </a>
172
  </p>
173
  <?php endif; ?>
174
 
139
  <p>
140
  <span class="dashicons dashicons-warning"></span>
141
  This post was transformed into an Instant Article with some warnings
142
+ [<a href="https://wordpress.org/plugins/fb-instant-articles/faq/" target="_blank">Learn more</a> |
143
+ <a href="<?php echo esc_url( $settings_page_href ); ?>">Transformer rule configuration</a> |
144
+ <a href="#" class="instant-articles-toggle-debug">Toggle debug information</a>]
145
  </p>
146
  <ul class="instant-articles-messages">
147
  <?php foreach ( $adapter->transformer->getWarnings() as $warning ) : ?>
166
  <p>
167
  <span class="dashicons dashicons-yes"></span>
168
  This post was transformed into an Instant Article with no warnings
169
+ [<a href="#" class="instant-articles-toggle-debug">Toggle debug information]</a>
 
 
170
  </p>
171
  <?php endif; ?>
172
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: trrine, olethomas, bjornjohansen, dekode, automattic, facebook
3
  Tags: instant articles, facebook, mobile
4
  Requires at least: 4.3
5
  Tested up to: 4.5
6
- Stable tag: 2.9
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -15,6 +15,10 @@ This plugin adds support for Instant Articles for Facebook, which is a new way f
15
 
16
  With the plugin active, a new menu will be available for you to connect to your Facebook Page and start publishing your Instant Articles. You'll also see the status of each Instant Articles submission on the edit page of your posts.
17
 
 
 
 
 
18
  = Feed submission to Facebook =
19
 
20
  Facebook has a review process where they verify that all Instant Articles are properly formatted, have content consistency with their mobile web counterparts, and adhere to their community standards and content policies. You will not be able to publish Instant Articles in Facebook until your feed has been approved.
@@ -42,9 +46,29 @@ Facebook requires a minimum number of articles in your feed before they will rev
42
 
43
  == Frequently Asked Questions ==
44
 
45
- = How do I customize the output for my site? =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
- There are a number of filters available in the plugin for modifying the output.
48
 
49
  = How do I change the feed slug/URL if I'm using the RSS integration? =
50
 
@@ -55,15 +79,19 @@ By default it is set to `instant-articles` which usually will give you a feed UR
55
 
56
  Usually simply visiting the permalinks settings page in the WordPress dashboard will do the trick (/wp-admin/options-permalink.php)
57
 
 
 
 
 
58
  == Changelog ==
59
 
60
- = 0.1 =
61
- * Initial version
 
62
 
63
  = 2.0 =
64
  * Using Facebook Instant Articles SDK for PHP
65
  * Added API integration
66
 
67
- = 2.1 =
68
- * Fixes compatibility with PHP 5.4+
69
- * Bug fixes
3
  Tags: instant articles, facebook, mobile
4
  Requires at least: 4.3
5
  Tested up to: 4.5
6
+ Stable tag: 2.10
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
15
 
16
  With the plugin active, a new menu will be available for you to connect to your Facebook Page and start publishing your Instant Articles. You'll also see the status of each Instant Articles submission on the edit page of your posts.
17
 
18
+ A best effort is made to generate valid Instant Article markup from your posts' content/metadata and publish it to Facebook. The plugin knows how to transform your posts' markup from a set of rules which forms a mapping between elements in you *source markup* and the valid *Instant Article components*. We refer to this “glue” between the two as the ***Transformer Rules***.
19
+
20
+ Built-in to the plugin are many [pre-defined transformer rules](https://github.com/Automattic/facebook-instant-articles-wp/blob/master/rules-configuration.json) which aims to cover standard WordPress installations. If your WordPress content contains elements which are not covered by the built-in ruleset, you can define your own additional rules to extend or override the defaults in the Settings of this plugin, under: **Plugin Configuration** > **Publishing Settings** > **Custom transformer rules**.
21
+
22
  = Feed submission to Facebook =
23
 
24
  Facebook has a review process where they verify that all Instant Articles are properly formatted, have content consistency with their mobile web counterparts, and adhere to their community standards and content policies. You will not be able to publish Instant Articles in Facebook until your feed has been approved.
46
 
47
  == Frequently Asked Questions ==
48
 
49
+ = Why is there content from my post missing in the generated Instant Article? =
50
+
51
+ More likely than not, this is because there is markup in the body of your post that is not mapped to a recognized Instant Article component. On the “Edit Post” screen for your post, look for additional information about the *transformed* output shown within the **Facebook Instant Articles** module located at the bottom of the screen.
52
+
53
+ = In the Instant Articles module for my post, what does the “This post was transformed into an Instant Article with some warnings” message mean? =
54
+
55
+ When transforming your post into an Instant Article, this plugin will show warnings when it encounters content which might not be valid when published to Facebook. When you see this message, it is recommended to resolve each warning individually.
56
+
57
+ = What does the “No rules defined for ____ in the context of ____” warning mean? =
58
+
59
+ This plugin transforms your post into an Instant Article by matching markup in your content to one of the [components available](https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#transformer-classes) in Instant Articles markup. Although the plugin contains many [built-in rules](https://github.com/Automattic/facebook-instant-articles-wp/blob/master/rules-configuration.json) to handle common cases, there may be markup in your post which is not recognized by these existing rules. In this case, you may be required to define some of your own rules. See below for more details about where and how.
60
+
61
+ = How do I define my own transformer rules so that content from my site is rendered appropriately in an Instant Article? =
62
+
63
+ Your custom rules can be defined in the Settings of this plugin, under: **Plugin Configuration** > **Publishing Settings** > **Custom transformer rules**. More detailed instructions about all the options available is documented in the [Custom Transformer Rules](https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#custom-transformer-rules) section of the Facebook Instant Articles SDK.
64
+
65
+ = I know of a custom transformer rule which is pretty common in the community. How can it be included by default in the plugin? =
66
+
67
+ You can propose popular transformer rules to be included in the plugin by [suggesting it on GitHub](https://github.com/Automattic/facebook-instant-articles-wp/issues/new).
68
+
69
+ = How do I post articles to Instant Articles after plugin is installed? =
70
 
71
+ You can re-publish existing articles (simply edit + save) or post new articles in order to submit them to Instant Articles. After you have 10 articles added, you will be able to submit them for review.
72
 
73
  = How do I change the feed slug/URL if I'm using the RSS integration? =
74
 
79
 
80
  Usually simply visiting the permalinks settings page in the WordPress dashboard will do the trick (/wp-admin/options-permalink.php)
81
 
82
+ == Screenshots ==
83
+
84
+ 1. Customized transformer rules enabled on the main Settings page. The particular configuration shown here would cause `<u>` and `<bold>` tags in the source markup to be rendered in *italics* and **bold**, respectively, in the generated Instant Article.
85
+
86
  == Changelog ==
87
 
88
+ = 2.1 =
89
+ * Fixes compatibility with PHP 5.4+
90
+ * Bug fixes
91
 
92
  = 2.0 =
93
  * Using Facebook Instant Articles SDK for PHP
94
  * Added API integration
95
 
96
+ = 0.1 =
97
+ * Initial version
 
settings/class-instant-articles-option-analytics.php CHANGED
@@ -18,7 +18,7 @@ class Instant_Articles_Option_Analytics extends Instant_Articles_Option {
18
 
19
  public static $sections = array(
20
  'title' => 'Analytics',
21
- 'description' => '<p>Enable 3rd-party analytics to be used with Instant Articles.</p><p>If you already use a Wordpress plugin to manage analytics, you can enable it below. You can also embed code to insert your own trackers and analytics. <a href="https://developers.facebook.com/docs/instant-articles/ads-analytics#analytics" target="_blank">Learn more about Analytics in Instant Articles</a>.</p>',
22
  );
23
 
24
  public static $fields = array(
18
 
19
  public static $sections = array(
20
  'title' => 'Analytics',
21
+ 'description' => '<p>Enable 3rd-party analytics to be used with Instant Articles.</p><p>If you already use a WordPress plugin to manage analytics, you can enable it below. You can also embed code to insert your own trackers and analytics. <a href="https://developers.facebook.com/docs/instant-articles/ads-analytics#analytics" target="_blank">Learn more about Analytics in Instant Articles</a>.</p>',
22
  );
23
 
24
  public static $fields = array(
settings/class-instant-articles-option-publishing.php CHANGED
@@ -24,7 +24,7 @@ class Instant_Articles_Option_Publishing extends Instant_Articles_Option {
24
 
25
  'dev_mode' => array(
26
  'label' => 'Development Mode',
27
- 'description' => 'When publishing in development, none of your articles will be made live, and they will be saved as drafts you can edit in the Instant Articles library on your Facebook Page. Whether in development mode or not, articles will not be published live until you have submitted a sample batch to Facebook and passed a one-time review.',
28
  'render' => 'checkbox',
29
  'default' => false,
30
  'checkbox_label' => 'Enable development mode',
@@ -35,7 +35,7 @@ class Instant_Articles_Option_Publishing extends Instant_Articles_Option {
35
  'render' => 'checkbox',
36
  'default' => '',
37
  'checkbox_label' => 'Enable custom transformer rules',
38
- 'description' => 'You can provide a JSON with a list of additional <a href="https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#transformer" target="_blanl">Transformer Rules</a> to customize the output of your Instant Articles.',
39
  'default' => '',
40
  ),
41
 
@@ -43,7 +43,7 @@ class Instant_Articles_Option_Publishing extends Instant_Articles_Option {
43
  'label' => '',
44
  'render' => 'textarea',
45
  'placeholder' => '{ "rules": [{ "class": "BoldRule", "selector": "span.bold" }, ... ] }',
46
- 'description' => 'Refer to the <a href="https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/tests/Facebook/InstantArticles/Transformer/instant-article-example-rules.json" target="_blank">example JSON</a> on the <a href="https://github.com/facebook/facebook-instant-articles-sdk-php" target="_blank">Facebook Instant Articles PHP SDK</a> for sample configurations for all built-in rules.',
47
  'default' => ''
48
  ),
49
 
24
 
25
  'dev_mode' => array(
26
  'label' => 'Development Mode',
27
+ 'description' => 'Articles published while in Development Mode are saved as "drafts" within Facebook and will not be made live. Note: Since articles in "draft" are not reviewed, Development Mode should be disabled when publishing articles to Facebook which you intend to use in your <a href="https://developers.facebook.com/docs/instant-articles/publishing#review" target="_blank">one-time review</a>.',
28
  'render' => 'checkbox',
29
  'default' => false,
30
  'checkbox_label' => 'Enable development mode',
35
  'render' => 'checkbox',
36
  'default' => '',
37
  'checkbox_label' => 'Enable custom transformer rules',
38
+ 'description' => 'Define your own rules to customize the transformation of your content into Instant Articles',
39
  'default' => '',
40
  ),
41
 
43
  'label' => '',
44
  'render' => 'textarea',
45
  'placeholder' => '{ "rules": [{ "class": "BoldRule", "selector": "span.bold" }, ... ] }',
46
+ 'description' => 'Read more about <a href="https://github.com/facebook/facebook-instant-articles-sdk-php/blob/master/docs/QuickStart.md#custom-transformer-rules" target="_blank">defining your own custom rules</a> to extend/override the <a href="https://github.com/Automattic/facebook-instant-articles-wp/blob/master/rules-configuration.json" target="_blank">built-in ruleset</a>. If you\'ve defined a common rule which you think this plugin should include by default, <a href="https://github.com/Automattic/facebook-instant-articles-wp/issues/new" target="_blank">tell us about it</a>!',
47
  'default' => ''
48
  ),
49
 
settings/template-settings-info.php CHANGED
@@ -8,7 +8,7 @@
8
  */
9
  ?>
10
  <p>
11
- Once you've activated this Wordpress plugin, set up your Instant Articles and submit them to Facebook for a one-time review. The review is required before you can begin publishing. Follow these steps to get started:
12
  </p>
13
  <ol>
14
  <li><a href="https://www.facebook.com/instant_articles/signup" target="_blank">Sign up</a> for Instant Articles, if you haven't already, and come back to activate the plugin using the page you enabled.
8
  */
9
  ?>
10
  <p>
11
+ Once you've activated this WordPress plugin, set up your Instant Articles and submit them to Facebook for a one-time review. The review is required before you can begin publishing. Follow these steps to get started:
12
  </p>
13
  <ol>
14
  <li><a href="https://www.facebook.com/instant_articles/signup" target="_blank">Sign up</a> for Instant Articles, if you haven't already, and come back to activate the plugin using the page you enabled.
vendor/composer/autoload_classmap.php CHANGED
@@ -6,6 +6,177 @@ $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  'Logger' => $vendorDir . '/apache/log4php/src/main/php/Logger.php',
10
  'LoggerAppender' => $vendorDir . '/apache/log4php/src/main/php/LoggerAppender.php',
11
  'LoggerAppenderConsole' => $vendorDir . '/apache/log4php/src/main/php/appenders/LoggerAppenderConsole.php',
@@ -85,4 +256,53 @@ return array(
85
  'LoggerRoot' => $vendorDir . '/apache/log4php/src/main/php/LoggerRoot.php',
86
  'LoggerThrowableInformation' => $vendorDir . '/apache/log4php/src/main/php/LoggerThrowableInformation.php',
87
  'LoggerUtils' => $vendorDir . '/apache/log4php/src/main/php/helpers/LoggerUtils.php',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  );
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
+ 'Facebook\\Authentication\\AccessToken' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Authentication/AccessToken.php',
10
+ 'Facebook\\Authentication\\AccessTokenMetadata' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Authentication/AccessTokenMetadata.php',
11
+ 'Facebook\\Authentication\\OAuth2Client' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Authentication/OAuth2Client.php',
12
+ 'Facebook\\Exceptions\\FacebookAuthenticationException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookAuthenticationException.php',
13
+ 'Facebook\\Exceptions\\FacebookAuthorizationException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookAuthorizationException.php',
14
+ 'Facebook\\Exceptions\\FacebookClientException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookClientException.php',
15
+ 'Facebook\\Exceptions\\FacebookOtherException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookOtherException.php',
16
+ 'Facebook\\Exceptions\\FacebookResponseException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookResponseException.php',
17
+ 'Facebook\\Exceptions\\FacebookResumableUploadException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookResumableUploadException.php',
18
+ 'Facebook\\Exceptions\\FacebookSDKException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookSDKException.php',
19
+ 'Facebook\\Exceptions\\FacebookServerException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookServerException.php',
20
+ 'Facebook\\Exceptions\\FacebookThrottleException' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Exceptions/FacebookThrottleException.php',
21
+ 'Facebook\\Facebook' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Facebook.php',
22
+ 'Facebook\\FacebookApp' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookApp.php',
23
+ 'Facebook\\FacebookBatchRequest' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookBatchRequest.php',
24
+ 'Facebook\\FacebookBatchResponse' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookBatchResponse.php',
25
+ 'Facebook\\FacebookClient' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookClient.php',
26
+ 'Facebook\\FacebookRequest' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookRequest.php',
27
+ 'Facebook\\FacebookResponse' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FacebookResponse.php',
28
+ 'Facebook\\FileUpload\\FacebookFile' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FileUpload/FacebookFile.php',
29
+ 'Facebook\\FileUpload\\FacebookResumableUploader' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FileUpload/FacebookResumableUploader.php',
30
+ 'Facebook\\FileUpload\\FacebookTransferChunk' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FileUpload/FacebookTransferChunk.php',
31
+ 'Facebook\\FileUpload\\FacebookVideo' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FileUpload/FacebookVideo.php',
32
+ 'Facebook\\FileUpload\\Mimetypes' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/FileUpload/Mimetypes.php',
33
+ 'Facebook\\GraphNodes\\Collection' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/Collection.php',
34
+ 'Facebook\\GraphNodes\\GraphAchievement' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphAchievement.php',
35
+ 'Facebook\\GraphNodes\\GraphAlbum' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphAlbum.php',
36
+ 'Facebook\\GraphNodes\\GraphApplication' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphApplication.php',
37
+ 'Facebook\\GraphNodes\\GraphCoverPhoto' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphCoverPhoto.php',
38
+ 'Facebook\\GraphNodes\\GraphEdge' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphEdge.php',
39
+ 'Facebook\\GraphNodes\\GraphEvent' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphEvent.php',
40
+ 'Facebook\\GraphNodes\\GraphGroup' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphGroup.php',
41
+ 'Facebook\\GraphNodes\\GraphList' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphList.php',
42
+ 'Facebook\\GraphNodes\\GraphLocation' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphLocation.php',
43
+ 'Facebook\\GraphNodes\\GraphNode' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphNode.php',
44
+ 'Facebook\\GraphNodes\\GraphNodeFactory' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphNodeFactory.php',
45
+ 'Facebook\\GraphNodes\\GraphObject' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphObject.php',
46
+ 'Facebook\\GraphNodes\\GraphObjectFactory' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphObjectFactory.php',
47
+ 'Facebook\\GraphNodes\\GraphPage' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphPage.php',
48
+ 'Facebook\\GraphNodes\\GraphPicture' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphPicture.php',
49
+ 'Facebook\\GraphNodes\\GraphSessionInfo' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphSessionInfo.php',
50
+ 'Facebook\\GraphNodes\\GraphUser' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/GraphNodes/GraphUser.php',
51
+ 'Facebook\\Helpers\\FacebookCanvasHelper' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Helpers/FacebookCanvasHelper.php',
52
+ 'Facebook\\Helpers\\FacebookJavaScriptHelper' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Helpers/FacebookJavaScriptHelper.php',
53
+ 'Facebook\\Helpers\\FacebookPageTabHelper' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Helpers/FacebookPageTabHelper.php',
54
+ 'Facebook\\Helpers\\FacebookRedirectLoginHelper' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Helpers/FacebookRedirectLoginHelper.php',
55
+ 'Facebook\\Helpers\\FacebookSignedRequestFromInputHelper' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Helpers/FacebookSignedRequestFromInputHelper.php',
56
+ 'Facebook\\HttpClients\\FacebookCurl' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookCurl.php',
57
+ 'Facebook\\HttpClients\\FacebookCurlHttpClient' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookCurlHttpClient.php',
58
+ 'Facebook\\HttpClients\\FacebookGuzzleHttpClient' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookGuzzleHttpClient.php',
59
+ 'Facebook\\HttpClients\\FacebookHttpClientInterface' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookHttpClientInterface.php',
60
+ 'Facebook\\HttpClients\\FacebookStream' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookStream.php',
61
+ 'Facebook\\HttpClients\\FacebookStreamHttpClient' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/FacebookStreamHttpClient.php',
62
+ 'Facebook\\HttpClients\\HttpClientsFactory' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/HttpClients/HttpClientsFactory.php',
63
+ 'Facebook\\Http\\GraphRawResponse' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Http/GraphRawResponse.php',
64
+ 'Facebook\\Http\\RequestBodyInterface' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Http/RequestBodyInterface.php',
65
+ 'Facebook\\Http\\RequestBodyMultipart' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Http/RequestBodyMultipart.php',
66
+ 'Facebook\\Http\\RequestBodyUrlEncoded' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Http/RequestBodyUrlEncoded.php',
67
+ 'Facebook\\InstantArticles\\Client\\Client' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Client/Client.php',
68
+ 'Facebook\\InstantArticles\\Client\\ClientException' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Client/ClientException.php',
69
+ 'Facebook\\InstantArticles\\Client\\Helper' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Client/Helper.php',
70
+ 'Facebook\\InstantArticles\\Client\\InstantArticleStatus' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Client/InstantArticleStatus.php',
71
+ 'Facebook\\InstantArticles\\Client\\ServerMessage' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Client/ServerMessage.php',
72
+ 'Facebook\\InstantArticles\\Elements\\Ad' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Ad.php',
73
+ 'Facebook\\InstantArticles\\Elements\\Analytics' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Analytics.php',
74
+ 'Facebook\\InstantArticles\\Elements\\Anchor' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Anchor.php',
75
+ 'Facebook\\InstantArticles\\Elements\\AnimatedGIF' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/AnimatedGIF.php',
76
+ 'Facebook\\InstantArticles\\Elements\\Audible' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Audible.php',
77
+ 'Facebook\\InstantArticles\\Elements\\Audio' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Audio.php',
78
+ 'Facebook\\InstantArticles\\Elements\\Author' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Author.php',
79
+ 'Facebook\\InstantArticles\\Elements\\Blockquote' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Blockquote.php',
80
+ 'Facebook\\InstantArticles\\Elements\\Bold' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Bold.php',
81
+ 'Facebook\\InstantArticles\\Elements\\Caption' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Caption.php',
82
+ 'Facebook\\InstantArticles\\Elements\\Cite' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Cite.php',
83
+ 'Facebook\\InstantArticles\\Elements\\Div' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Div.php',
84
+ 'Facebook\\InstantArticles\\Elements\\Element' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Element.php',
85
+ 'Facebook\\InstantArticles\\Elements\\Footer' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Footer.php',
86
+ 'Facebook\\InstantArticles\\Elements\\FormattedText' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/FormattedText.php',
87
+ 'Facebook\\InstantArticles\\Elements\\GeoTag' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/GeoTag.php',
88
+ 'Facebook\\InstantArticles\\Elements\\H1' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/H1.php',
89
+ 'Facebook\\InstantArticles\\Elements\\H2' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/H2.php',
90
+ 'Facebook\\InstantArticles\\Elements\\Header' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Header.php',
91
+ 'Facebook\\InstantArticles\\Elements\\Image' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Image.php',
92
+ 'Facebook\\InstantArticles\\Elements\\InstantArticle' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/InstantArticle.php',
93
+ 'Facebook\\InstantArticles\\Elements\\Interactive' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Interactive.php',
94
+ 'Facebook\\InstantArticles\\Elements\\Italic' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Italic.php',
95
+ 'Facebook\\InstantArticles\\Elements\\LineBreak' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/LineBreak.php',
96
+ 'Facebook\\InstantArticles\\Elements\\ListElement' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/ListElement.php',
97
+ 'Facebook\\InstantArticles\\Elements\\ListItem' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/ListItem.php',
98
+ 'Facebook\\InstantArticles\\Elements\\Map' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Map.php',
99
+ 'Facebook\\InstantArticles\\Elements\\Paragraph' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Paragraph.php',
100
+ 'Facebook\\InstantArticles\\Elements\\Pullquote' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Pullquote.php',
101
+ 'Facebook\\InstantArticles\\Elements\\RelatedArticles' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/RelatedArticles.php',
102
+ 'Facebook\\InstantArticles\\Elements\\RelatedItem' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/RelatedItem.php',
103
+ 'Facebook\\InstantArticles\\Elements\\Slideshow' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Slideshow.php',
104
+ 'Facebook\\InstantArticles\\Elements\\SocialEmbed' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/SocialEmbed.php',
105
+ 'Facebook\\InstantArticles\\Elements\\Span' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Span.php',
106
+ 'Facebook\\InstantArticles\\Elements\\TextContainer' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/TextContainer.php',
107
+ 'Facebook\\InstantArticles\\Elements\\Time' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Time.php',
108
+ 'Facebook\\InstantArticles\\Elements\\Video' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Elements/Video.php',
109
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\AbstractGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/AbstractGetter.php',
110
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\ChildrenGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/ChildrenGetter.php',
111
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\ElementGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/ElementGetter.php',
112
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\ExistsGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/ExistsGetter.php',
113
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\GetterFactory' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/GetterFactory.php',
114
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\IntegerGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/IntegerGetter.php',
115
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\NextSiblingGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/NextSiblingGetter.php',
116
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\StringGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/StringGetter.php',
117
+ 'Facebook\\InstantArticles\\Transformer\\Getters\\XpathGetter' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Getters/XpathGetter.php',
118
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\AdRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/AdRule.php',
119
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\AnalyticsRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/AnalyticsRule.php',
120
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\AnchorRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/AnchorRule.php',
121
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\AudioRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/AudioRule.php',
122
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\AuthorRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/AuthorRule.php',
123
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\BlockquoteRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/BlockquoteRule.php',
124
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\BoldRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/BoldRule.php',
125
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\CaptionCreditRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/CaptionCreditRule.php',
126
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\CaptionRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/CaptionRule.php',
127
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ConfigurationSelectorRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ConfigurationSelectorRule.php',
128
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\FooterRelatedArticlesRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/FooterRelatedArticlesRule.php',
129
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\FooterRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/FooterRule.php',
130
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\GeoTagRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/GeoTagRule.php',
131
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\H1Rule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/H1Rule.php',
132
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\H2Rule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/H2Rule.php',
133
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderAdRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderAdRule.php',
134
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderImageRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderImageRule.php',
135
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderKickerRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderKickerRule.php',
136
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderRule.php',
137
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderSubTitleRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderSubTitleRule.php',
138
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\HeaderTitleRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/HeaderTitleRule.php',
139
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\IgnoreRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/IgnoreRule.php',
140
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ImageRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ImageRule.php',
141
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\InstantArticleRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/InstantArticleRule.php',
142
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\InteractiveRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/InteractiveRule.php',
143
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ItalicRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ItalicRule.php',
144
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\LineBreakRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/LineBreakRule.php',
145
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ListElementRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ListElementRule.php',
146
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ListItemRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ListItemRule.php',
147
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\MapRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/MapRule.php',
148
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ParagraphFooterRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ParagraphFooterRule.php',
149
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\ParagraphRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/ParagraphRule.php',
150
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\PassThroughRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/PassThroughRule.php',
151
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\PullquoteCiteRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/PullquoteCiteRule.php',
152
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\PullquoteRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/PullquoteRule.php',
153
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\RelatedArticlesRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/RelatedArticlesRule.php',
154
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\RelatedItemRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/RelatedItemRule.php',
155
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\Rule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/Rule.php',
156
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\SlideshowImageRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/SlideshowImageRule.php',
157
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\SlideshowRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/SlideshowRule.php',
158
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\SocialEmbedRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/SocialEmbedRule.php',
159
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\TextNodeRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/TextNodeRule.php',
160
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\TimeRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/TimeRule.php',
161
+ 'Facebook\\InstantArticles\\Transformer\\Rules\\VideoRule' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Rules/VideoRule.php',
162
+ 'Facebook\\InstantArticles\\Transformer\\Transformer' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Transformer.php',
163
+ 'Facebook\\InstantArticles\\Transformer\\Warnings\\InvalidSelector' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Warnings/InvalidSelector.php',
164
+ 'Facebook\\InstantArticles\\Transformer\\Warnings\\UnrecognizedElement' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Transformer/Warnings/UnrecognizedElement.php',
165
+ 'Facebook\\InstantArticles\\Validators\\Type' => $vendorDir . '/facebook/facebook-instant-articles-sdk-php/src/Facebook/InstantArticles/Validators/Type.php',
166
+ 'Facebook\\PersistentData\\FacebookMemoryPersistentDataHandler' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PersistentData/FacebookMemoryPersistentDataHandler.php',
167
+ 'Facebook\\PersistentData\\FacebookSessionPersistentDataHandler' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PersistentData/FacebookSessionPersistentDataHandler.php',
168
+ 'Facebook\\PersistentData\\PersistentDataFactory' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PersistentData/PersistentDataFactory.php',
169
+ 'Facebook\\PersistentData\\PersistentDataInterface' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PersistentData/PersistentDataInterface.php',
170
+ 'Facebook\\PseudoRandomString\\McryptPseudoRandomStringGenerator' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/McryptPseudoRandomStringGenerator.php',
171
+ 'Facebook\\PseudoRandomString\\OpenSslPseudoRandomStringGenerator' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/OpenSslPseudoRandomStringGenerator.php',
172
+ 'Facebook\\PseudoRandomString\\PseudoRandomStringGeneratorFactory' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorFactory.php',
173
+ 'Facebook\\PseudoRandomString\\PseudoRandomStringGeneratorInterface' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorInterface.php',
174
+ 'Facebook\\PseudoRandomString\\PseudoRandomStringGeneratorTrait' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/PseudoRandomStringGeneratorTrait.php',
175
+ 'Facebook\\PseudoRandomString\\UrandomPseudoRandomStringGenerator' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/PseudoRandomString/UrandomPseudoRandomStringGenerator.php',
176
+ 'Facebook\\SignedRequest' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/SignedRequest.php',
177
+ 'Facebook\\Url\\FacebookUrlDetectionHandler' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Url/FacebookUrlDetectionHandler.php',
178
+ 'Facebook\\Url\\FacebookUrlManipulator' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Url/FacebookUrlManipulator.php',
179
+ 'Facebook\\Url\\UrlDetectionInterface' => $vendorDir . '/facebook/php-sdk-v4/src/Facebook/Url/UrlDetectionInterface.php',
180
  'Logger' => $vendorDir . '/apache/log4php/src/main/php/Logger.php',
181
  'LoggerAppender' => $vendorDir . '/apache/log4php/src/main/php/LoggerAppender.php',
182
  'LoggerAppenderConsole' => $vendorDir . '/apache/log4php/src/main/php/appenders/LoggerAppenderConsole.php',
256
  'LoggerRoot' => $vendorDir . '/apache/log4php/src/main/php/LoggerRoot.php',
257
  'LoggerThrowableInformation' => $vendorDir . '/apache/log4php/src/main/php/LoggerThrowableInformation.php',
258
  'LoggerUtils' => $vendorDir . '/apache/log4php/src/main/php/helpers/LoggerUtils.php',
259
+ 'Symfony\\Component\\CssSelector\\CssSelector' => $vendorDir . '/symfony/css-selector/CssSelector.php',
260
+ 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php',
261
+ 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php',
262
+ 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php',
263
+ 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php',
264
+ 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php',
265
+ 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php',
266
+ 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php',
267
+ 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php',
268
+ 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php',
269
+ 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php',
270
+ 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php',
271
+ 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php',
272
+ 'Symfony\\Component\\CssSelector\\Node\\HashNode' => $vendorDir . '/symfony/css-selector/Node/HashNode.php',
273
+ 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php',
274
+ 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php',
275
+ 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php',
276
+ 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php',
277
+ 'Symfony\\Component\\CssSelector\\Node\\Specificity' => $vendorDir . '/symfony/css-selector/Node/Specificity.php',
278
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php',
279
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php',
280
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php',
281
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php',
282
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php',
283
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php',
284
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php',
285
+ 'Symfony\\Component\\CssSelector\\Parser\\Parser' => $vendorDir . '/symfony/css-selector/Parser/Parser.php',
286
+ 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php',
287
+ 'Symfony\\Component\\CssSelector\\Parser\\Reader' => $vendorDir . '/symfony/css-selector/Parser/Reader.php',
288
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php',
289
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php',
290
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php',
291
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php',
292
+ 'Symfony\\Component\\CssSelector\\Parser\\Token' => $vendorDir . '/symfony/css-selector/Parser/Token.php',
293
+ 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php',
294
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php',
295
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php',
296
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php',
297
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php',
298
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php',
299
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php',
300
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php',
301
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php',
302
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php',
303
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php',
304
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php',
305
+ 'Symfony\\Component\\CssSelector\\XPath\\Translator' => $vendorDir . '/symfony/css-selector/XPath/Translator.php',
306
+ 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php',
307
+ 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php',
308
  );