I\'m using composer in my latest project and mapping my function like this
\"require\": {
...
},
\"require-dev\": {
...
},
\"autoload\": {
\"psr-4\":
There's actually a better way to do this now without any custom code. You can use Composer's classmap feature if you're working with classes. If you're working with individual files that contain functions then you will have to use the files[] array.
{
"autoload": {
"classmap": ["src/", "lib/", "Something.php"]
}
}