PHPackages                             netcore/galerts - 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. netcore/galerts

ActivePackage

netcore/galerts
===============

Google Alerts management

1.0.1(8y ago)4574MITPHPPHP &gt;=5.4.0

Since Jun 20Pushed 8y ago6 watchersCompare

[ Source](https://github.com/netcore/galerts)[ Packagist](https://packagist.org/packages/netcore/galerts)[ Docs](http://netcore.lv)[ RSS](/packages/netcore-galerts/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Google Alerts manager
=====================

[](#google-alerts-manager)

### Installation

[](#installation)

1. Install package using command

```
    composer require netcore/galerts
```

2. Add service provider to your app.php file

```
    'providers' => [
        ...
        Netcore\GAlerts\GAlertsServiceProvider::class,
    ]
```

### Usage

[](#usage)

At the top of your controller/service put the following

```
    use Netcore\GAlerts\GAlert;
```

- Fetch all existing alerts

```
    GAlert::all();
```

- Find alert by data id

```
    GAlert::findByDataId('28764d5015595ee0:60bb6f517d7861db:com:en:US:L');
```

- Find alert by data id

```
    GAlert::findByKeyword('My alert');
```

- Create an alert

```
    $alert = new GAlert;

    $alert = $alert
        ->keyword('My alert')
        ->deliverToEmail()
        ->frequencyWeekly()
        ->language('lv')
        ->save();
```

- Update an existing alert

```
    $alert = GAlert::findByKeyword('My alert');

    $updated = $alert
        ->keyword('My new alert')
        ->deliverToFeed()
        ->update();
```

- Delete an alert

```
    $alert = GAlert::findByKeyowrd('My alert');

    $alert->delete();
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

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 ~20 days

Total

2

Last Release

3225d ago

### Community

Maintainers

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

---

Tags

googlenetcoregalertsgooglealerts

### Embed Badge

![Health badge](/badges/netcore-galerts/health.svg)

```
[![Health](https://phpackages.com/badges/netcore-galerts/health.svg)](https://phpackages.com/packages/netcore-galerts)
```

###  Alternatives

[google/auth

Google Auth Library for PHP

1.4k272.7M161](/packages/google-auth)[kreait/firebase-php

Firebase Admin SDK

2.4k39.7M72](/packages/kreait-firebase-php)[google/cloud

Google Cloud Client Library

1.2k16.2M54](/packages/google-cloud)[skagarwal/google-places-api

Google Places Api

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

PHPackages © 2026

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