您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

composer.json 214B

12345678910111213
  1. {
  2. "config" : {
  3. "vendor-dir": ".",
  4. "optimize-autoloader": true,
  5. "classmap-authoritative": true,
  6. "autoloader-suffix": "UserStatus"
  7. },
  8. "autoload" : {
  9. "psr-4": {
  10. "OCA\\UserStatus\\": "../lib/"
  11. }
  12. }
  13. }