Skip to content

Commit

Permalink
[TASK] Add composer.json
Browse files Browse the repository at this point in the history
Resolves: #1
  • Loading branch information
georgringer committed Jan 3, 2018
1 parent ad81c77 commit 3e5fb60
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# TYPO3 Extension 'backend_debug'
# TYPO3 Extension `backend_debug

This extension helps admins working in the backend. Currently implemented feature:

Expand All @@ -11,3 +11,6 @@ This feature is enabled only for admins.

![Show fieldname](/Resources/Public/Documentation/fieldname.png)

## Installation

Use composer with `composer require georgringer/backend-debug`.
34 changes: 34 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "georgringer/backend-debug",
"keywords": [
"TYPO3",
"extension",
"backend",
"debug"
],
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "http://ringer.it"
}
],
"type": "typo3-cms-extension",
"description": "Some debug helper for the TYPO3 backend",
"homepage": "http://ringer.it",
"license": [
"GPL-2.0+"
],
"require": {
"typo3/cms-core": "^8.7 || ^9.0"
},
"autoload": {
"psr-4": {
"GeorgRinger\\BackendDebug\\": "Classes"
}
},
"replace": {
"backend_debug": "self.version",
"typo3-ter/backend-debug": "self.version"
}
}

0 comments on commit 3e5fb60

Please sign in to comment.