Skip to content

Commit 3e5fb60

Browse files
committed
[TASK] Add composer.json
Resolves: #1
1 parent ad81c77 commit 3e5fb60

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

Readme.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TYPO3 Extension 'backend_debug'
1+
# TYPO3 Extension `backend_debug
22

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

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

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

14+
## Installation
15+
16+
Use composer with `composer require georgringer/backend-debug`.

composer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "georgringer/backend-debug",
3+
"keywords": [
4+
"TYPO3",
5+
"extension",
6+
"backend",
7+
"debug"
8+
],
9+
"authors": [
10+
{
11+
"name": "Georg Ringer",
12+
"role": "Developer",
13+
"homepage": "http://ringer.it"
14+
}
15+
],
16+
"type": "typo3-cms-extension",
17+
"description": "Some debug helper for the TYPO3 backend",
18+
"homepage": "http://ringer.it",
19+
"license": [
20+
"GPL-2.0+"
21+
],
22+
"require": {
23+
"typo3/cms-core": "^8.7 || ^9.0"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"GeorgRinger\\BackendDebug\\": "Classes"
28+
}
29+
},
30+
"replace": {
31+
"backend_debug": "self.version",
32+
"typo3-ter/backend-debug": "self.version"
33+
}
34+
}

0 commit comments

Comments
 (0)