laravel 5 怎么调用第三方包

github上的项目:unirest-php
上用composer添加,但是由于该包不是和laravel5结合使用的,providers和aliases没有,只能调用其中的类。但是不知道怎么调用,老是报找不到文件的错误?
该怎么配置,请大神指导

该包git上的使用方式:
$headers = array("Accept" => "application/json");
$body = array("foo" => "hellow", "bar" => "world");

$response = Unirest\Request::post("http://mockbin.com/request", $headers, $body);

$response->code; // HTTP Status code
$response->headers; // Headers
$response->body; // Parsed body
$response->raw_body; // Unparsed body
不知道怎么引入文件
已邀请:

要回复问题请先登录注册