mmk2410
/
my-todo-list
Archived
1
0
Fork 0
This repository has been archived on 2021-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
my-todo-list/composer.json

22 lines
573 B
JSON

{
"autoload": {
"psr-4": {"MMK2410\\MyTodoList\\": "src/"}
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"scripts": {
"test": [
"phpunit --configuration phpunit.xml"
],
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration phpunit.xml --coverage-text"
],
"test:gitlab": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration phpunit.xml --log-junit report.xml --coverage-text --colors=never"
]
}
}