ext_emconf.php 763 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. $EM_CONF['speedbase'] = [
  3. 'title' => 'speedbase',
  4. 'description' => 'Demonstrate how fast a PHP class can be loaded into TYPO3',
  5. 'category' => 'templates',
  6. 'constraints' => [
  7. 'depends' => [
  8. 'typo3' => '10.4.0-12.5.99',
  9. 'fluid_styled_content' => '10.4.0-12.5.99',
  10. 'rte_ckeditor' => '10.4.0-12.5.99',
  11. ],
  12. 'conflicts' => [
  13. ],
  14. ],
  15. 'autoload' => [
  16. 'psr-4' => [
  17. 'Meramo\\Speedbase\\' => 'Classes',
  18. ],
  19. ],
  20. 'state' => 'stable',
  21. 'uploadfolder' => 0,
  22. 'createDirs' => '',
  23. 'clearCacheOnLoad' => 1,
  24. 'author' => 'Kerstin',
  25. 'author_email' => 'k.sieren@meramo.de',
  26. 'author_company' => 'Meramo',
  27. 'version' => '1.1.0',
  28. ];