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

ActiveLibrary[API Development](/categories/api)

dragooon/gci-php-sdk
====================

Google Code-in Task API SDK

061PHP

Since Mar 29Pushed 10y ago1 watchersCompare

[ Source](https://github.com/Dragooon/gci-php-sdk)[ Packagist](https://packagist.org/packages/dragooon/gci-php-sdk)[ RSS](/packages/dragooon-gci-php-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)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

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

[](#installation)

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

Example
-------

[](#example)

This is a simplified example of handling tasks via the API

```
$client = new Dragooon\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 Task([
    'name' => 'Test task',
    'description' => 'Testing a new task',
    'status' => Dragooon\GCI\TaskInterface::STATUS_DRAFTED,
]);
$client->createTask($task);
```

License
-------

[](#license)

The MIT License (See LICENSE)

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

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

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

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