yiioverflow / yii2-imap

https://yiioverflow.com
BSD 3-Clause "New" or "Revised" License
41 stars 33 forks source link

Composer PSR-4 #3

Closed AleksandrIvin closed 9 years ago

AleksandrIvin commented 9 years ago

Why do you have:

"autoload": {
        "psr-4": {
            "roopz\\Imap\\": ""
        }
    }

But your namespace is roopz\imap and you files are in src/ maybe you should change to:

"autoload": {
        "psr-4": {
            "roopz\\imap\\": "src/"
        }
    }
yiioverflow commented 9 years ago

@AleksandrIvin Fixed the issue. Thanks for your comments.

AleksandrIvin commented 9 years ago

thank you :)