I have been looking around the net with no luck on this issue, I am using composers autoload with the code in my composer.json
"autoload": {
"psr-0": {"AppName": "src/"}
}
But i need to autoload at a higher level then the vendor folder.
doing something like this does not work.
"autoload": {
"psr-0": {"AppName": "../src/"}
}
does anyone know a fix or how i can do this?
Thank you.