有没有办法在没有 Composer 或 Laravel 的情况下手动安装 Shippo PHP 文件?
我手动上传了文件,但在运行示例时出现错误:
警告:require_once(/var/www/html/shippo/examples../../vendor/autoload.php):无法打开流:没有这样的文件或目录。
我不熟悉 Composer 或 Laravel,也无法让 Composer 工作。
Shippo.php 内部有针对 cURL、JSON 和 mbstring 的测试,所以不用担心。
// Tested on PHP 5.2, 5.3
if (!function_exists('curl_init')) {
throw new Exception('Shippo needs the CURL PHP extension.');
}
if (!function_exists('json_decode')) {
throw new Exception('Shippo needs the JSON PHP extension.');
}
if (!function_exists('mb_detect_encoding')) {
throw new Exception('Shippo needs the Multibyte String PHP extension.');
}