Skip to content

Commit

Permalink
change composer vendor name, add readme, raise version
Browse files Browse the repository at this point in the history
  • Loading branch information
abplana committed Oct 8, 2019
1 parent 3a29241 commit f5c34ba
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# TYPO3 Extension 'ig_slug'

Rebuild URL slugs of pages an other tables

## 1. What does it do?


Extension to rebuild the slugs of the pages or any other table with slugs like e.g. news. It also offers an ovierview of the current slugs and shows which slugs would be changed.

The table with slug fields are automaticly detected. Non admin users only have access to tables if they can change the slug field.

Workspaces are not yet implemented.

## 2. Usage


### 1) Installation

#### Installation using Composer

The recommended way to install the extension is by using [Composer][2]. In your Composer based TYPO3 project root, just do `composer require internetgalerie/ig-slug`.

#### Installation as extension from TYPO3 Extension Repository (TER)

Download and install the extension with the extension manager module.


[1]: https://docs.typo3.org/typo3cms/extensions/ig_slug/
[2]: https://getcomposer.org/

18 changes: 16 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
{
"name": "ig/ig-slug",
"name": "internetgalerie/ig-slug",
"type": "typo3-cms-extension",
"description": "Rebuild URL slugs",
"authors": [],
"keywords": [
"TYPO3",
"extension",
"slug",
"url"
],
"homepage": "https://www.internetgalerie.ch",
"authors": [
{
"name": "Daniel Abplanalp",
"role": "Developer",
"homepage": "https://www.internetgalerie.ch"
}
],
"license": ["GPL-2.0-or-later"],
"require": {
"typo3/cms-core": "^9.5.0"
},
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
'author' => 'Daniel Abplanalp',
'author_email' => 'typo3@internetgalerie.ch',
'author_company' => 'Internetgalerie AG',
'state' => 'beta',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '1.0.1',
'version' => '1.0.2',
'constraints' => [
'depends' => [
'typo3' => '9.5.0-9.5.99',
Expand Down

0 comments on commit f5c34ba

Please sign in to comment.