0
使用laravel 5.4我試圖使用soapwrapper(artisaninweb)0.3版本,但總是得到一個錯誤:不能安裝版本0.3 artisaninweb
Class 'Artisaninweb\SoapWrapper\Facades\SoapWrapper' not found
安裝時0.2版一切正常。
怎麼了?
使用laravel 5.4我試圖使用soapwrapper(artisaninweb)0.3版本,但總是得到一個錯誤:不能安裝版本0.3 artisaninweb
Class 'Artisaninweb\SoapWrapper\Facades\SoapWrapper' not found
安裝時0.2版一切正常。
怎麼了?
嘗試在SoapController:
use Artisaninweb\SoapWrapper\SoapWrapper;
或者在你的配置檢查/ app.php的別名,它應該是:
'aliases' => [
...
'SoapWrapper' => Artisaninweb\SoapWrapper\Facades\SoapWrapper::class,
...
],
任何時候你改變你的app.php,你應該運行:composer dump-autoload。 我想這最後一個是你的使用,讓我知道。