ext_emconf.php 1005 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /***************************************************************
  3. * Extension Manager/Repository config file for ext: "ot_stats"
  4. *
  5. * Manual updates:
  6. * Only the data in the array - anything else is removed by next write.
  7. * "version" and "dependencies" must not be touched!
  8. ***************************************************************/
  9. $EM_CONF[$_EXTKEY] = [
  10. 'title' => 'Statistics',
  11. 'description' => "Suivi des statistiques d'utilisation des sites Typo3 par Opentalent",
  12. 'category' => 'services',
  13. 'author' => 'Olivier Massot',
  14. 'author_email' => 'olivier.massot@2iopenservice.fr',
  15. 'state' => 'stable',
  16. 'version' => '1.0.0', //see ot_core/ext_emconf.php to get the current ot extensions version
  17. 'constraints' => [
  18. 'depends' => [
  19. 'typo3' => '10.4.00-11.5.99',
  20. 'flux' => '9.3.0-9.7.99',
  21. 'vhs' => '6.0.0-6.1.99',
  22. 'ot_core' => '*'
  23. ],
  24. 'conflicts' => [],
  25. 'suggests' => [],
  26. ],
  27. ];