简体   繁体   中英

Class 'Pimple\Container' not found

I am trying to install Pimple in my project following https://github.com/silexphp/Pimple readme file.

Error message I receive is:

Fatal error: Class 'Pimple\Container' not found in E:\www\public\index.php on line 9

My composer.json file is:

{
  ...
  "require-dev": {
    "phpunit/phpunit": "5.1.*"
  },
  "require": {
    "pimple/pimple": "~3.0"
  }
}

When I do:

composer update

or

composer install

the message is: Nothing to install or update

In vendor/bin I can see only phpunit files. I can see however pimple in composer.lock

My PHP index.php file:

<?php

    use Pimple\Container;

    $co = new Container();

?>

Could you please help me make it work?

vendor / autoload.php不包括在内,这会导致错误。

尝试删除供应商内容,然后通过作曲家再次安装dev。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM