destructr/composer.json

39 lines
876 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": {
"php": ">=7.1",
2018-08-18 15:45:55 +00:00
"mofodojodino/profanity-filter": "^1.3",
2018-09-14 17:02:03 +00:00
"byjoby/flatrr": "^1"
2018-08-17 17:32:10 +00:00
},
"require-dev": {
"phpunit/phpunit": "^7",
2018-09-14 17:02:03 +00:00
"phpunit/dbunit": "^4"
2018-08-17 17:32:10 +00:00
},
"scripts": {
"test": [
"phpunit"
],
2018-09-14 18:17:54 +00:00
"test-mysql": [
"phpunit --testsuite MySQL"
2018-08-17 17:32:10 +00:00
],
2018-09-14 18:04:28 +00:00
"test-sqlite": [
"phpunit --testsuite SQLite"
2018-08-17 17:32:10 +00:00
]
},
"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-09-14 17:02:03 +00:00
}