PHP Fatal error: Class 'MyApp\Chat' not found in /MyApp/chat-server.php

后端 未结 6 886
遥遥无期
遥遥无期 2020-12-29 06:49

I am trying to run the Ratchet application demo but I can\'t execute the file

This is my file structure

/var/www/src/MyApp/
/var/www/src/MyApp/chat.         


        
6条回答
  •  心在旅途
    2020-12-29 07:03

    You have to mention Base Path of your classes that need to be autoloaded:

    {
        "autoload": {
            "psr-4": {
                "MyApp\\": "src/MyApp/"
            }
        },
        "require": {
            "cboden/ratchet": "^0.4.0",
            "react/zmq": "0.2.*|0.3.*"
        }
    }
    

    And run

    Composer dump-autoload

提交回复
热议问题