123456789101112131415161718192021222324252627282930 |
- {
- "name": "chuckpac\/weather",
- "description": "A weather SDK",
- "license": "MIT",
- "authors": [
- {
- "name": "chenlong",
- "email": "chenlong@dalongyun.com"
- }
- ],
- "require": {
- "guzzlehttp/guzzle": "^7.2"
- },
- "autoload": {
- "psr-4": {
- "Chuckpac\\Weather\\": "src"
- }
- },
- "require-dev": {
- "phpunit/phpunit": "~5 || ~7",
- "mockery/mockery": "^1.1"
- },
- "extra": {
- "laravel": {
- "providers": [
- "Chuckpac\\Weather\\ServiceProvider"
- ]
- }
- }
- }
|