PHPackages                             droogle/gci-php - 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. droogle/gci-php

ActiveLibrary[API Development](/categories/api)

droogle/gci-php
===============

Google Code-in API Task Management

1.0.4(7y ago)034MITPHP

Since Nov 19Pushed 7y ago1 watchersCompare

[ Source](https://github.com/Droogle/gci-php)[ Packagist](https://packagist.org/packages/droogle/gci-php)[ RSS](/packages/droogle-gci-php/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (1)Versions (6)Used By (0)

Google Code-in API SDK for PHP
==============================

[](#google-code-in-api-sdk-for-php)

This API can be used to access [Google Code-in](http://codein.withgoogle.com)'s Task API to request, update and modify task definition.

Drupal
------

[](#drupal)

This tool is maintained by the Drupal community. Special credit goes to [Shitiz Garg](https://github.com/Dragooon) who created this SDK.

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

[](#installation)

Library can be installed from composer using `composer require droogle/gci-php` or adding `droogle/gci-php` to your composer dependencies

Example
-------

[](#example)

This is a simplified example of handling tasks via the API

```
$client = new Droogle\GCI\Client('');
$taskList = $client->getTasks(2); // Get tasks from second page
foreach ($taskList as $task) {
    echo $task->getId() . ' ' . $task->getName(); // See src/TaskInterface.php for full function list
}
$nextPage = $taskList->getNextPage();

// Get the details of a single task
$id = 123; // Task ID
$task = $client->getTask($id);
echo $task->getDescription();

// Create a new task
$task = new Droogle\GCI\Task([
    'name' => 'Test task',
    'description' => 'Adding a new task',
    'status' => Droogle\GCI\TaskInterface::STATUS_DRAFTED,
    ...
]);
$client->createTask($task);
```

License
-------

[](#license)

The MIT License (See LICENSE)

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 64.3% 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 ~175 days

Total

5

Last Release

2808d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2955158?v=4)[Getulio Valentin Sánchez](/maintainers/GVSO)[@gvso](https://github.com/gvso)

---

Top Contributors

[![gvso](https://avatars.githubusercontent.com/u/2955158?v=4)](https://github.com/gvso "gvso (9 commits)")[![Dragooon](https://avatars.githubusercontent.com/u/551634?v=4)](https://github.com/Dragooon "Dragooon (5 commits)")

---

Tags

apisdkgooglecode-in

### Embed Badge

![Health badge](/badges/droogle-gci-php/health.svg)

```
[![Health](https://phpackages.com/badges/droogle-gci-php/health.svg)](https://phpackages.com/packages/droogle-gci-php)
```

###  Alternatives

[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3661.2M46](/packages/tencentcloud-tencentcloud-sdk-php)[resend/resend-php

Resend PHP library.

596.2M35](/packages/resend-resend-php)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.5M11](/packages/checkout-checkout-sdk-php)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

72287.1k1](/packages/mozex-anthropic-laravel)[clicksend/clicksend-php

301.6M11](/packages/clicksend-clicksend-php)

PHPackages © 2026

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