Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 297 Bytes

autoload.md

File metadata and controls

15 lines (13 loc) · 297 Bytes

Autoload and Composer

Composer is used to manage the generation of the autoloaders. For a new plugin, your composer.json file should look like this:

{
  "name": "tuleap/plugin-myplugin",
  "autoload": {
    "psr-4": {
      "Tuleap\\MyPluginNamespace\\": "include/"
    }
  }
}