2018-08-17 17:32:10 +00:00
{
2018-08-17 17:36:09 +00:00
"name" : "byjoby/destructr" ,
2019-03-06 18:27:37 +00:00
"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" ,
2019-03-06 18:27:37 +00:00
"authors" : [ {
"name" : "Joby Elliott" ,
"email" : "joby@byjoby.com"
} ] ,
2018-08-17 17:32:10 +00:00
"require" : {
2019-03-06 18:27:37 +00:00
"php" : ">=5.3.3" ,
"fpdo/fluentpdo" : "^1.1"
2018-08-17 17:32:10 +00:00
} ,
"autoload" : {
"psr-4" : {
2019-03-06 18:27:37 +00:00
"Digraph\\DataObject\\" : "src/"
2018-08-17 17:32:10 +00:00
}
} ,
"autoload-dev" : {
"psr-4" : {
2019-03-06 18:27:37 +00:00
"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
}