slogsdon/php-flat-file

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "slogsdon/flat-file",
    "description": "Fast static-site generator / flat-file CMS",
    "type": "library",
    "license": "MIT",
    "authors": [
        {
            "name": "Shane Logsdon",
            "email": "shane@shanelogsdon.com"
        }
    ],
    "require": {
        "php": "~7.1",
        "league/commonmark": "^0.17.5",
        "spatie/yaml-front-matter": "^2.0",
        "symfony/console": "^4.1",
        "league/plates": "^3.3"
    },
    "require-dev": {
        "phpunit/phpunit": "^7.2",
        "squizlabs/php_codesniffer": "^3.3",
        "phpstan/phpstan": "^0.10.1"
    },
    "autoload": {
        "psr-4": {
            "FlatFile\\": "src/"
        },
        "files": [
            "src/Functions/content.php"
        ]
    },
    "autoload-dev": {
      "psr-4": {
        "FlatFile\\Tests\\": "test/"
      }
    },
    "bin": ["bin/flat-file"],
    "scripts": {
      "test": [
        "phpcs",
        "phpstan analyze src test --level=max --no-progress -vvv",
        "phpunit"
      ]
    }
}