gallery-api/config/autoload/dependencies.global.php

21 lines
709 B
PHP
Raw Permalink Normal View History

2017-07-21 19:59:16 +02:00
<?php
2020-04-23 18:26:12 +02:00
declare(strict_types=1);
2017-07-21 19:59:16 +02:00
return [
// Provides application-wide services.
// We recommend using fully-qualified class names whenever possible as
// service names.
'dependencies' => [
// Use 'aliases' to alias a service name to another service. The
// key is the alias name, the value is the service to which it points.
2020-04-23 18:26:12 +02:00
'aliases' => [],
2017-07-21 19:59:16 +02:00
// Use 'invokables' for constructor-less services, or services that do
// not require arguments to the constructor. Map a service name to the
// class name.
2020-04-23 18:26:12 +02:00
'invokables' => [],
2017-07-21 19:59:16 +02:00
// Use 'factories' for services provided by callbacks/factory classes.
2020-04-23 18:26:12 +02:00
'factories' => [],
2017-07-21 19:59:16 +02:00
],
];