独立的Laravel Eloquent,在其他框架中集成


Independent Laravel Eloquent, integration in other framework

我使用的是超轻Slim框架。我想使用Laravel-Eloquent模型绑定,但我从RESTneneneba API获取数据,而不是从数据库获取数据。有可能将Eloquent集成到我的项目中吗?感谢

如果您的项目中有一个composer.json文件,您可以简单地添加它。

"require": {
    "illuminate/database": "^5.2"
}

运行composer更新将获取所需的包。

或者您可以在项目文件夹中的终端中运行composer require illuminate/database

数据库组件包含一个Capsule管理器类,负责创建Laravel容器和加载所需的类。

您只需在上阅读自述即可https://github.com/illuminate/database/blob/master/README.md