composer.json 551 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "thinkcmf/cmf-appstore",
  3. "description": "The ThinkCMF App Store Package",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "catman",
  8. "email": "catman@thinkcmf.com"
  9. }
  10. ],
  11. "require": {
  12. "chamilo/pclzip": "^2.8"
  13. },
  14. "extra": {
  15. "think": {
  16. "services": [
  17. "app\\admin\\AppStoreService"
  18. ]
  19. }
  20. },
  21. "autoload": {
  22. "psr-4": {
  23. "app\\admin\\": "src"
  24. },
  25. "files": [
  26. ]
  27. }
  28. }