Skip to content

Commit

Permalink
Merge pull request #2 from mxpgmbh/package_name
Browse files Browse the repository at this point in the history
Changed package name and depenencies
  • Loading branch information
rk-mxp authored Jun 1, 2023
2 parents 745105e + 1bc9a07 commit d7098fa
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 12 deletions.
2 changes: 0 additions & 2 deletions .github/FUNDING.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/vendor
/public
/composer.lock
6 changes: 4 additions & 2 deletions Readme.md → README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# TYPO3 Extension `redirect_generator`

> This is a fork of [redirect_generator from Georg Ringer](https://github.com/georgringer/redirect_generator).
This extensions creates proper redirect entries from a CSV file.

Each target entry will be matched by the routing configuration. If the target is `http://demo.vm/company/contact`, the redirect will be created to the related page id!
Expand All @@ -10,14 +12,14 @@ Each target entry will be matched by the routing configuration. If the target is

### Requirements

* TYPO3 10 / 11
* TYPO3 10
* EXT:redirects

### Setup

Install as any other extension:

* *Composer*: `composer require georgringer/redirect-generator`
* *Composer*: `composer require mxp/redirect-generator`

## Configuration

Expand Down
15 changes: 11 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "georgringer/redirect-generator",
"name": "mxp/redirect-generator",
"type": "typo3-cms-extension",
"description": "Generate redirect entries from a given set of URLs and export all to CSV",
"keywords": [
Expand All @@ -10,27 +10,34 @@
"export",
"csv"
],
"homepage": "https://ringer.it",
"homepage": "https://github.com/mxpgmbh/redirect_generator",
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://ringer.it"
},
{
"name": "Rolf Kiefhber",
"role": "Developer",
"homepage": "https://www.mxp.de"
}
],
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^10.1 || ^11.5",
"typo3/cms-redirects": "^10.1 || ^11.5"
"php": "^7.4 || ^8.0",
"typo3/cms-core": "^10.4",
"typo3/cms-redirects": "^10.4"
},
"autoload": {
"psr-4": {
"GeorgRinger\\RedirectGenerator\\": "Classes"
}
},
"replace": {
"georgringer/redirect_generator": "*",
"typo3-ter/redirect-generator": "self.version"
},
"extra": {
Expand Down
8 changes: 4 additions & 4 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
'title' => 'Redirect generator',
'description' => 'Import + Export redirects',
'category' => 'frontend',
'author' => 'Georg Ringer',
'author_email' => 'mail@ringer.it',
'author' => 'Rolf Kiefhaber',
'author_email' => 'r.kiefhaber@mxp.de',
'state' => 'beta',
'clearCacheOnLoad' => true,
'version' => '1.0.0',
'constraints' =>
[
'depends' => [
'typo3' => '10.4.90-11.5.99',
'redirects' => '10.4.90-11.5.99',
'typo3' => '10.4.0-10.4.99',
'redirects' => '^10.4.0-10.4.99',
],
'conflicts' => [],
'suggests' => [],
Expand Down

0 comments on commit d7098fa

Please sign in to comment.