Database/composer.json

35 lines
839 B
JSON
Raw Permalink Normal View History

2018-11-15 18:10:52 +00:00
{
"name": "fuzeworks/database",
"description": "FuzeWorks Framework Database Component",
2021-11-29 21:58:24 +00:00
"homepage": "https://i15.nl/fuzeworks",
2018-11-15 18:10:52 +00:00
"license": ["MIT"],
"authors": [
{
2021-11-29 21:58:24 +00:00
"name": "Abel Hoogeveen",
"homepage": "https://i15.nl"
2018-11-15 18:10:52 +00:00
}
],
"require": {
"php": ">=8.1.0",
2021-11-29 21:58:24 +00:00
"fuzeworks/core": "~1.3.0",
"fuzeworks/mvcr": "~1.3.0"
2018-11-15 18:10:52 +00:00
},
"require-dev": {
"phpunit/phpunit": "^9",
"fuzeworks/tracycomponent": "~1.3.0",
"mongodb/mongodb": "~1.15.0",
"ext-pdo": "*",
"ext-mongodb": "*"
},
"suggest": {
"mongodb/mongodb": "For using MongoDB databases with this component",
"ext-pdo": "For using PDO endpoints with this component",
"ext-mongodb": "For using MongoDB endpoints with this component"
2018-11-15 18:10:52 +00:00
},
"autoload": {
"psr-4": {
"FuzeWorks\\": "src/FuzeWorks/"
}
}
}