我试图在这条指令后安装clickatell php库:
https://github.com/arcturial/clickatell
但到目前为止我只能安装作曲家。
他们说:这个库使用作曲家,可以使用$check = $ids->moderators()->where('user_id', Auth::id())->first();
$isModerator = $check != NULL ? true : false;
// If $check doesn't return NULL (ie returns a Moderator object) then you are a moderator.
文件中的以下内容获取。
composer.json
所以我必须将它添加到作曲家json文件中?然后在我的PHP脚本中需要json文件?我不知道接下来该做什么。任何帮助都会很棒。
答案 0 :(得分:0)
当您在项目根目录中时,请运行以下命令:
使用以下内容创建composer.json文件:
{
"name": "your/project",
"description": "project description",
"require": {
"arcturial/clickatell": "*"
}
}
php -r“readfile('https://getcomposer.org/installer');” | PHP 强>
这将下载名为composer.phar的文件
php composer.phar install
这将安装您在composer.json文件中指定的依赖项。完成后,您的项目现在将有一个名为“vendor”的文件夹。
在脚本中加入“vendor / autoload.php”文件
require_once __DIR__ . '/vendor/autoload.php';
...
现在您应该能够使用文档中指定的库。