bvp / stadium
The BVP Stadium package for Boatrace.
Installs: 2 960
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- shimomo/helper: ^1.0
Requires (Dev)
- phpunit/phpunit: ^10.1 || ^11.1 || ^12.0
README
The BVP Stadium package is designed to retrieve information about Boatrace stadiums using identifiers, including Number, Name (Short, Hiragana, Katakana, English), and URL.
Installation
composer require bvp/stadium
Usage
<?php require __DIR__ . '/vendor/autoload.php'; use BVP\Stadium\Stadium; $response = Stadium::byNumber(12); // or $response = Stadium::byNumber([12]); $response = Stadium::byName('ボートレース住之江'); // or $response = Stadium::byName(['ボートレース住之江']); $response = Stadium::byShortName('住之江'); // or $response = Stadium::byShortName(['住之江']); $response = Stadium::byHiraganaName('すみのえ'); // or $response = Stadium::byHiraganaName(['すみのえ']); $response = Stadium::byKatakanaName('スミノエ'); // or $response = Stadium::byKatakanaName(['スミノエ']); $response = Stadium::byEnglishName('suminoe'); // or $response = Stadium::byEnglishName(['suminoe']); $response = Stadium::byUrl('suminoe'); // or $response = Stadium::byUrl(['suminoe']); var_dump($response); /*------------------------------ array(7) { 'number' => int(12) 'name' => string(27) "ボートレース住之江" 'short_name' => string(9) "住之江" 'hiragana_name' => string(30) "ぼーとれーすすみのえ" 'katakana_name' => string(30) "ボートレーススミノエ" 'english_name' => string(7) "suminoe" 'url' => string(32) "https://www.boatrace-suminoe.jp/" } ------------------------------*/
License
The BVP Stadium package is open source software licensed under the MIT license.