Looking to hire Laravel developers? Try LaraJobs

productai-laravel maintained by 96qbhy

Description
码隆科技 ProductAI Laravel SDK
Author
Last update
2018/05/18 06:02 (dev-v2.0-dev)
License
Links
Downloads
38

Comments
comments powered by Disqus

productai-laravel

码隆科技 ProductAI Laravel SDK

安装

  1. 下载
composer require 96qbhy/productai-laravel
  1. 添加服务提供者
'providers' => [
    ...
    Qbhy\ProductAI\ProductAIServiceProvider::class,
]
  1. 发布配置文件
php artisan vendor:publish --provider="Qbhy\ProductAI\ProductAIServiceProvider"

使用

<?php

namespace App\Http\Controllers;

use Qbhy\ProductAI;

class AliPayController extends Controller
{

    public function example(ProductAI $api)
    {
        $api->search(file_get_contents(__DIR__.'/test.png'));
        // $api->addImage(...);
    }

}

https://github.com/96qbhy/productai-laravel
96qbhy@gmail.com