-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathConfigProvider.php
More file actions
86 lines (80 loc) · 2.48 KB
/
Copy pathConfigProvider.php
File metadata and controls
86 lines (80 loc) · 2.48 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
declare(strict_types=1);
namespace Core\Security;
use Core\Security\Repository\OAuthAccessTokenRepository;
use Core\Security\Repository\OAuthAuthCodeRepository;
use Core\Security\Repository\OAuthClientRepository;
use Core\Security\Repository\OAuthRefreshTokenRepository;
use Core\Security\Repository\OAuthScopeRepository;
use Doctrine\ORM\Mapping\Driver\AttributeDriver;
use Doctrine\Persistence\Mapping\Driver\MappingDriver;
use Dot\DependencyInjection\Factory\AttributedRepositoryFactory;
/**
* @phpstan-type ConfigType array{
* dependencies: DependenciesType,
* doctrine: DoctrineConfigType,
* }
* @phpstan-type DoctrineConfigType array{
* driver: array{
* orm_default: array{
* drivers: array<string, string>,
* },
* SecurityEntities: array{
* class: class-string<MappingDriver>,
* cache: string,
* paths: array<string>,
* },
* }
* }
* @phpstan-type DependenciesType array{
* factories: array<class-string, class-string>,
* }
*/
class ConfigProvider
{
/**
* @return ConfigType
*/
public function __invoke(): array
{
return [
'dependencies' => $this->getDependencies(),
'doctrine' => $this->getDoctrineConfig(),
];
}
/**
* @return DependenciesType
*/
private function getDependencies(): array
{
return [
'factories' => [
OAuthAccessTokenRepository::class => AttributedRepositoryFactory::class,
OAuthAuthCodeRepository::class => AttributedRepositoryFactory::class,
OAuthClientRepository::class => AttributedRepositoryFactory::class,
OAuthRefreshTokenRepository::class => AttributedRepositoryFactory::class,
OAuthScopeRepository::class => AttributedRepositoryFactory::class,
],
];
}
/**
* @return DoctrineConfigType
*/
private function getDoctrineConfig(): array
{
return [
'driver' => [
'orm_default' => [
'drivers' => [
'Core\Security\Entity' => 'SecurityEntities',
],
],
'SecurityEntities' => [
'class' => AttributeDriver::class,
'cache' => 'array',
'paths' => [__DIR__ . '/Entity'],
],
],
];
}
}