forked from proudnerds-typo3/irfaq
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds a composer manifest in order to be ready to integrate the extension to packagist, mentioned in proudnerds-typo3#2.
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "netcreators/irfaq", | ||
"description": "FAQ frontend plugin with dynamic or static view which will merge and improve functionality of EXT:faq and EXT:faq_plus into a modern look", | ||
"type": "typo3-cms-extension", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "Leonie Philine Bitto", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Tania Morales", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"typo3/cms": "^7.6.15 || ^8.7.0" | ||
}, | ||
"replace": { | ||
"irfaq": "self.version", | ||
"typo3-ter/irfaq": "self.version" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Netcreators\\Irfaq\\": "Classes/" | ||
}, | ||
"classmap": [ "class.ext_update.php" ] | ||
} | ||
} |