composer.json 619 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "chuckpac\/weather",
  3. "description": "A weather SDK",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "chenlong",
  8. "email": "chenlong@dalongyun.com"
  9. }
  10. ],
  11. "require": {
  12. "guzzlehttp/guzzle": "^7.2"
  13. },
  14. "autoload": {
  15. "psr-4": {
  16. "Chuckpac\\Weather\\": "src"
  17. }
  18. },
  19. "require-dev": {
  20. "phpunit/phpunit": "~5 || ~7",
  21. "mockery/mockery": "^1.1"
  22. },
  23. "extra": {
  24. "laravel": {
  25. "providers": [
  26. "Chuckpac\\Weather\\ServiceProvider"
  27. ]
  28. }
  29. }
  30. }