PHPackages                             hametuha/backilog-scraper - 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. hametuha/backilog-scraper

ActiveLibrary[API Development](/categories/api)

hametuha/backilog-scraper
=========================

A PHP Library for backlog API

1.0.0(10y ago)019MITPHPPHP &gt;=5.4

Since Feb 11Pushed 10y agoCompare

[ Source](https://github.com/hametuha/backlog-scraper)[ Packagist](https://packagist.org/packages/hametuha/backilog-scraper)[ RSS](/packages/hametuha-backilog-scraper/feed)WikiDiscussions master Synced today

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Backlog Scraper
===============

[](#backlog-scraper)

A scraper for [Backlog](http://www.backlog.jp/) via Backlog API.

HOW TO USE
----------

[](#how-to-use)

First of all, this library requires [composer](https://getcomposer.org/).

```
composer install

```

In your PHP file:

```
// Include auto loader.
require 'vendor/autoload.php';
// Initialize with local JSON file.
$request = new Hametuha\Backlog\Request( './config.json' );
// Get all milestones
$response = $request->get( "/api/v2/projects/MYPROJECT/versions" );
// Do something.
foreach( $response as $milestone ){
   // Do stuff.
}
```

You can find this library at Packagist. In your composer.json, write this.

```
"require": {
    "hametuha/backlog-scraper": "1.*",
}
```

REFERENCE
---------

[](#reference)

`Hametuha\Backlog\Request` class has these methods.

### \_\_constructor

[](#__constructor)

**@params** string|array `$config` JSON file path or array. Required parama is `apiKey` and `base`. You can get api kye [like this](http://www.backlog.jp/help/usersguide/personal-settings/userguide2378.html). `base` means your backlog's url. Normally, it will be like `https://your-account.backlog.jp`. Sample JSON will be:

```
{
  "apiKey": "yourapikeyitslenghtwillbeverylong",
  "base": "https://your-account.backlog.jp"
}

```

### get

[](#get)

Make GET request to Backlog.

**@params** string `$endpoint` Endpoint URL, for example `/api/v2/projects/project-name/version`. You can find it at [nulab Developers](http://developer.nulab-inc.com/ja/docs/backlog/aut).

**@params** array `$params` An request parameters. On GET request, it will be converted to query params.

### post

[](#post)

Same as `get` but it sends POST request.

### put

[](#put)

Same as `get` but it sends PUT request.

### patch

[](#patch)

Same as `get` but it sends PATCH request.

### delete

[](#delete)

Same as `get` but it sends DELETE request.

CHANGELOG
---------

[](#changelog)

- 1.0.0 First release.

LICENSE
-------

[](#license)

The MIT License (MIT) Copyright (c) 2016 Hametuha INC.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

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

Unknown

Total

1

Last Release

3792d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/84587?v=4)[Takahashi Fumiki](/maintainers/fumikito)[@fumikito](https://github.com/fumikito)

---

Top Contributors

[![fumikito](https://avatars.githubusercontent.com/u/84587?v=4)](https://github.com/fumikito "fumikito (1 commits)")

### Embed Badge

![Health badge](/badges/hametuha-backilog-scraper/health.svg)

```
[![Health](https://phpackages.com/badges/hametuha-backilog-scraper/health.svg)](https://phpackages.com/packages/hametuha-backilog-scraper)
```

###  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)
