RebelCode/booking-interface

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
    "name": "rebelcode/booking-interface",
    "description": "Interfaces for bookings.",
    "type": "library",
    "license": "GPL-3.0",
    "authors": [
        {
            "name": "RebelCode",
            "email": "dev@rebelcode.com"
        }
    ],
    "minimum-stability": "dev",
    "prefer-stable": true,
    "require": {
        "php": "^5.3 | ^7.0",
        "dhii/time-interface": "^0.1-alpha1",
        "dhii/factory-interface": "^0.1-alpha3",
        "dhii/data-identifiable-interface": "^0.1"
    },
    "require-dev": {
        "phpunit/phpunit": "^4.8",
        "ptrofimov/xpmock": "^1.1",
        "dhii/php-cs-fixer-config": "dev-php-5.3",
        "codeclimate/php-test-reporter": "<=0.3.2",
        "dhii/stringable-interface": "^0.1"
    },
    "autoload": {
        "psr-4": {
            "RebelCode\\Bookings\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "RebelCode\\Bookings\\UnitTest\\": "test/unit",
            "RebelCode\\Bookings\\FuncTest\\": "test/functional"
        }
    },
    "scripts": {
        "test": "phpunit",
        "csfix": "php-cs-fixer fix -vvv"
    },
    "extra": {
        "branch-alias": {
            "dev-develop": "0.3.x-dev"
        }
    }
}