Skip to content

Instantly share code, notes, and snippets.

@tommcfarlin
Created September 14, 2017 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tommcfarlin/c7703a3b7c27594918f0af7a2a7d5fe4 to your computer and use it in GitHub Desktop.
Save tommcfarlin/c7703a3b7c27594918f0af7a2a7d5fe4 to your computer and use it in GitHub Desktop.
[WordPress] PSR-4 Autoloading WordPress Plugins
{
"name": "pressware/acme-plugins",
"description": "A demo plugin",
"autoload": {
"psr-4": {
"Acme\\": "src/",
}
},
// ...
}
{
"name": "pressware/acme-plugins",
"description": "A demo plugin",
"autoload": {
"psr-4": {
"Acme\\": "",
"Acme\\MicroPlugin\\": "MicroPlugin/src/"
}
},
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment