11/12
2013
In app/config/config.php, (*1)
'always_load' => array('packages' => array( 'chatwork', ...
or in your code, (*2)
Package::load('chatwork');
Copy packages/chatwork/config/chatwork.php to under app/config directory and edit, (*3)
$response = Chatwork::get('/me'); Debug::dump($response);
$response = Chatwork::post('/rooms/{room_id}/messages', array('body' => 'Hello!')); Debug::dump($response);
Copyright 2013, Mamoru Otsuka. Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php, (*4)