destructr/composer.json
2018-08-18 09:45:55 -06:00

41 lines
No EOL
958 B
JSON

{
"name": "byjoby/destructr",
"description": "A library for storing a mix of structured and unstructured data in relational databases",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1",
"mofodojodino/profanity-filter": "^1.3",
"byjoby/flatrr": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7",
"phpunit/dbunit": "^4.0"
},
"scripts": {
"test": [
"phpunit"
],
"test-local": [
"phpunit --testsuite Local"
],
"test-db": [
"phpunit --testsuite DB"
],
"test-legacydb": [
"phpunit --testsuite LegacyDB"
]
},
"autoload": {
"psr-4": {
"Destructr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Destructr\\": "tests/"
}
}
}