forked from seeruk/pimcore-di-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·27 lines (22 loc) · 969 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<zend-config>
<plugin>
<!-- the plugin name [A-Za-z_] -->
<pluginName>PimcoreDependencyInjectionPlugin</pluginName>
<!-- a short description -->
<pluginDescription><![CDATA[PHP-DI based dependency injection.]]></pluginDescription>
<!-- meta data -->
<pluginVersion>0.2.3</pluginVersion>
<pluginRevision>1</pluginRevision>
<!-- className of the plugin which extends Pimcore_API_Plugin_Abstract-->
<pluginClassName>SeerUK\Pimcore\DependencyInjection\DependencyInjectionPlugin</pluginClassName>
<!-- include paths relative to plugin-directory -->
<pluginIncludePaths>
<path>/PimcoreDiPlugin/lib</path>
</pluginIncludePaths>
<!-- namespaces to register with autoloader-->
<pluginNamespaces>
<namespace>SeerUK\Pimcore\DependencyInjection</namespace>
</pluginNamespaces>
</plugin>
</zend-config>