In composer, usually when we set up autoload for files containing classes, I usually do this:
"autoload" : {
"psr-4" : { "WallaceMaxters\Timer\" : 'src/timer'}
}
Composer will automatically load the file that has the same class name as it is instantiated.
But now I have a file called functions.php
that has some functions that I want to include in that same library.
How do I make the composer automatically include a file?