iJackUA/einfach-operation

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "einfach/operation",
  "description": "Proof of concept: Orchestration objects for business logic implemented with Railway approach (Railway Oriented Programming in PHP)",
  "type": "library",
  "license": "MIT",
  "authors": [
    {
      "name": "Yevhen Kuzminov",
      "email": "kyzminov@gmail.com",
      "homepage": "http://stdout.in"
    }
  ],
  "minimum-stability": "dev",
  "require": {
    "php": ">=7.1.0"
  },
  "require-dev": {
    "phpunit/phpunit": "^6.0",
    "squizlabs/php_codesniffer": "^2.3"
  },
  "autoload": {
    "psr-4": {
      "einfach\\operation\\": "src"
    }
  },
  "autoload-dev": {
    "psr-4": {
      "einfach\\operation\\test\\": "tests"
    },
    "files": [
      "src/response/functions.php"
    ]
  },
  "scripts": {
    "test": "./vendor/bin/phpunit"
  }
}