ext_emconf.php 848 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /***************************************************************
  3. * Extension Manager/Repository config file for ext: "ot_admin"
  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' => 'Admin',
  11. 'description' => 'Admin commands for Typo3',
  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' => '8.7.0-10.4.99',
  20. ],
  21. 'conflicts' => [],
  22. 'suggests' => [],
  23. ],
  24. ];