I'm developing a library for guitar chords. In some files on the library I have something like this:
require_once "lib/GuitarChord.php";
require_once "lib/Chord.php";
require_once "lib/Key.php";
require_once "lib/Tuning.php";
How can I make this library so it doesn't need to know where the other library files are?
This way a person could have the library files in any directory?