Api Resource Path

By default t3api will search for API Resource classes in Classes/Domain/Model/*.php of currently loaded extensions. This behaviour is defined in LoadedExtensionsDomainModelApiResourcePathProvider and registered in ext_localconf.php like this:

$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['t3api']['apiResourcePathProviders'] = [
      \SourceBroker\T3api\Provider\ApiResourcePath\LoadedExtensionsDomainModelApiResourcePathProvider::class,
  ];
Copied!

The same way you can add your own providers for additional patches.