baidubsdk/bce-sdk-php

This package is abandoned and no longer maintained. No replacement package was suggested.

BCE SDK for PHP

dev-master / 0.8.22.x-dev 2022-12-12 16:41 UTC

This package is auto-updated.

Last update: 2022-12-12 16:43:04 UTC


README

Original respository : https://github.com/baidubce/bce-sdk-php

Change logs

  • [2022-05-09] Replaced the Guzzle/guzzle with GuzzleHttp/guzzle to support php 7.x.
  • [2022-05-10] Support external logger. Example for Laravel:
          \BaiduBce\Log\LogFactory::setInstance(new class(99) implements \BaiduBce\Log\LogFactoryInterface {
                public function getLogger($name) {
                    return Log::channel('chain-baidu');
                }
            }                
        );
        \BaiduBce\Log\LogFactory::setLogLevel(\Psr\Log\LogLevel::INFO);