composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "thinkcmf/thinkcmf",
  3. "description": "ThinkCMF based on ThinkPHP 5.1 , it is a free and open source Content Management Framework(CMF)",
  4. "type": "project",
  5. "keywords": [
  6. "cmf",
  7. "thinkcmf",
  8. "framework",
  9. "thinkphp",
  10. "ORM"
  11. ],
  12. "homepage": "http://www.thinkcmf.com/",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "thinkcmf",
  17. "email": "catman@thinkcmf.com"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.6.0",
  22. "ext-json": "*",
  23. "ext-curl": "*",
  24. "ext-pdo": "*",
  25. "topthink/think-helper": "^1.0",
  26. "topthink/think-image": "^1.0",
  27. "thinkcmf/cmf-app": "~5.1.0",
  28. "thinkcmf/cmf-api": "~5.1.0",
  29. "jaeger/querylist": "^4.2"
  30. },
  31. "extra": {
  32. "think-path": "vendor/thinkphp",
  33. "think-config": "data/config"
  34. },
  35. "config": {
  36. "vendor-dir": "vendor"
  37. },
  38. "repositories": {
  39. "packagist": {
  40. "type": "composer",
  41. "url": "https://packagist.phpcomposer.com"
  42. }
  43. }
  44. }