我有一個項目,我使用作曲家,我通過它導入了許多東西......我需要autoload.php在我的索引(項目的根目錄),並且Slim,Mongo,Twig工作得很好。但是當我打電話給一類尊重/驗證時,它不會工作;如果我只是使用敬/驗證錯誤是:爲什麼我的作曲家的autoload.php不起作用?
Class 'Respect\Validation\Validator' not found in (path of file when i need it).
如果我嘗試也需要這裏的autoload.php的錯誤是:
**Warning**: require_once(vendor/autoload.php): failed to open stream: No such file or directory in (path of file when i need it)
**Fatal error**: require_once(): Failed opening required 'vendor/autoload.php' (include_path='.;C:\xampp\php\PEAR') in (path of file when i need it)
我已經在Composer/bin中通過cmd完成了它...dir = $(d = $(dirname「$ 0」); cd「$ d」$$ pwd)if -v'cygpath'>/dev/null 2>&1;然後dir = $(cygpath -m $ dir); fi dir = $(echo $ dir | sed's// \/g')php「$ {dir} /composer.phar」$ * - –
您是否嘗試過使用相對路徑將文件autoload.php包含在哪裏你需要? –
我試過了,就像我說的那樣,我說autoload.php沒有找到該文件,但是如果我只留下「使用」告訴我,告訴我我找不到Validator類。 –