Home  >  Article  >  Backend Development  >  A brief discussion on the simple installation and use of composer

A brief discussion on the simple installation and use of composer

青灯夜游
青灯夜游forward
2018-10-26 17:47:223019browse

This article brings you a brief discussion of the simple installation and use of composer. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Simple installation of composer under linux

wget https://getcomposer.org/installer  //下载一个脚本文件

php installer  //php执行下这个php脚本

mv composer.phar /usr/bin/composer   //下载的文件转移到执行目录

composer config -g repo.packagist composer https://packagist.laravel-china.org //解决下载慢,不要用https://packagist.phpcomposer.com

composer require overtrue/wechat:~4.0 -vvv   //例子

Use of composer tools

 'wx3cf0f39249eb0exxx',
    'secret'    => 'f1c242f4f28f735d4687abb469072xxx',
    'token'     => 'easywechat',
    'log' => [
        'level' => 'debug',
        'file'  => '/tmp/easywechat.log',
    ],  
    // ...
];

$app = Factory::officialAccount($options);

$server = $app->server;
$user = $app->user;

$server->push(function($message) use ($user) {
    $fromUser = $user->get($message['FromUserName']);

    return "{$fromUser->nickname} 您好!欢迎关注 overtrue!";
});

$server->serve()->send();

The above is the detailed content of A brief discussion on the simple installation and use of composer. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:cnblogs.com. If there is any infringement, please contact admin@php.cn delete