-1

私はContext.ioからこのライブラリを持ってい ます https://github.com/contextio/contextio-php-example

Context.io 2.0 には laravel がありますが、Context.io Lite にはありません。

無料なのでLite版を使っています。

Laravel 4.2 に Context.io Lite ライブラリをインストールしたいと考えています。

Laravel 4.2 アプリケーションに Context.io Lite ライブラリを追加するにはどうすればよいですか?

追加情報:

  • APIを開発しています
  • PHP laravel 4.2 の使用
  • Context.io Lite を統合したい
  • Context.io Lite ライブラリには多くのファイルがありません。わずか 4 つの files.php
4

1 に答える 1

0

I'm a developer on the Context.IO team, though only passingly familiar with Laravel. Laravel uses Composer so it should be simple to add the Lite library. Just add this to your composer.json file, which should be in the root of your Laravel project:

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

Then run composer install from the command line to install the library.

The example project can give you some basics to help you get started. Also, don't hesitate to contact the dev team at support@context.io for additional support if you need it.

于 2015-03-24T15:23:34.157 に答える