composer.json
{
"name": "dhii/data-tree-interface",
"description": "Interfaces for objects that can make up a tree",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"require": {
"php": "^5.3.9 | ^7.0"
},
"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"
},
"autoload": {
"psr-4": {
"Dhii\\Data\\Tree\\": "src"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
}
}