如何添加不适用于 laravel 4.2 的库?

How to add a library that is not for laravel 4.2?

我从 Context.io 那里得到了这个图书馆 https://github.com/contextio/contextio-php-example

Context.io 2.0 有 laravel, Context.io Lite 没有。

我使用精简版是因为它是免费的。

我想在我的 Laravel 4.2 中安装 Context.io Lite 库。

如何在我的 Laravel 4.2 应用程序中添加 Context.io Lite 库?

附加信息:

我是 Context.IO 团队的一名开发人员,虽然对 Laravel 只是略微熟悉。 Laravel 使用 Composer so it should be simple to add the Lite library。只需将其添加到您的 composer.json 文件中,该文件应该位于您的 Laravel 项目的根目录中:

"require": { "contextio/php-contextio-lite": "dev-master" }

然后运行composer install从命令行安装库。

example 项目可以为您提供一些基础知识以帮助您入门。此外,如果您需要,请随时通过 support@context.io 联系开发团队以获得更多支持。