composer.json 767 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.4.0",
  20. "topthink/framework": "~5.0.0",
  21. "zoujingli/ip2region": "^1.0",
  22. "phpoffice/phpspreadsheet": "1.8.2"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "app\\": "application/"
  27. }
  28. },
  29. "extra": {
  30. "think-path": "thinkphp"
  31. },
  32. "config": {
  33. "preferred-install": "dist"
  34. },
  35. "repositories": {
  36. "packagist": {
  37. "type": "composer",
  38. "url": "https://packagist.phpcomposer.com"
  39. }
  40. }
  41. }