ext_emconf.php 975 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /***************************************************************
  3. * Extension Manager/Repository config file for ext: "ot_optimizer"
  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' => 'Optimizer',
  11. 'description' => 'Optimize the Typo3 FE and BE behaviour for large amount of sites',
  12. 'category' => 'services',
  13. 'author' => 'Olivier Massot',
  14. 'author_email' => 'olivier.massot@2iopenservice.fr',
  15. 'state' => 'stable',
  16. 'uploadfolder' => 0,
  17. 'createDirs' => '',
  18. 'clearCacheOnLoad' => 0,
  19. 'version' => '1.0.0', //see ot_core/ext_emconf.php to get the current ot extensions version
  20. 'constraints' => [
  21. 'depends' => [
  22. 'typo3' => '8.7.0-10.4.99',
  23. ],
  24. 'conflicts' => [],
  25. 'suggests' => [],
  26. ],
  27. ];