php-kitchen/yii2-domain

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "php-kitchen/yii2-domain",
    "description": "Implementation of DDD key concepts for Yii2.",
    "type": "library",
    "license": "MIT",
    "keywords": [
        "DDD",
        "Domain Driven Design",
        "Entity",
        "Repository",
        "Strategy",
        "Finder",
        "Specification",
        "Yii2",
        "Clean code"
    ],
    "authors": [
        {
            "name": "Dmitry Kolodko",
            "email": "prowwid@gmail.com"
        }
    ],
    "minimum-stability": "stable",
    "require": {
        "php": "^7.1",
        "yiisoft/yii2": "^2.0",
        "php-kitchen/yii2-di": "^0.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^6.5",
        "php-kitchen/code-specs": "^4.0",
        "satooshi/php-coveralls": "^1.0"
    },
    "suggest": {
        "yii2tech/ar-softdelete": "Needed to support 'Recoverable' functionality."
    },
    "autoload": {
        "psr-4": {
            "PHPKitchen\\Domain\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "PHPKitchen\\Domain\\Specs\\": "specs"
        }
    }
}