mirror of
https://github.com/DanielSiepmann/tracking.git
synced 2024-11-24 06:36:08 +01:00
Prepare usage as standalone composer package
This commit is contained in:
parent
654d52cede
commit
73ec4641ff
3 changed files with 31 additions and 4 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
/.Build/
|
||||||
|
/composer.lock
|
|
@ -15,12 +15,35 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
"doctrine/dbal": "^2.10",
|
||||||
"php": "^7.3.0",
|
"php": "^7.3.0",
|
||||||
|
"psr/http-message": "^1.0",
|
||||||
|
"psr/http-server-handler": "^1.0",
|
||||||
|
"psr/http-server-middleware": "^1.0",
|
||||||
|
"symfony/expression-language": "^5.0",
|
||||||
"typo3/cms-core": "^10.3.0"
|
"typo3/cms-core": "^10.3.0"
|
||||||
},
|
},
|
||||||
|
"suggest": {
|
||||||
|
"typo3/cms-dashboard": "To make use of provided TYPO3 widgets"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"vendor-dir": ".Build/vendor",
|
||||||
|
"bin-dir": ".Build/bin"
|
||||||
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"typo3/cms": {
|
"typo3/cms": {
|
||||||
"extension-key": "tracking"
|
"cms-package-dir": "{$vendor-dir}/typo3/cms",
|
||||||
|
"extension-key": "tracking",
|
||||||
|
"web-dir": ".Build/web"
|
||||||
|
},
|
||||||
|
"branch-alias": {
|
||||||
|
"dev-develop": "1.0.x-dev"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"post-autoload-dump": [
|
||||||
|
"mkdir -p .Build/web/typo3conf/ext/",
|
||||||
|
"[ -L .Build/web/typo3conf/ext/tracking ] || ln -snvf ../../../../. .Build/web/typo3conf/ext/tracking"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,19 +3,21 @@ $EM_CONF[$_EXTKEY] = [
|
||||||
'title' => 'Tracking',
|
'title' => 'Tracking',
|
||||||
'description' => 'Tracks page visits in TYPO3.',
|
'description' => 'Tracks page visits in TYPO3.',
|
||||||
'category' => 'fe',
|
'category' => 'fe',
|
||||||
'state' => 'stable',
|
'state' => 'alpha',
|
||||||
'uploadfolder' => 0,
|
'uploadfolder' => 0,
|
||||||
'createDirs' => '',
|
'createDirs' => '',
|
||||||
'clearCacheOnLoad' => 0,
|
'clearCacheOnLoad' => 0,
|
||||||
'author' => 'Daniel Siepmann',
|
'author' => 'Daniel Siepmann',
|
||||||
'author_email' => 'coding@daniel-siepmann.de',
|
'author_email' => 'coding@daniel-siepmann.de',
|
||||||
'author_company' => '',
|
'author_company' => '',
|
||||||
'version' => '1.0.0',
|
'version' => '0.1.0',
|
||||||
'constraints' => [
|
'constraints' => [
|
||||||
'depends' => [
|
'depends' => [
|
||||||
'core' => '',
|
'core' => '',
|
||||||
],
|
],
|
||||||
'conflicts' => [],
|
'conflicts' => [],
|
||||||
'suggests' => [],
|
'suggests' => [
|
||||||
|
'dashboard' => '',
|
||||||
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue