I am trying to autoload the contents of src
folder and use
them in some unit tests .
Here is the autoloading part of composer.json
"autoload": {
"psr-0": {
"Meetup\\Login\\": "src/"
}
}
There is a class called users
in src/core
folder. Screenshot attached.
Any idea why i get the error PHP Fatal error: Class 'Meetup\Login\Core\Users
in a unit test which tries to import the users
class using use Meetup\Login\Core\Users