Laravel 4套餐

时间:2013-06-16 13:05:55

标签: laravel laravel-4

我遇到了问题。我要做的是创建地理定位的基本包。我正在使用workbench来创建包,只有一个源和一个配置文件。加上我正在使用的API。这是我的GeoLocation类

<?php namespace EvansEric\GeoLocate;

require('ip2locationlite.class.php');


class GeoLocate{

    public function gip()
    {
        echo 'test';
    }

    public function gCountry()
    {
        echo 'test';
    }

}

这是我的配置文件

<?php

return array(

    /**
    *
    * @ Set the API Key obtained from ipinfodb.com
    */

    'key'   =>      '',

    /**
    *
    * @ Set Refresh rate. Set to 0 by default
    */

    'refresh'   =>  0,

    /**
    *
    * @ Set default location
    */

    'default_location'  =>  '216.110.94.228',
);

我在主应用程序的app config中有我的包注册。 EvansEric \大地定位

但我不能在我的申请中使用它。继续说它找不到课。但我正在看课,我知道它就在那里。请帮忙。

0 个答案:

没有答案