gabbanaesteban/mastermind

PHP中的Mastermind游戏实现

v1.0.2 2021-02-03 07:24 UTC

This package is auto-updated.

Last update: 2024-09-10 08:26:08 UTC


README

Social Card of Mastermind

Mastermind

Latest Stable Version GitHub Workflow Status Total Downloads Latest Unstable Version License

本软件包是Mastermind游戏的实现。

需求

此软件包需要PHP 7.4或更高版本。

安装

您可以通过composer安装此软件包

composer require gabbanaesteban/mastermind

基本用法

require_once __DIR__ . '/vendor/autoload.php';

use Gabbanaesteban\Mastermind\Mastermind;
use Gabbanaesteban\Mastermind\Color;

$mastermind = Mastermind::withRandomCode();

//OR

$mastermind = new Mastermind([
    Color::YELLOW, Color::GREEN, Color::PINK, Color::YELLOW
]);

$mastermind->getHints([
    Color::BLUE, Color::BLUE, Color::YELLOW, Color::YELLOW
]); // ['white', 'black']

测试

您可以使用以下命令运行测试:

composer test

致谢

许可

MIT许可(MIT)。请参阅许可文件获取更多信息。