haldayne/boost

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "haldayne/boost",
    "description": "Expansion pack for PHP string and array functions. Makes the common stuff easy & legible.",
    "license": "MIT",
    "authors": [
        {
            "name": "Bishop Bettini", "email": "bishop@php.net"
        }
    ],
    "require": {
        "php": "^5.5.0 || ^7.0",
        "haldayne/fox": "^1.0"
    },
    "autoload": {
        "classmap": [ "src" ],
        "psr-4": {
            "Haldayne\\Boost\\": "src/"
        },
        "files": [
            "src/functions/bytes.php",
            "src/functions/ini_size_to_bytes.php"
        ]
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.2.x-dev"
        }
    },
    "config": {
        "preferred-install": "dist"
    },
    "minimum-stability": "stable",
    "require-dev": {
        "phpunit/phpunit": "^5.0"
    },
    "autoload-dev": {
        "psr-4": {
            "Haldayne\\Boost\\": "tests/"
        }
    }
}