Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function __invoke(): array |
||
15 | { |
||
16 | return [ |
||
17 | 'dependencies' => [ |
||
18 | 'factories' => [ |
||
19 | CreateToken::class => ReallySimpleJWTCreateTokenFactory::class, |
||
20 | ValidateToken::class => ReallySimpleJWTValidateTokenFactory::class, |
||
21 | ], |
||
22 | ], |
||
23 | 'jwt_auth' => [ |
||
24 | 'secret' => '0Super@#Secret$$String!!', |
||
25 | 'expiration' => 3600, |
||
26 | 'issuer' => 'Dev Lab App' |
||
27 | ], |
||
31 |