I have created a composer library.
I have one folder:
Models
Inside that is 1 file, it has a namespace declared TestJames
In my composer.json file I have:
"autoload": {
"psr-0": { "TestJames": "Models/" }
}
Firstly, I have no idea what the psr-0 bit means. Secondly, I am unsure of the order of bits and bobs.
Is there a documentation specifically for this part, and what am I doing wrong?