helionogueir/typeboxing

Specific data types and tools for hitting type

Installs: 827

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/helionogueir/typeboxing

v1.1.0 2016-12-09 18:20 UTC

This package is not auto-updated.

Last update: 2025-09-22 18:49:28 UTC


README

Specific data types and tools for hitting type.

Installation

Composer (https://getcomposer.org/) and (https://packagist.org/)

composer require helionogueir/typeboxing

Usage

helionogueir\typeBoxing\parse\ObjectToArray

Parse object to array

use stdClass;
use helionogueir\typeBoxing\parse\ObjectToArray;
$Object = new stdClass();
$Object->d1 = new stdClass();
$Object->d1->d2 = null;
$array = (new ObjectToArray())->parse($Object);

TDD (Test Driven Development)

PHPUnit (https://phpunit.de/)

phpunit -c ./typeboxing/tests/unit.xml