PHPackages                             bvp/mikuni-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. bvp/mikuni-scraper

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

bvp/mikuni-scraper
==================

Mikuni Scraper for Boatrace Venture Project

5.3.0(1y ago)01MITPHPPHP ^8.2CI passing

Since Aug 15Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/shimomo/bvp-mikuni-scraper)[ Packagist](https://packagist.org/packages/bvp/mikuni-scraper)[ RSS](/packages/bvp-mikuni-scraper/feed)WikiDiscussions 5.x Synced 1w ago

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

BVP Mikuni Scraper
==================

[](#bvp-mikuni-scraper)

[![test](https://github.com/shimomo/bvp-mikuni-scraper/actions/workflows/test.yml/badge.svg)](https://github.com/shimomo/bvp-mikuni-scraper/actions/workflows/test.yml)[![codecov](https://camo.githubusercontent.com/4d06752a61b0d1b5205375c06f715874204d765de94f5fe1a1310e2b4a7756b0/68747470733a2f2f636f6465636f762e696f2f67682f7368696d6f6d6f2f6276702d6d696b756e692d736372617065722f67726170682f62616467652e7376673f746f6b656e3d4e44323948375a485441)](https://codecov.io/gh/shimomo/bvp-mikuni-scraper)[![php](https://camo.githubusercontent.com/9a2f07509743ffebc511011af45f344ccbdcaa8f8090769e350425a19c6cb42e/68747470733a2f2f706f7365722e707567782e6f72672f6276702f6d696b756e692d736372617065722f726571756972652f706870)](https://packagist.org/packages/bvp/mikuni-scraper)[![stable](https://camo.githubusercontent.com/8152df985d99a9ba13da92aef8632dfb89701c972667b0234b1da68f8f33952a/68747470733a2f2f706f7365722e707567782e6f72672f6276702f6d696b756e692d736372617065722f762f737461626c65)](https://packagist.org/packages/bvp/mikuni-scraper)[![license](https://camo.githubusercontent.com/e57ca5eeb115051809dede3f5b4ced164c509a780d9baf069f7bf7acf143f6ae/68747470733a2f2f706f7365722e707567782e6f72672f6276702f6d696b756e692d736372617065722f6c6963656e7365)](https://packagist.org/packages/bvp/mikuni-scraper)

BVP Mikuni Scraper は、ボートレース三国の公式サイトから選手コメント、記者予想、オリジナル展示タイムをスクレイピングするための PHP ライブラリです。

📦 Requirements
--------------

[](#-requirements)

- PHP: ^8.2
- bvp/scraper-core: ^5.3
- nesbot/carbon: ^2.63 || ^3.0

💾 Installation
--------------

[](#-installation)

```
composer require bvp/mikuni-scraper
```

⚡ Usage
-------

[](#-usage)

### サポートメソッド一覧

[](#サポートメソッド一覧)

メソッド説明引数`Scraper::scrapeComments(`
 `$raceNumber,`
 `$raceDate = null`
`)`選手コメントを取得`$raceNumber` : 1〜12
`$raceDate` : Carbon対応日付文字列または
 Carbonインスタンス（省略時は当日）`Scraper::scrapeForecasts(`
 `$raceNumber,`
 `$raceDate = null`
`)`記者予想を取得同上`Scraper::scrapeTimes(`
 `$raceNumber,`
 `$raceDate = null`
`)`オリジナル展示タイムを取得同上**$raceDate の例**

- `'2025-01-01'`
- `'2025/01/01'`
- `'yesterday'`
- `Carbon::now()->subDay()`

### 基本的な使い方

[](#基本的な使い方)

```
