PHPackages                             sfneal/google-places - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. sfneal/google-places

ActiveLibrary[API Development](/categories/api)

sfneal/google-places
====================

Actions &amp; Controllers for interacting with the Google Places API through Laravel applications

1.2.1(4y ago)03.8kMITPHPPHP &gt;=7.1

Since Aug 21Pushed 4y ago1 watchersCompare

[ Source](https://github.com/sfneal/google-places)[ Packagist](https://packagist.org/packages/sfneal/google-places)[ Docs](https://github.com/sfneal/google-places)[ RSS](/packages/sfneal-google-places/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)Dependencies (5)Versions (18)Used By (0)

Google Places
=============

[](#google-places)

[![Packagist PHP support](https://camo.githubusercontent.com/dd4069b33b6ad8ed519e5e7cc8493007882dc296a5aafe18a86acbf5327a125b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f73666e65616c2f676f6f676c652d706c61636573)](https://packagist.org/packages/sfneal/google-places)[![Latest Version on Packagist](https://camo.githubusercontent.com/54efd45752e92b809c65d58f59ef51bd10d8c19da50fc36e5011b88649f90641/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73666e65616c2f676f6f676c652d706c616365732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sfneal/google-places)[![StyleCI](https://camo.githubusercontent.com/749b329191a8f10e03cf5cfabe0facc3717ddd349e589431a344825e3f82f1df/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3238393332303433342f736869656c643f6272616e63683d6d6173746572)](https://github.styleci.io/repos/289320434?branch=master)[![Build Status](https://camo.githubusercontent.com/96adf81539fe8d3365cd36dac456ec63e501669f1f7462f59209477049835b69/68747470733a2f2f7472617669732d63692e636f6d2f73666e65616c2f676f6f676c652d706c616365732e7376673f6272616e63683d6d6173746572267374796c653d666c61742d737175617265)](https://travis-ci.com/sfneal/google-places)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/2fd3ed390b39e5333e4fe75ebf6113a3f584290381f316800b0ddc460091b4fc/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f73666e65616c2f676f6f676c652d706c616365732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/sfneal/google-places/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/8e58cc9e61fd8e281b5ad4f2486725c76ca622f3a819121687cc3d205e2ddac4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73666e65616c2f676f6f676c652d706c616365732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sfneal/google-places)

Actions &amp; Controllers for interacting with the Google Places API through Laravel applications

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require sfneal/google-places
```

Usage
-----

[](#usage)

Publish the config to overwrite env values.

```
php artisan vendor:publish --provider="Sfneal\Healthy\Providers\HealthyServiceProvider"
```

Add the routes to your application.

```
Route::prefix('')->group(base_path('vendor/sfneal/google-places/routes/google-places.php'));
```

Autocomplete places queries by inputting a part of the place's name.

```
/places/city?q=boston

>>> Array
(
    [total_count] => 5
    [items] => Array
        (
            [0] => Array
                (
                    [id] => Boston, MA
                    [text] => Boston, MA
                    [place_id] => ChIJGzE9DS1l44kRoOhiASS_fHg
                )

            [1] => Array
                (
                    [id] => Boston, NY
                    [text] => Boston, NY
                    [place_id] => ChIJNfL3CvAB04kRz5mZnjI-6p0
                )

            [2] => Array
                (
                    [id] => Boston, OH
                    [text] => Boston, OH
                    [place_id] => ChIJcaM-YbLfMIgRrdGkTgGt2Og
                )

            [3] => Array
                (
                    [id] => New Boston, NH
                    [text] => New Boston, NH
                    [place_id] => ChIJDW6Uqegz4okRZT90sRNsDlk
                )

            [4] => Array
                (
                    [id] => Boston Corner, NY
                    [text] => Boston Corner, NY
                    [place_id] => ChIJU_hSBC2B3YkROSlb42LQxoM
                )

        )

)
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Stephen Neal](https://github.com/sfneal)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

PHP Package Boilerplate
-----------------------

[](#php-package-boilerplate)

This package was generated using the [PHP Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~22 days

Recently: every ~27 days

Total

16

Last Release

1758d ago

Major Versions

0.6.0 → 1.0.02021-02-08

PHP version history (4 changes)0.1.0PHP ^7.1

0.3.0PHP ^7.0

0.4.0PHP &gt;=7.0

0.4.3PHP &gt;=7.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/ec5fdf3b9d2183ae9c777e4aed46fd5cfd9aa4789cd05c669e5907de0b8c865c?d=identicon)[sfneal](/maintainers/sfneal)

---

Top Contributors

[![sfneal](https://avatars.githubusercontent.com/u/23200215?v=4)](https://github.com/sfneal "sfneal (112 commits)")

---

Tags

google placessfneal

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sfneal-google-places/health.svg)

```
[![Health](https://phpackages.com/badges/sfneal-google-places/health.svg)](https://phpackages.com/packages/sfneal-google-places)
```

###  Alternatives

[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[skagarwal/google-places-api

Google Places Api

1913.0M8](/packages/skagarwal-google-places-api)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
