destructr/composer.json

40 lines
934 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",
2018-08-17 17:32:10 +00:00
"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": {
2018-08-18 15:45:55 +00:00
"mofodojodino/profanity-filter": "^1.3",
"byjoby/flatrr": "dev-master"
2018-08-17 17:32:10 +00:00
},
"require-dev": {
2018-08-22 02:19:34 +00:00
"phpunit/phpunit": "^6.5",
"phpunit/dbunit": "^3"
2018-08-17 17:32:10 +00:00
},
"scripts": {
"test": [
"phpunit"
],
"test-local": [
"phpunit --testsuite Local"
],
"test-db": [
"phpunit --testsuite DB"
],
"test-legacydb": [
"phpunit --testsuite LegacyDB"
]
},
"autoload": {
"psr-4": {
2018-08-17 22:32:26 +00:00
"Destructr\\": "src/"
2018-08-17 17:32:10 +00:00
}
},
"autoload-dev": {
"psr-4": {
2018-08-17 22:32:26 +00:00
"Destructr\\": "tests/"
2018-08-17 17:32:10 +00:00
}
}
2018-08-18 15:45:55 +00:00
}