cmgmyr/title-formatter

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "cmgmyr/title-formatter",
    "description": "A simple to use text formatter, primarily used for page/blog titles",
    "license": "MIT",
    "authors": [
        {
            "name": "Chris Gmyr",
            "email": "cmgmyr@gmail.com",
            "homepage": "https://github.com/cmgmyr",
            "role": "Developer"
        }
    ],
    "require": {
        "php" : "^8.0",
        "ext-mbstring" : "*"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.2",
        "phpunit/phpunit": "^9.3.3"
    },
    "autoload": {
        "psr-4": {
            "Cmgmyr\\TitleFormatter\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Cmgmyr\\TitleFormatter\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test": "vendor/bin/phpunit",
        "format": "vendor/bin/php-cs-fixer fix"
    },
    "config": {
        "sort-packages": true
    }
}