This repository was archived by the owner on Sep 8, 2020. It is now read-only.
File tree 23 files changed +59
-59
lines changed 23 files changed +59
-59
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt;
3
+ namespace Keet\ Encrypt;
4
4
5
5
return [
6
6
'doctrine' => [
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt ;
3
+ namespace Keet \ Encrypt ;
4
4
5
5
use Doctrine \Common \Annotations \AnnotationReader ;
6
- use Encrypt \Adapter \EncryptionAdapter ;
7
- use Encrypt \Adapter \HashingAdapter ;
8
- use Encrypt \Factory \Adapter \EncryptionAdapterFactory ;
9
- use Encrypt \Factory \Adapter \HashingAdapterFactory ;
10
- use Encrypt \Factory \Service \EncryptionServiceFactory ;
11
- use Encrypt \Factory \Service \HashingServiceFactory ;
12
- use Encrypt \Factory \Subscriber \EncryptionSubscriberFactory ;
13
- use Encrypt \Factory \Subscriber \HashingSubscriberFactory ;
14
- use Encrypt \Service \EncryptionService ;
15
- use Encrypt \Service \HashingService ;
6
+ use Keet \ Encrypt \Adapter \EncryptionAdapter ;
7
+ use Keet \ Encrypt \Adapter \HashingAdapter ;
8
+ use Keet \ Encrypt \Factory \Adapter \EncryptionAdapterFactory ;
9
+ use Keet \ Encrypt \Factory \Adapter \HashingAdapterFactory ;
10
+ use Keet \ Encrypt \Factory \Service \EncryptionServiceFactory ;
11
+ use Keet \ Encrypt \Factory \Service \HashingServiceFactory ;
12
+ use Keet \ Encrypt \Factory \Subscriber \EncryptionSubscriberFactory ;
13
+ use Keet \ Encrypt \Factory \Subscriber \HashingSubscriberFactory ;
14
+ use Keet \ Encrypt \Service \EncryptionService ;
15
+ use Keet \ Encrypt \Service \HashingService ;
16
16
17
17
return [
18
18
'doctrine_factories ' => [
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Adapter ;
3
+ namespace Keet \ Encrypt \Adapter ;
4
4
5
- use Encrypt \Interfaces \EncryptionInterface ;
5
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
6
6
use ParagonIE \ConstantTime \Binary ;
7
7
use ParagonIE \Halite \Alerts \InvalidKey ;
8
8
use ParagonIE \Halite \HiddenString ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Adapter ;
3
+ namespace Keet \ Encrypt \Adapter ;
4
4
5
- use Encrypt \Interfaces \HashingInterface ;
5
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
6
6
use ParagonIE \ConstantTime \Binary ;
7
7
use ParagonIE \Halite \Alerts \InvalidKey ;
8
8
use ParagonIE \Halite \HiddenString ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Annotation ;
3
+ namespace Keet \ Encrypt \Annotation ;
4
4
5
5
use Doctrine \Common \Annotations \Annotation \Target ;
6
6
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Annotation ;
3
+ namespace Keet \ Encrypt \Annotation ;
4
4
5
5
use Doctrine \Common \Annotations \Annotation \Target ;
6
6
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Exception ;
3
+ namespace Keet \ Encrypt \Exception ;
4
4
5
5
class OptionsNotFoundException extends \Exception
6
6
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Adapter ;
3
+ namespace Keet \ Encrypt \Factory \Adapter ;
4
4
5
- use Encrypt \Adapter \EncryptionAdapter ;
6
- use Encrypt \Exception \OptionsNotFoundException ;
5
+ use Keet \ Encrypt \Adapter \EncryptionAdapter ;
6
+ use Keet \ Encrypt \Exception \OptionsNotFoundException ;
7
7
use Interop \Container \ContainerInterface ;
8
8
use Zend \ServiceManager \Factory \FactoryInterface ;
9
9
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Adapter ;
3
+ namespace Keet \ Encrypt \Factory \Adapter ;
4
4
5
- use Encrypt \Adapter \HashingAdapter ;
6
- use Encrypt \Exception \OptionsNotFoundException ;
5
+ use Keet \ Encrypt \Adapter \HashingAdapter ;
6
+ use Keet \ Encrypt \Exception \OptionsNotFoundException ;
7
7
use Interop \Container \ContainerInterface ;
8
8
use Zend \ServiceManager \Factory \FactoryInterface ;
9
9
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Service ;
3
+ namespace Keet \ Encrypt \Factory \Service ;
4
4
5
- use Encrypt \Interfaces \EncryptionInterface ;
6
- use Encrypt \Service \EncryptionService ;
5
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
6
+ use Keet \ Encrypt \Service \EncryptionService ;
7
7
use Exception ;
8
8
use Interop \Container \ContainerInterface ;
9
9
use Zend \ServiceManager \Factory \FactoryInterface ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Service ;
3
+ namespace Keet \ Encrypt \Factory \Service ;
4
4
5
- use Encrypt \Interfaces \HashingInterface ;
6
- use Encrypt \Service \HashingService ;
5
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
6
+ use Keet \ Encrypt \Service \HashingService ;
7
7
use Exception ;
8
8
use Interop \Container \ContainerInterface ;
9
9
use Zend \ServiceManager \Factory \FactoryInterface ;
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Subscriber ;
3
+ namespace Keet \ Encrypt \Factory \Subscriber ;
4
4
5
5
use Doctrine \Common \Annotations \AnnotationReader ;
6
6
use Doctrine \Common \Annotations \Reader ;
7
7
use DoctrineModule \Service \AbstractFactory ;
8
- use Encrypt \Interfaces \EncryptionInterface ;
9
- use Encrypt \Options \EncryptionOptions ;
10
- use Encrypt \Subscriber \EncryptionSubscriber ;
8
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
9
+ use Keet \ Encrypt \Options \EncryptionOptions ;
10
+ use Keet \ Encrypt \Subscriber \EncryptionSubscriber ;
11
11
use Interop \Container \ContainerInterface ;
12
12
use Zend \ServiceManager \ServiceLocatorInterface ;
13
13
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Factory \Subscriber ;
3
+ namespace Keet \ Encrypt \Factory \Subscriber ;
4
4
5
5
use Doctrine \Common \Annotations \AnnotationReader ;
6
6
use Doctrine \Common \Annotations \Reader ;
7
7
use DoctrineModule \Service \AbstractFactory ;
8
- use Encrypt \Adapter \HashingAdapter ;
9
- use Encrypt \Interfaces \HashingInterface ;
10
- use Encrypt \Options \HashingOptions ;
11
- use Encrypt \Subscriber \HashingSubscriber ;
8
+ use Keet \ Encrypt \Adapter \HashingAdapter ;
9
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
10
+ use Keet \ Encrypt \Options \HashingOptions ;
11
+ use Keet \ Encrypt \Subscriber \HashingSubscriber ;
12
12
use Interop \Container \ContainerInterface ;
13
13
use Zend \ServiceManager \ServiceLocatorInterface ;
14
14
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Interfaces ;
3
+ namespace Keet \ Encrypt \Interfaces ;
4
4
5
5
interface EncryptionInterface
6
6
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Interfaces ;
3
+ namespace Keet \ Encrypt \Interfaces ;
4
4
5
5
interface HashingInterface
6
6
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Interfaces ;
3
+ namespace Keet \ Encrypt \Interfaces ;
4
4
5
5
interface SaltInterface
6
6
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt ;
3
+ namespace Keet \ Encrypt ;
4
4
5
5
use Zend \ModuleManager \Feature \ConfigProviderInterface ;
6
6
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Options ;
3
+ namespace Keet \ Encrypt \Options ;
4
4
5
5
use Doctrine \Common \Annotations \Reader ;
6
- use Encrypt \Interfaces \EncryptionInterface ;
6
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
7
7
use Zend \Stdlib \AbstractOptions ;
8
8
9
9
class EncryptionOptions extends AbstractOptions
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Options ;
3
+ namespace Keet \ Encrypt \Options ;
4
4
5
5
use Doctrine \Common \Annotations \Reader ;
6
- use Encrypt \Interfaces \HashingInterface ;
6
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
7
7
use Zend \Stdlib \AbstractOptions ;
8
8
9
9
class HashingOptions extends AbstractOptions
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Service ;
3
+ namespace Keet \ Encrypt \Service ;
4
4
5
- use Encrypt \Interfaces \EncryptionInterface ;
5
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
6
6
7
7
class EncryptionService
8
8
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Service ;
3
+ namespace Keet \ Encrypt \Service ;
4
4
5
- use Encrypt \Interfaces \HashingInterface ;
5
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
6
6
7
7
class HashingService
8
8
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Subscriber ;
3
+ namespace Keet \ Encrypt \Subscriber ;
4
4
5
5
use Doctrine \Common \Annotations \Reader ;
6
6
use Doctrine \Common \EventSubscriber ;
10
10
use Doctrine \ORM \Event \OnFlushEventArgs ;
11
11
use Doctrine \ORM \Event \PostFlushEventArgs ;
12
12
use Doctrine \ORM \Events ;
13
- use Encrypt \Annotation \Encrypted ;
14
- use Encrypt \Interfaces \EncryptionInterface ;
13
+ use Keet \ Encrypt \Annotation \Encrypted ;
14
+ use Keet \ Encrypt \Interfaces \EncryptionInterface ;
15
15
16
16
class EncryptionSubscriber implements EventSubscriber
17
17
{
Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- namespace Encrypt \Subscriber ;
3
+ namespace Keet \ Encrypt \Subscriber ;
4
4
5
5
use Doctrine \Common \Annotations \Reader ;
6
6
use Doctrine \Common \EventSubscriber ;
7
7
use Doctrine \Common \Persistence \ObjectManager ;
8
8
use Doctrine \ORM \EntityManager ;
9
9
use Doctrine \ORM \Event \OnFlushEventArgs ;
10
10
use Doctrine \ORM \Events ;
11
- use Encrypt \Annotation \Hashed ;
12
- use Encrypt \Interfaces \HashingInterface ;
13
- use Encrypt \Interfaces \SaltInterface ;
11
+ use Keet \ Encrypt \Annotation \Hashed ;
12
+ use Keet \ Encrypt \Interfaces \HashingInterface ;
13
+ use Keet \ Encrypt \Interfaces \SaltInterface ;
14
14
15
15
class HashingSubscriber implements EventSubscriber
16
16
{
You can’t perform that action at this time.
0 commit comments