diff --git a/panopoly_search.features.inc b/panopoly_search.features.inc
index 2cfaf71..1e73e95 100644
--- a/panopoly_search.features.inc
+++ b/panopoly_search.features.inc
@@ -7,16 +7,13 @@
 /**
  * Implements hook_ctools_plugin_api().
  */
-function panopoly_search_ctools_plugin_api() {
-  list($module, $api) = func_get_args();
+function panopoly_search_ctools_plugin_api($module = NULL, $api = NULL) {
   if ($module == "facetapi" && $api == "facetapi_defaults") {
     return array("version" => "1");
   }
-  list($module, $api) = func_get_args();
   if ($module == "page_manager" && $api == "pages_default") {
     return array("version" => "1");
   }
-  list($module, $api) = func_get_args();
   if ($module == "strongarm" && $api == "strongarm") {
     return array("version" => "1");
   }
@@ -25,7 +22,7 @@ function panopoly_search_ctools_plugin_api() {
 /**
  * Implements hook_views_api().
  */
-function panopoly_search_views_api() {
+function panopoly_search_views_api($module = NULL, $api = NULL) {
   return array("api" => "3.0");
 }
 
@@ -44,19 +41,19 @@ function panopoly_search_default_search_api_index() {
       "index_directly" : 1,
       "cron_limit" : "50",
       "fields" : {
-        "nid" : { "type" : "integer" },
-        "type" : { "type" : "string" },
-        "title" : { "type" : "text", "boost" : "8.0" },
-        "url" : { "type" : "uri" },
-        "status" : { "type" : "boolean" },
-        "created" : { "type" : "integer" },
         "author" : { "type" : "integer", "entity_type" : "user" },
+        "body:summary" : { "type" : "text" },
+        "body:value" : { "type" : "text" },
+        "created" : { "type" : "date" },
+        "nid" : { "type" : "integer" },
+        "search_api_access_node" : { "type" : "list\\u003Cstring\\u003E" },
         "search_api_language" : { "type" : "string" },
-        "search_api_viewed" : { "type" : "text" },
         "search_api_url" : { "type" : "uri" },
-        "search_api_access_node" : { "type" : "list\\u003Cstring\\u003E" },
-        "body:value" : { "type" : "text" },
-        "body:summary" : { "type" : "text" }
+        "search_api_viewed" : { "type" : "text" },
+        "status" : { "type" : "boolean" },
+        "title" : { "type" : "text", "boost" : "8.0" },
+        "type" : { "type" : "string" },
+        "url" : { "type" : "uri" }
       },
       "data_alter_callbacks" : {
         "search_api_alter_bundle_filter" : {
@@ -65,10 +62,11 @@ function panopoly_search_default_search_api_index() {
           "settings" : { "default" : "1", "bundles" : [] }
         },
         "search_api_alter_node_access" : { "status" : 1, "weight" : "0", "settings" : [] },
+        "search_api_alter_node_status" : { "status" : 0, "weight" : "0", "settings" : [] },
         "search_api_alter_add_hierarchy" : { "status" : 0, "weight" : "0", "settings" : { "fields" : [] } },
-        "search_api_alter_add_aggregation" : { "status" : 0, "weight" : "0", "settings" : [] },
+        "search_api_alter_add_viewed_entity" : { "status" : 1, "weight" : "0", "settings" : { "mode" : "search_index" } },
         "search_api_alter_add_url" : { "status" : 1, "weight" : "0", "settings" : [] },
-        "search_api_alter_add_viewed_entity" : { "status" : 1, "weight" : "0", "settings" : { "mode" : "search_index" } }
+        "search_api_alter_add_aggregation" : { "status" : 0, "weight" : "0", "settings" : [] }
       },
       "processors" : {
         "search_api_case_ignore" : {
@@ -86,12 +84,13 @@ function panopoly_search_default_search_api_index() {
             "tags" : "h1 = 5\\r\\nh2 = 3\\r\\nh3 = 2\\r\\nstrong = 2\\r\\nb = 2\\r\\nem = 1.5\\r\\nu = 1.5"
           }
         },
+        "search_api_transliteration" : { "status" : 0, "weight" : "15", "settings" : { "fields" : [] } },
         "search_api_tokenizer" : {
           "status" : 1,
           "weight" : "20",
           "settings" : {
             "fields" : { "title" : true },
-            "spaces" : "[^\\\\p{L}\\\\p{N}^\\u0027]",
+            "spaces" : "[^[:alnum:]]",
             "ignorable" : "[-]"
           }
         },
@@ -103,6 +102,18 @@ function panopoly_search_default_search_api_index() {
             "file" : "",
             "stopwords" : "but\\r\\ndid\\r\\nthe this that those\\r\\netc"
           }
+        },
+        "search_api_highlighting" : {
+          "status" : 0,
+          "weight" : "35",
+          "settings" : {
+            "prefix" : "\\u003Cstrong\\u003E",
+            "suffix" : "\\u003C\\/strong\\u003E",
+            "excerpt" : 1,
+            "excerpt_length" : "256",
+            "exclude_fields" : [],
+            "highlight" : "always"
+          }
         }
       }
     },
@@ -119,18 +130,18 @@ function panopoly_search_default_search_api_index() {
       "index_directly" : 1,
       "cron_limit" : "50",
       "fields" : {
-        "nid" : { "type" : "integer" },
-        "type" : { "type" : "string" },
-        "title" : { "type" : "text", "boost" : "8.0" },
-        "url" : { "type" : "uri" },
-        "status" : { "type" : "boolean" },
-        "created" : { "type" : "date" },
         "author" : { "type" : "integer", "entity_type" : "user" },
+        "body:summary" : { "type" : "text" },
+        "body:value" : { "type" : "text" },
+        "created" : { "type" : "date" },
+        "nid" : { "type" : "integer" },
         "search_api_language" : { "type" : "string" },
-        "search_api_viewed" : { "type" : "text" },
         "search_api_url" : { "type" : "uri" },
-        "body:value" : { "type" : "text" },
-        "body:summary" : { "type" : "text" }
+        "search_api_viewed" : { "type" : "text" },
+        "status" : { "type" : "boolean" },
+        "title" : { "type" : "text", "boost" : "8.0" },
+        "type" : { "type" : "string" },
+        "url" : { "type" : "uri" }
       },
       "data_alter_callbacks" : {
         "search_api_alter_bundle_filter" : {
@@ -199,69 +210,79 @@ function panopoly_search_default_search_api_server() {
     "options" : {
       "database" : "default:default",
       "min_chars" : "3",
+      "partial_matches" : 0,
       "indexes" : { "database_node_index" : {
           "nid" : {
-            "table" : "search_api_db_database_node_index_nid",
+            "table" : "search_api_db_database_node_index",
+            "column" : "nid",
             "type" : "integer",
             "boost" : "1.0"
           },
           "type" : {
-            "table" : "search_api_db_database_node_index_type",
+            "table" : "search_api_db_database_node_index",
+            "column" : "type",
             "type" : "string",
             "boost" : "1.0"
           },
-          "title" : {
-            "table" : "search_api_db_database_node_index_title",
-            "type" : "text",
-            "boost" : "8.0"
-          },
           "url" : {
-            "table" : "search_api_db_database_node_index_url",
+            "table" : "search_api_db_database_node_index",
+            "column" : "url",
             "type" : "uri",
             "boost" : "1.0"
           },
           "status" : {
-            "table" : "search_api_db_database_node_index_status",
+            "table" : "search_api_db_database_node_index",
+            "column" : "status",
             "type" : "boolean",
             "boost" : "1.0"
           },
           "created" : {
-            "table" : "search_api_db_database_node_index_created",
-            "type" : "integer",
+            "table" : "search_api_db_database_node_index",
+            "column" : "created",
+            "type" : "date",
             "boost" : "1.0"
           },
           "author" : {
-            "table" : "search_api_db_database_node_index_author",
+            "table" : "search_api_db_database_node_index",
+            "column" : "author",
             "type" : "integer",
             "boost" : "1.0"
           },
           "search_api_language" : {
-            "table" : "search_api_db_database_node_index_search_api_language",
+            "table" : "search_api_db_database_node_index",
+            "column" : "search_api_language",
             "type" : "string",
             "boost" : "1.0"
           },
-          "search_api_viewed" : {
-            "table" : "search_api_db_database_node_index_search_api_viewed",
-            "type" : "text",
-            "boost" : "1.0"
-          },
           "search_api_url" : {
-            "table" : "search_api_db_database_node_index_search_api_url",
+            "table" : "search_api_db_database_node_index",
+            "column" : "search_api_url",
             "type" : "uri",
             "boost" : "1.0"
           },
+          "search_api_viewed" : {
+            "table" : "search_api_db_database_node_index_text",
+            "type" : "text",
+            "boost" : "1.0"
+          },
           "search_api_access_node" : {
             "table" : "search_api_db_database_node_index_search_api_access_node",
+            "column" : "value",
             "type" : "list\\u003Cstring\\u003E",
             "boost" : "1.0"
           },
+          "title" : {
+            "table" : "search_api_db_database_node_index_text",
+            "type" : "text",
+            "boost" : "8.0"
+          },
           "body:value" : {
-            "table" : "search_api_db_database_node_index_body_value",
+            "table" : "search_api_db_database_node_index_text",
             "type" : "text",
             "boost" : "1.0"
           },
           "body:summary" : {
-            "table" : "search_api_db_database_node_index_body_summary",
+            "table" : "search_api_db_database_node_index_text",
             "type" : "text",
             "boost" : "1.0"
           }
diff --git a/panopoly_search.info b/panopoly_search.info
index 820399b..f3df40d 100644
--- a/panopoly_search.info
+++ b/panopoly_search.info
@@ -2,7 +2,6 @@ name = Panopoly Search
 description = Indexes and searches site content, Solr or otherwise.
 core = 7.x
 package = Panopoly
-php = 5.2.4
 project = panopoly_search
 dependencies[] = facetapi
 dependencies[] = page_manager
diff --git a/panopoly_search.make b/panopoly_search.make
index c167a9a..5ab1e6f 100644
--- a/panopoly_search.make
+++ b/panopoly_search.make
@@ -5,16 +5,16 @@ core = 7.x
 
 ; Search API and Facet API Modules
 
-projects[facetapi][version] = 1.3
+projects[facetapi][version] = 1.5
 projects[facetapi][subdir] = contrib
 
-projects[search_api][version] = 1.7
+projects[search_api][version] = 1.13
 projects[search_api][subdir] = contrib
 
-projects[search_api_solr][version] = 1.1
+projects[search_api_solr][version] = 1.6
 projects[search_api_solr][subdir] = contrib
 
-projects[search_api_db][version] = 1.0-rc2
+projects[search_api_db][version] = 1.4
 projects[search_api_db][subdir] = contrib
 
 ; Solr PHP Client Library
