GithubHelp home page GithubHelp logo

neuralnoise / php-datatype Goto Github PK

View Code? Open in Web Editor NEW

This project forked from josantonius/php-data-type

0.0 2.0 0.0 1.1 MB

PHP simple library for managing of data types

Home Page: https://josantonius.com

License: MIT License

PHP 100.00%

php-datatype's Introduction

PHP DataType library (DEPRECATED)

Latest Stable Version Latest Unstable Version License Codacy Badge Total Downloads Travis PSR2 PSR4 CodeCov

This library will no longer be supported. Alternatively, you can use the Validate library.

Versión en español

PHP simple library for managing of data types.



Requirements

This library is supported by PHP versions 5.6 or higher and is compatible with HHVM versions 3.0 or higher.

Installation

The preferred way to install this extension is through Composer.

To install PHP DataType library, simply:

$ composer require Josantonius/DataType

The previous command will only install the necessary files, if you prefer to download the entire source code you can use:

$ composer require Josantonius/DataType --prefer-source

You can also clone the complete repository with Git:

$ git clone https://github.com/Josantonius/PHP-DataType.git

Or install it manually:

Download DataType.php:

$ wget https://raw.githubusercontent.com/Josantonius/PHP-DataType/master/src/DataType.php

Available Methods

Available methods in this library:

- Convert object to array:

DataType::objectToArray($object);
Attribute Description Type Required Default
$object Variable of the object. object Yes

# Return (array) → object converted to array

Quick Start

To use this library with Composer:

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

use Josantonius\DataType\DataType;

Or If you installed it manually, use it:

require_once __DIR__ . '/DataType.php';

use Josantonius\DataType\DataType;

Usage

Example of use for this library:

$object = new \stdClass();

$object->name  = 'Josantonius';
$object->email = '[email protected]';
$object->url   = 'https://github.com/josantonius/PHP-DataType';

echo '<pre>'; var_dump(DataType::objectToArray($object)); echo '</pre>';

/*
array(3) {
  ["name"]=>
  string(11) "Josantonius"
  ["email"]=>
  string(20) "[email protected]"
  ["url"]=>
  string(36) "https://github.com/josantonius/PHP-DataType"
}
*/

Tests

To run tests you just need composer and to execute the following:

$ git clone https://github.com/Josantonius/PHP-DataType.git

$ cd PHP-DataType

$ composer install

Run unit tests with PHPUnit:

$ composer phpunit

Run PSR2 code standard tests with PHPCS:

$ composer phpcs

Run PHP Mess Detector tests to detect inconsistencies in code style:

$ composer phpmd

Run all previous tests:

$ composer tests

☑ TODO

  • Add new feature.
  • Improve tests.
  • Improve documentation.
  • Refactor code for disabled code style rules. See phpmd.xml and .php_cs.dist.

Contribute

If you would like to help, please take a look at the list of issues or the To Do checklist.

Pull requests

  • Fork and clone.
  • Run the command composer install to install the dependencies. This will also install the dev dependencies.
  • Run the command composer fix to excute code standard fixers.
  • Run the tests.
  • Create a branch, commit, push and send me a pull request.

Repository

The file structure from this repository was created with PHP-Skeleton.

License

This project is licensed under MIT license. See the LICENSE file for more info.

Copyright

2016 - 2018 Josantonius, josantonius.com

If you find it useful, let me know 😉

You can contact me on Twitter or through my email.

php-datatype's People

Contributors

josantonius avatar

Watchers

James Cloos avatar Starbuck avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.