composer.json 557 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "meramo/crazytermsapi",
  3. "type": "typo3-cms-extension",
  4. "description": "Rest-Api Extension for EXT:begriffmgt based on EXT:nnrestapi",
  5. "authors": [],
  6. "require": {
  7. "typo3/cms-core": "^9.5 || ^10.0 || ^11.0",
  8. "nng/nnrestapi": "^1.0",
  9. "nng/nnhelpers": "^1.5"
  10. },
  11. "autoload": {
  12. "psr-4": {
  13. "Meramo\\Crazytermsapi\\": "Classes"
  14. }
  15. },
  16. "autoload-dev": {
  17. "psr-4": {
  18. "Meramo\\Crazytermsapi\\Tests\\": "Tests"
  19. }
  20. },
  21. "extra": {
  22. "typo3/cms": {
  23. "extension-key": "crazytermsapi"
  24. }
  25. }
  26. }