-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.37 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "kopernikus/timr-report-manager",
"description": "Analyze and generate timr csv reports to easily and quickly forward them to external time tracking tools.",
"license": "MIT",
"autoload": {
"psr-4": {
"Kopernikus\\TimrReportManager\\": [
"src/",
"tests/"
]
}
},
"authors": [
{
"name": "Philipp Kretzschmar",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^11.4",
"symfony/console": "^7.1",
"phpstan/phpstan": "^1.12",
"squizlabs/php_codesniffer": "*",
"roave/security-advisories": "dev-latest"
},
"require": {
"league/csv": "^9.18.0",
"nesbot/carbon": "^3.8",
"illuminate/collections": "^11.28",
"ext-iconv": "*"
},
"scripts": {
"tests": "./vendor/bin/phpunit --fail-on-deprecation tests/",
"tests:html-coverage": "./vendor/bin/phpunit --coverage-html coverage-report-html --coverage-filter './src/' tests/",
"tests:clover": "./vendor/bin/phpunit --coverage-clover coverage.xml --coverage-filter './src/' tests/",
"fix": "./vendor/bin/phpcbf --error-severity=1 --standard=phpcs.xml tests/ src/",
"cs": "./vendor/bin/phpcs -ns --standard=phpcs.xml --error-severity=1 src/ tests/"
}
}