Skip to content

Commit

Permalink
Updated php file headers doc blocks, updated composer dependencies ve…
Browse files Browse the repository at this point in the history
…rsion
  • Loading branch information
n3vrax committed Mar 10, 2017
1 parent 56b9032 commit c1420b0
Show file tree
Hide file tree
Showing 22 changed files with 83 additions and 104 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.1.1 - 2017-03-10

### Added
* Updated php file headers doc blocks, updated composer dependencies version

### Deprecated
* Nothing

### Removed
* Nothing

### Fixed
* Nothing


## 0.1.0 - 2017-03-08

Initial tagged release
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"psr/http-message": "^1.0",
"container-interop/container-interop": "^1.1",

"dotkernel/dot-authentication": "~0.1",
"dotkernel/dot-event": "~0.1",
"dotkernel/dot-helpers": "~0.1",
"dotkernel/dot-flashmessenger": "~0.1"
"dotkernel/dot-authentication": "^0.1",
"dotkernel/dot-event": "^0.1",
"dotkernel/dot-helpers": "^0.1",
"dotkernel/dot-flashmessenger": "^0.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
Expand Down
8 changes: 3 additions & 5 deletions src/Action/LoginAction.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 8:37 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Action/LogoutAction.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 8:37 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/ConfigProvider.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 5/19/2016
* Time: 12:54 AM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/ErrorHandler/UnauthorizedHandler.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 10:45 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
12 changes: 7 additions & 5 deletions src/Event/AbstractAuthenticationEventListener.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dot-authentication-web
* @author: n3vrax
* Date: 1/30/2017
* Time: 8:33 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand All @@ -13,6 +11,10 @@

use Zend\EventManager\AbstractListenerAggregate;

/**
* Class AbstractAuthenticationEventListener
* @package Dot\Authentication\Web\Event
*/
abstract class AbstractAuthenticationEventListener extends AbstractListenerAggregate implements
AuthenticationEventListenerInterface
{
Expand Down
8 changes: 3 additions & 5 deletions src/Event/AuthenticationEvent.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 6/17/2016
* Time: 3:49 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Event/AuthenticationEventListenerInterface.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dot-authentication-web
* @author: n3vrax
* Date: 1/30/2017
* Time: 8:31 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Event/AuthenticationEventListenerTrait.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dot-authentication-web
* @author: n3vrax
* Date: 2/20/2017
* Time: 11:11 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Event/DispatchAuthenticationEventTrait.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dot-authentication-web
* @author: n3vrax
* Date: 2/21/2017
* Time: 12:00 AM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Exception/ExceptionInterface.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 6/18/2016
* Time: 3:00 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Exception/InvalidArgumentException.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 10/10/2016
* Time: 7:15 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Exception/RuntimeException.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 6/18/2016
* Time: 3:01 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Factory/BaseActionFactory.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dot-authentication-web
* @author: n3vrax
* Date: 2/21/2017
* Time: 12:08 AM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Factory/LoginActionFactory.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 8:40 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Factory/LogoutActionFactory.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 8:40 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Factory/UnauthorizedHandlerFactory.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 5/1/2016
* Time: 3:15 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Factory/WebAuthenticationOptionsFactory.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 5/1/2016
* Time: 2:50 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Options/MessagesOptions.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 8:37 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Options/WebAuthenticationOptions.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-web
* @author: n3vrax
* Date: 4/30/2016
* Time: 9:36 PM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down
8 changes: 3 additions & 5 deletions src/Utils.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
<?php
/**
* @copyright: DotKernel
* @library: dotkernel/dot-authentication-service
* @author: n3vrax
* Date: 5/19/2016
* Time: 12:37 AM
* @see https://github.com/dotkernel/dot-authentication-web/ for the canonical source repository
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
* @license https://github.com/dotkernel/dot-authentication-web/blob/master/LICENSE.md MIT License
*/

declare(strict_types = 1);
Expand Down

0 comments on commit c1420b0

Please sign in to comment.