PHPackages                             think.studio/laravel-gdc-info - 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. think.studio/laravel-gdc-info

ActiveLibrary

think.studio/laravel-gdc-info
=============================

GDC info parser

1.1.1(2y ago)020MITPHPPHP ^8.1

Since May 17Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dev-think-one/laravel-gdc-info)[ Packagist](https://packagist.org/packages/think.studio/laravel-gdc-info)[ Docs](https://github.com/dev-think-one/laravel-gdc-info)[ RSS](/packages/thinkstudio-laravel-gdc-info/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (4)Used By (0)

GDC Info checker
================

[](#gdc-info-checker)

[![Packagist License](https://camo.githubusercontent.com/8e23bd9ac868d08dbd3977e3ff7dd70c259ee58654e1d83296d9f253bb12a6e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6764632d696e666f3f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/8e23bd9ac868d08dbd3977e3ff7dd70c259ee58654e1d83296d9f253bb12a6e0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7468696e6b2e73747564696f2f6c61726176656c2d6764632d696e666f3f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/e87d3373e4a147bfb90b4ed98f95f0964ab0291d131938b61c36ebfd2c308dce/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7468696e6b2e73747564696f2f6c61726176656c2d6764632d696e666f)](https://packagist.org/packages/think.studio/laravel-gdc-info)[![Total Downloads](https://camo.githubusercontent.com/e6f6e8e6b2d50b9e42c5c11dcf0a4dd6e3f985e0e2533bc0652553bc509405cc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7468696e6b2e73747564696f2f6c61726176656c2d6764632d696e666f)](https://packagist.org/packages/think.studio/laravel-gdc-info)[![Build Status](https://camo.githubusercontent.com/0921fc5d1b8904411f49762d1408554d0c664b27aacc9c097a4e1129d779d54a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6764632d696e666f2f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-gdc-info/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/01bc796eb8cfabfcdbcce32cde468c90de58046ccb3c82e8c6f68f7eb898a9ca/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6764632d696e666f2f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-gdc-info/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/39ce22628785c9eba1d3648e259031ac9d198b1b37b7e0aabfb13057ab456f86/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f6465762d7468696e6b2d6f6e652f6c61726176656c2d6764632d696e666f2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/dev-think-one/laravel-gdc-info/?branch=main)

GDC info parser

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

[](#installation)

Install the package via composer:

```
composer require think.studio/laravel-gdc-info
```

Optionally you can publish the config file with:

```
php artisan vendor:publish --provider="GDCInfo\ServiceProvider" --tag="config"
```

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

[](#installation-1)

1. Create settings table

```
public function up() {
    Schema::create( config('gdc-info.tables.gdc_info'), function ( Blueprint $table ) {
        \GDCInfo\MigrationHelper::defaultColumns($table);
    } );
}
```

2. Set your model in AppServiceProvider if you need

```
namespace App\Models;

class GDCInfo extends \GDCInfo\Models\GDCInfo
{
}
```

```
public function register()
{
    GDCChecker::useModel(\App\Models\GDCInfo::class);
}
```

Usage
-----

[](#usage)

Direct call (you can use it without model and table):

```
$gdcInfo = GDCInfoFromHtmlFlow::make()->get('060702');
// or
$gdcInfo = GDCInfoFromHtmlFlow::make()->get(60702);

$gdcInfo->gdc();
$gdcInfo->firstName();
$gdcInfo->lastName();
$gdcInfo->status();
$gdcInfo->registrantType();
$gdcInfo->qualifications();
$gdcInfo->firstRegisteredOn();
$gdcInfo->currentPeriodFrom();
$gdcInfo->additionalInfo();
```

Using Model:

```
$gdcInfo = GDCInfo::findOrFetch(60702);

$gdcInfo->getKey();
$gdcInfo->last_name;
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Total

3

Last Release

963d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/53f93fa87d58f33d106de6bd5e2946f8a345ebfaee146360746056cb134a15a0?d=identicon)[think.studio](/maintainers/think.studio)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (6 commits)")

---

Tags

laravelgdc

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/thinkstudio-laravel-gdc-info/health.svg)

```
[![Health](https://phpackages.com/badges/thinkstudio-laravel-gdc-info/health.svg)](https://phpackages.com/packages/thinkstudio-laravel-gdc-info)
```

###  Alternatives

[slowlyo/owl-admin

基于 laravel、amis 开发的后台框架~

61214.2k26](/packages/slowlyo-owl-admin)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

226102.4k](/packages/erag-laravel-disposable-email)[highsolutions/eloquent-sequence

A Laravel package for easy creation and management sequence support for Eloquent models with elastic configuration.

121130.3k](/packages/highsolutions-eloquent-sequence)[glhd/linen

21135.6k](/packages/glhd-linen)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)

PHPackages © 2026

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