Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task #446 #398: synchronize composer.json and ext_emconf #465

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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