2017 © Pedro Peláez
 

library sudoxu

Sudoxu is a simple sudoku creator class

image

frnxstd/sudoxu

Sudoxu is a simple sudoku creator class

  • Thursday, January 25, 2018
  • by frnxstd
  • Repository
  • 2 Watchers
  • 1 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Sudoxu

Scrutinizer Code Quality Build Status Code Intelligence Status, (*1)

Sudoxu is a light and easy to use PHP sudoku genarator class. It's able to create up to 6^2sq sudokus easily., (*2)

http://sudoxu.com, (*3)

Installation

Run the command in your project folder:, (*4)

composer require frnxstd/sudoxu

Example usage

You can create it as ARRAY, JSON or SERIALIZED., (*5)

<?php
require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload

use Sudoxu\Sudoku;

/** @var Sudoku $Sudoku */
$Sudoku    = new Sudoku();

// Example 1 Returns JSON
$json      = $Sudoku->generate('json');

// Example 2 Returns an array
$array     = $Sudoku->generate('array');

// Example 3 Returns Serialized
$serialize = $Sudoku->generate('serialize');

The Versions

25/01 2018

v1.0

1.0.0.0 http://sudoxu.com

Sudoxu is a simple sudoku creator class

  Sources   Download

MIT

The Requires

  • php >=5.3

 

25/01 2018

dev-master

9999999-dev http://sudoxu.com

Sudoxu is a simple sudoku creator class

  Sources   Download

MIT

The Requires

  • php >=5.3