stk2k/file-system

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "stk2k/file-system",
  "description": "A simle file system classes",
  "keywords": ["PHP","FieSystem"],
  "homepage": "https://github.com/stk2k/file-system",
  "type": "library",
  "license": "MIT",
  "authors": [
    {
      "name": "Katsuki Shuto",
      "email": "stk2k@sazysoft.com"
    }
  ],
  "require": {
    "php": ">=7.2",
    "ext-json": "*"
  },
  "require-dev": {
    "phpunit/phpunit": "^8.5.15",
    "php-coveralls/php-coveralls": "^2.0",
    "mikey179/vfsstream": "^1.6.8"
  },
  "autoload": {
    "psr-4": {
      "stk2k\\filesystem\\": "src/"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "stk2k\\filesystem\\test\\": "test/",
      "stk2k\\filesystem\\test\\classes\\": "test/classes/"
    }
  }
}