composer.json
{
"name": "dhii/data-container-abstract",
"description": "Abstract functionality for working with data containers.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dhii Team",
"email": "development@dhii.co"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.4 | ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/php-cs-fixer-config": "^0.1",
"codeclimate/php-test-reporter": "<=0.3.2",
"dhii/stringable-interface": "^0.1",
"dhii/data-container-interface": "^0.1 | ^0.2"
},
"suggest": {
"dhii/stringable-interface": "To be able to pass Stringable objects instead of strings",
"dhii/data-container-interface": "To be able to set and get containers"
},
"autoload": {
"psr-4": {
"Dhii\\Data\\Container\\": "src"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}