Composer 自动加载 Class 未发现异常

Composer autoload Class not found exception

我创建了一个名为 Util.php 的文件,Util.php 文件中有两个 class。

如何将 Util.php 变成 composer library 以供其他项目包含?现在我得到了 Class Not Found Exception.

I create a file named Util.php and there are two class in the Util.php file.

首先这是不好的做法

无论如何,它可以帮助: https://getcomposer.org/doc/04-schema.md#files

{
    "autoload": {
        "files": ["src/MyLibrary/functions.php"]
    }
}