Files
server/composer.json
2026-01-07 00:05:55 -05:00

44 lines
959 B
JSON

{
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-iconv": "*",
"mongodb/mongodb": "^2.1",
"php-di/php-di": "*",
"phpseclib/phpseclib": "^3.0",
"symfony/console": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
},
"bump-after-update": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"KTXC\\": "core/lib/",
"KTXF\\": "shared/lib/"
}
},
"autoload-dev": {
"psr-4": {
"KTXT\\": "tests/php/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
],
"test": "phpunit --colors=always --testdox"
}
}