pandorafms/pandora_console/composer.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2018-10-04 11:43:08 +02:00
{
2019-10-17 15:31:17 +02:00
"name": "pandorafms/console",
"description": "Pandora Flexible Monitoring System ",
"authors": [
{
"name": "Artica",
2023-06-23 23:44:33 +02:00
"email": "info@pandorafms.com"
2018-10-04 11:43:08 +02:00
}
],
2022-01-13 13:48:25 +01:00
"config": {
"platform": {
2023-04-10 12:33:06 +02:00
"php": "8.0.2"
2022-01-13 13:48:25 +01:00
}
},
"require": {
2022-01-12 14:22:16 +01:00
"mpdf/mpdf": "^8.0.15",
"swiftmailer/swiftmailer": "^6.0",
"amphp/parallel-functions": "^1.0",
2023-04-10 12:33:06 +02:00
"chrome-php/chrome": "^1.8.1",
2023-04-04 11:24:49 +02:00
"artica/phpchartjs": "^1.0",
"tinymce/tinymce": "^6.4"
},
"repositories": {
"phpchartjs": {
"type": "path",
"url": "../../../phpchartjs",
"options": {
"symlink": false
}
}
},
"autoload": {
"psr-4": {
"Models\\": "include/rest-api/models",
2019-10-17 15:31:17 +02:00
"Enterprise\\Models\\": "enterprise/include/rest-api/models",
"PandoraFMS\\": "include/lib",
"PandoraFMS\\Enterprise\\": "enterprise/include/lib",
"UpdateManager\\": "update_manager_client/lib/UpdateManager"
},
"files": [
"include/global_config.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
2018-10-04 11:43:08 +02:00
}