mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-12-27 07:00:29 +01:00
26 lines
621 B
PHP
26 lines
621 B
PHP
<?php
|
|
|
|
/**
|
|
* @see https://github.com/laminas/laminas-mail for the canonical source repository
|
|
* @copyright https://github.com/laminas/laminas-mail/blob/master/COPYRIGHT.md
|
|
* @license https://github.com/laminas/laminas-mail/blob/master/LICENSE.md New BSD License
|
|
*/
|
|
|
|
namespace Laminas\Mail;
|
|
|
|
class Module
|
|
{
|
|
/**
|
|
* Retrieve laminas-mail package configuration for laminas-mvc context.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
$provider = new ConfigProvider();
|
|
return [
|
|
'service_manager' => $provider->getDependencyConfig(),
|
|
];
|
|
}
|
|
}
|