Skip to content

Commit

Permalink
Task #446 #398: synchronize composer.json and ext_emconf
Browse files Browse the repository at this point in the history
resolve #446 #398
  • Loading branch information
kartolo committed Feb 21, 2024
1 parent 07a5100 commit 11f9146
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 49 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@ processed.
Description
If set, links longer than 76 characters found in plain text content
will be redirected: long URL's will be substituted with
?RDCT=[md5hash] parameters.
?RDCT=[md5hash] parameters. This needs the extension `rdct <https://packagist.org/packages/friendsoftypo3/rdct>`_
to be installed

Note: This configuration determines how Quick Mails are handled and
further sets the default value for Direct Mails.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
Enabling click statistics
-------------------------

To enable the click statistics of the Direct Mail module, enable the
To enable the click statistics of the Direct Mail module, please install
`jumpurl <https://packagist.org/packages/friendsoftypo3/jumpurl>`_ and enable the
following checkbox in the "Module configuration” function:

|img-16|
Expand Down
94 changes: 49 additions & 45 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,48 +1,52 @@
{
"name": "directmailteam/direct-mail",
"type": "typo3-cms-extension",
"description": "Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.",
"keywords": [
"TYPO3",
"extension",
"directmail",
"newsletter"
],
"homepage": "https://github.com/kartolo/direct_mail",
"authors": [
{
"name": "Ivan Kartolo",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"support": {
"issues": "https://github.com/kartolo/direct_mail/issues"
},
"require": {
"typo3/cms-core": "^11.5",
"typo3/cms-dashboard": "^11.5",
"name": "directmailteam/direct-mail",
"type": "typo3-cms-extension",
"description": "Advanced Direct Mail/Newsletter mailer system with sophisticated options for personalization of emails including response statistics.",
"keywords": [
"TYPO3",
"extension",
"directmail",
"newsletter"
],
"homepage": "https://github.com/kartolo/direct_mail",
"authors": [
{
"name": "Ivan Kartolo",
"role": "Developer"
}
],
"license": [
"GPL-2.0-or-later"
],
"support": {
"issues": "https://github.com/kartolo/direct_mail/issues"
},
"require": {
"typo3/cms-core": "^11.5",
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2",
"friendsoftypo3/tt-address": "^6.0 || ^7.0 || ^8.0",
"tedivm/fetch": "0.7.*"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"DirectMailTeam\\DirectMail\\": "Classes"
}
},
"replace": {
"typo3-ter/direct-mail": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "direct_mail"
}
}
"friendsoftypo3/tt-address": "^6.0 || ^7.0 || ^8.0",
"tedivm/fetch": "0.7.*"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"suggest": {
"typo3/cms-dashboard": "^11.5",
"friendsoftypo3/rdct": "^2.1",
"friendsoftypo3/jumpurl": "^8.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"DirectMailTeam\\DirectMail\\": "Classes"
}
},
"replace": {
"typo3-ter/direct-mail": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "direct_mail"
}
}
}
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
'lowlevel' => '11.5.0-11.99.99',
'tt_address' => '6.0.0-8.0.99',
'php' => '7.4.0-8.1.99',
'jumpurl' => '8.0.3-',
'rdct' => '2.1.0',
],
'conflicts' => [
],
'suggests' => [
'jumpurl' => '8.0.3-',
'rdct' => '2.1.0',
],
],
'suggests' => [
Expand Down

0 comments on commit 11f9146

Please sign in to comment.