Skip to content

Commit b60acd2

Browse files
committed
Updated php file headers doc blocks
1 parent c1b98ea commit b60acd2

5 files changed

Lines changed: 45 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
## 0.1.1 - 2017-03-11
2+
3+
### Added
4+
* Updated php file headers doc blocks
5+
6+
### Deprecated
7+
* Nothing
8+
9+
### Removed
10+
* Nothing
11+
12+
### Fixed
13+
* Nothing
14+
15+
16+
## 0.1.0 - 2017-03-09
17+
18+
Initial tagged release
19+
20+
### Added
21+
* Everything
22+
23+
### Deprecated
24+
* Nothing
25+
26+
### Removed
27+
* Nothing
28+
29+
### Fixed
30+
* Nothing

composer.json

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dotkernel/dot-controller-plugin-mail",
33
"type": "library",
4-
"description": "Mail controller plugin for easy access of mail services inside DK controllers",
4+
"description": "DotKernel mail controller plugin component",
55
"license": "MIT",
66
"authors": [
77
{
@@ -10,18 +10,15 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^5.6 || ^7.0",
13+
"php": "^7.1",
1414
"container-interop/container-interop": "^1.1",
1515

16-
"dotkernel/dot-controller": "0.6.x-dev"
16+
"dotkernel/dot-controller": "^0.1",
17+
"dotkernel/dot-mail": "^0.1"
1718
},
1819
"require-dev": {
1920
"phpunit/phpunit": "^4.8",
20-
"squizlabs/php_codesniffer": "^2.3",
21-
22-
"dotkernel/dot-event": "0.6.x-dev",
23-
"dotkernel/dot-helpers": "0.6.x-dev",
24-
"dotkernel/dot-mail": "0.6.x-dev"
21+
"squizlabs/php_codesniffer": "^2.3"
2522
},
2623
"autoload": {
2724
"psr-4": {
@@ -35,7 +32,7 @@
3532
},
3633
"extra": {
3734
"branch-alias": {
38-
"dev-master": "0.6-dev"
35+
"dev-master": "0.2-dev"
3936
}
4037
}
4138
}

src/ConfigProvider.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* @copyright: DotKernel
4-
* @library: dotkernel/dot-controller-plugin-mail
5-
* @author: n3vrax
6-
* Date: 9/6/2016
7-
* Time: 7:49 PM
3+
* @see https://github.com/dotkernel/dot-controller-plugin-mail/ for the canonical source repository
4+
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
5+
* @license https://github.com/dotkernel/dot-controller-plugin-mail/blob/master/LICENSE.md MIT License
86
*/
97

108
namespace Dot\Controller\Plugin\Mail;

src/Factory/MailPluginAbstractFactory.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* @copyright: DotKernel
4-
* @library: dotkernel/dot-controller-plugin-mail
5-
* @author: n3vrax
6-
* Date: 9/6/2016
7-
* Time: 7:49 PM
3+
* @see https://github.com/dotkernel/dot-controller-plugin-mail/ for the canonical source repository
4+
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
5+
* @license https://github.com/dotkernel/dot-controller-plugin-mail/blob/master/LICENSE.md MIT License
86
*/
97

108
namespace Dot\Controller\Plugin\Mail\Factory;

src/MailPlugin.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
<?php
22
/**
3-
* @copyright: DotKernel
4-
* @library: dotkernel/dot-controller-plugin-mail
5-
* @author: n3vrax
6-
* Date: 9/6/2016
7-
* Time: 7:49 PM
3+
* @see https://github.com/dotkernel/dot-controller-plugin-mail/ for the canonical source repository
4+
* @copyright Copyright (c) 2017 Apidemia (https://www.apidemia.com)
5+
* @license https://github.com/dotkernel/dot-controller-plugin-mail/blob/master/LICENSE.md MIT License
86
*/
97

108
namespace Dot\Controller\Plugin\Mail;

0 commit comments

Comments
 (0)