51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "lindeas/jilo-web-tests",
|
|
"description": "Test Suite for Jilo Web Application",
|
|
"type": "project",
|
|
"require": {
|
|
"php": ">=7.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5",
|
|
"phpunit/php-code-coverage": "^9.2",
|
|
"mockery/mockery": "^1.5"
|
|
},
|
|
"autoload": {
|
|
"files": [
|
|
"../app/includes/errors.php",
|
|
"../app/classes/database.php",
|
|
"../app/classes/agent.php",
|
|
"../app/classes/host.php",
|
|
"../app/classes/platform.php",
|
|
"../app/classes/server.php",
|
|
"../app/classes/log.php",
|
|
"../app/classes/feedback.php",
|
|
"../app/classes/settings.php",
|
|
"../app/classes/validator.php",
|
|
"../app/classes/router.php",
|
|
"../app/classes/ratelimiter.php",
|
|
"../app/classes/user.php",
|
|
"../app/helpers/security.php",
|
|
"../app/includes/errors.php"
|
|
],
|
|
"classmap": [
|
|
"TestCase.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "./"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"test-coverage": "phpunit --coverage-html coverage"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "stable"
|
|
}
|