-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
misc: fix the saloon version in composer.json
- Loading branch information
1 parent
51b4280
commit 79631c4
Showing
1 changed file
with
48 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,51 @@ | ||
{ | ||
"name": "skagarwal/google-places-api", | ||
"description": "Google Places Api", | ||
"type": "library", | ||
"keywords": [ | ||
"Google", | ||
"Places", | ||
"Google Places", | ||
"Google Places Api", | ||
"Google Api" | ||
"name": "skagarwal/google-places-api", | ||
"description": "Google Places Api", | ||
"type": "library", | ||
"keywords": [ | ||
"Google", | ||
"Places", | ||
"Google Places", | ||
"Google Places Api", | ||
"Google Api" | ||
], | ||
"time": "2016-02-05", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Sachin Agarwal", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"illuminate/support": "^10.0|^11.0", | ||
"illuminate/container": "^10.0|^11.0", | ||
"guzzlehttp/guzzle": "^7.5", | ||
"saloonphp/saloon": "^3.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5.8|^10.5", | ||
"skagarwal/reflection": "~1.0" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
"src/helpers.php" | ||
], | ||
"time": "2016-02-05", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Sachin Agarwal", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"illuminate/support": "^10.0|^11.0", | ||
"illuminate/container": "^10.0|^11.0", | ||
"guzzlehttp/guzzle": "^7.5", | ||
"saloonphp/saloon": "v3.x-dev" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.5.8|^10.5", | ||
"skagarwal/reflection": "~1.0" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
"src/helpers.php" | ||
], | ||
"psr-4": { | ||
"SKAgarwal\\GoogleApi\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"SKAgarwal\\GoogleApi\\ServiceProvider" | ||
], | ||
"aliases": { | ||
"GooglePlaces": "SKAgarwal\\GoogleApi\\Facade" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
"psr-4": { | ||
"SKAgarwal\\GoogleApi\\": "src/" | ||
} | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"SKAgarwal\\GoogleApi\\ServiceProvider" | ||
], | ||
"aliases": { | ||
"GooglePlaces": "SKAgarwal\\GoogleApi\\Facade" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
} |