destructr/composer.json

34 lines
834 B
JSON
Raw Normal View History

2018-08-17 17:32:10 +00:00
{
2018-08-17 17:36:09 +00:00
"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.",
2018-08-17 17:32:10 +00:00
"type": "library",
"license": "MIT",
"authors": [{
"name": "Joby Elliott",
"email": "joby@byjoby.com"
}],
2018-08-17 17:32:10 +00:00
"require": {
"php": ">=5.3.3",
"fpdo/fluentpdo": "^1.1"
2018-08-17 17:32:10 +00:00
},
"autoload": {
"psr-4": {
"Digraph\\DataObject\\": "src/"
2018-08-17 17:32:10 +00:00
}
},
"autoload-dev": {
"psr-4": {
"Digraph\\DataObject\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"phpunit/dbunit": "^1.4"
},
"scripts": {
"test": [
"phpunit"
]
2018-08-17 17:32:10 +00:00
}
2018-09-14 17:02:03 +00:00
}