Skip to content

Commit 3684298

Browse files
author
Dremecker
committed
Init. 1.1
Preparing 1.1 (bfw 3.0.0-rc10 / php 7 / phpmailer 6) Changing contact details
1 parent d66e2db commit 3684298

File tree

13 files changed

+38
-42
lines changed

13 files changed

+38
-42
lines changed

composer.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
2-
"name": "dremecker/bfw-mailer",
2+
"name": "aetiom/bfw-mailer",
33
"type": "library",
4-
"description": "Advanced log module for BFW framework",
4+
"description": "Advanced mailer module for BFW framework",
55
"keywords": ["mailer", "email", "module", "bfw"],
6-
"homepage": "https://github.com/dremecker/bfw-mailer",
7-
"time": "2017-02-10",
6+
"homepage": "https://github.com/aetiom/bfw-mailer",
7+
"time": "2018-12-07",
88
"license": "LGPL-3.0",
99
"authors":
1010
[
1111
{
12-
"name": "Alexandre Moittié / Dremecker",
13-
"homepage": "http://www.alexandre-moittie.com",
14-
"email": "contact@alexandre-moittie.com"
12+
"name": "Aetiom",
13+
"homepage": "https://github.com/aetiom/",
14+
"email": "aetiom@protonmail.com"
1515
}
1616
],
1717
"support":
1818
{
19-
"email": "contact@alexandre-moittie.com",
20-
"issues": "https://github.com/dremecker/bfw-mailer/issues",
21-
"source": "https://github.com/dremecker/bfw-mailer"
19+
"email": "aetiom@protonmail.com",
20+
"issues": "https://github.com/aetiom/bfw-mailer/issues",
21+
"source": "https://github.com/aetiom/bfw-mailer"
2222
},
2323
"require":
2424
{
25-
"php": ">=5.6.0",
26-
"bulton-fr/bfw": "3.0.0-rc.2",
27-
"bulton-fr/bfw-sql": "2.0.0-rc.2",
28-
"phpmailer/phpmailer": "~5.2"
25+
"php": "^7.0.0",
26+
"bulton-fr/bfw": "3.0.0-rc.10",
27+
"bulton-fr/bfw-sql": "2.0.0-rc.10",
28+
"phpmailer/phpmailer": "~6.0"
2929
},
3030
"minimum-stability": "stable",
3131
"autoload":

config/config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* Configuration file for bfw-advanced-log module
4-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
4+
* @author Aetiom <aetiom@protonmail.com>
55
* @package bfw-mailer
66
* @version 1.0
77
*/

src/classes/Mailer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Class that manage the mailer and the sending/queueing process
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
class Mailer {
1212

src/classes/MailerOptions.php

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
<?php
2-
/**
3-
* Classes permettant de gérer l'envoi d'email
4-
* @author Alexandre Moittié <[email protected]>
5-
* @package bfw-mailer
6-
* @version 1.0
7-
*/
82

93
namespace BfwMailer;
104

11-
125
/**
136
* Class that carries the mailer options
14-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
158
* @package bfw-mailer
16-
* @version 1.0
9+
* @version 1.1
1710
*/
1811
class MailerOptions
1912
{

src/classes/QueueHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Class that handles the mail queue
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
class QueueHandler {
1212

src/classes/SendingStatus.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Class that carries the sending status
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
class SendingStatus {
1212

src/classes/modeles/AbstrEmailData.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Abstract class that carries email data
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
abstract class AbstrEmailData extends AbstrModeles
1212
{

src/classes/modeles/AbstrMailBox.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Abstract class that carries mailbox data
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
abstract class AbstrMailBox extends AbstrEmailData
1212
{

src/classes/modeles/AbstrModeles.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Abstract class for all modeles into bfw-mailer
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
abstract class AbstrModeles extends \BfwSql\Modeles
1212
{

src/classes/modeles/Content.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
/**
66
* Class that carries email content data
7-
* @author Alexandre Moittié <contact@alexandre-moittie.com>
7+
* @author Aetiom <aetiom@protonmail.com>
88
* @package bfw-mailer
9-
* @version 1.0
9+
* @version 1.1
1010
*/
1111
class Content extends AbstrEmailData
1212
{

0 commit comments

Comments
 (0)