composer.json 500 B

1234567891011121314151617181920212223
  1. {
  2. "name": "lvht/geohash",
  3. "type": "library",
  4. "description": "geohash like python-geohash",
  5. "keywords": ["geohash"],
  6. "homepage": "http://github.com/lvht/geohash",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "吕海涛",
  11. "email": "git@lvht.net",
  12. "homepage": "https://github.com/lvht"
  13. }
  14. ],
  15. "require": {
  16. "php": ">=5.4.0"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "Lvht\\": "src"
  21. }
  22. }
  23. }