Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
[TASK] composer: declare initial composer file
Browse files Browse the repository at this point in the history
  • Loading branch information
cmonard committed Jun 18, 2019
1 parent e3f90f6 commit 6330412
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "archriss/arc-utility",
"type": "typo3-cms-extension",
"version": "1.1.0",
"description": "Collection of usefull utility in scheduler and viewhelper",
"license": "GPL-2.0",
"authors": [
{
"name": "Christophe Monard",
"role": "Development"
}
],
"require": {
"typo3/cms": "7.6.0 - 9.5.99"
},
"keywords": [
"TYPO3 CMS",
"Utility"
],
"homepage": "https://github.com/archriss/TYPO3-arc_utility",
"replace": {
"arc_utility": "self.version",
"typo3-ter/arc-utility": "self.version"
},
"autoload": {
"psr-4": {
"Archriss\\ArcUtility\\": "Classes/"
}
}
}
8 changes: 4 additions & 4 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

$EM_CONF[$_EXTKEY] = array(
'title' => 'Archriss - Utility testers',
'description' => '',
'description' => 'Collection of usefull utility in scheduler and viewhelper',
'category' => 'Archriss',
'version' => '1.0.0',
'version' => '1.1.0',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
Expand All @@ -24,8 +24,8 @@
'author_company' => 'Archriss',
'constraints' => array(
'depends' => array(
'php' => '5.3.7-5.7.99',
'typo3' => '6.0.0-7.6.99',
'php' => '5.3.7-7.3.99',
'typo3' => '7.6.0-9.5.99',
),
'conflicts' => array(
),
Expand Down

0 comments on commit 6330412

Please sign in to comment.