Sculpinをアップデートする

どうも手許のSculpinがPHP 5.5で動作しないようなので、GitHubの最新版に更新しました。

$ git fetch upstream
$ git merge upstream/master
$ composer install

しかし、以下のエラーが出てまだ動作しません。

  [Symfony\Component\Config\Definition\Exception\InvalidConfigurationException]
  Posts are now configured in the 'sculpin_content_types' section of sculpin_
  kernel.yml, please see documentation on configurating content types

ということでドキュメントを調べ、設定ファイルを以下のように更新しました。

--- a/app/config/sculpin_kernel.yml
+++ b/app/config/sculpin_kernel.yml
@@ -1,2 +1,3 @@
-sculpin_posts:
-    permalink: blog/:year/:month/:day/:filename/
+sculpin_content_types:
+    posts:
+        permalink: blog/:year/:month/:day/:filename/

Date: 2014/01/27

Tags: sculpin