-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.23 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.23 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "sunfoxcz/date-utils",
"type": "library",
"description": "Library for easier working with date intervals.",
"keywords": ["date", "time", "datetime", "interval"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Jacík",
"email": "tomas.jacik@sunfox.cz",
"homepage": "http://sunfox.cz"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"ext-iconv": "*",
"ext-json": "*",
"nette/tester": "^2.4",
"sunfoxcz/coding-standard": "dev-master",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"Sunfox\\DateUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SunfoxTests\\DateUtils\\": "tests/"
}
},
"scripts": {
"tests": "vendor/bin/tester -s -p php -C tests/Cases",
"coverage": "vendor/bin/tester -s -p phpdbg -C --coverage ./coverage.xml --coverage-src ./src tests/Cases",
"cs": "vendor/bin/ecs check --no-progress-bar --ansi src tests",
"csfix": "vendor/bin/ecs check --no-progress-bar --ansi --fix src tests",
"phpstan": "vendor/bin/phpstan analyse --no-progress --ansi -c phpstan.neon -l max src tests"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}