destructr/composer.json
2019-03-06 11:59:18 -07:00

33 lines
834 B
JSON

{
"name": "byjoby/destructr",
"description": "Interfaces and abstract classes for managing CRUD through straightforward PHP classes. Primarily focused on creating objects that yield clean readable code where they are used.",
"type": "library",
"license": "MIT",
"authors": [{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}],
"require": {
"php": ">=5.3.3",
"fpdo/fluentpdo": "^1.1"
},
"autoload": {
"psr-4": {
"Digraph\\DataObject\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Digraph\\DataObject\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"phpunit/dbunit": "^1.4"
},
"scripts": {
"test": [
"phpunit"
]
}
}