-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.5 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mistrfilda/datetime",
"license": "MIT",
"description": "Simple datetime utils",
"require": {
"php": ">=8.1",
"nette/utils": "^3.0|^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"tracy/tracy": "^2.6",
"roave/security-advisories": "dev-master",
"mockery/mockery": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.2",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"phpunit/phpunit": "^9.5",
"doctrine/dbal": "^3.0",
"orisai/coding-standard": "^2.0"
},
"autoload": {
"psr-4": {
"Mistrfilda\\Datetime\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mistrfilda\\Datetime\\Tests\\": "tests"
}
},
"scripts": {
"comload": "composer dump-autoload -o",
"stan": "vendor/bin/phpstan analyse -l max -c phpstan.neon src tests --ansi",
"lint": "vendor/bin/parallel-lint --colors src/ tests/",
"cs": "vendor/bin/phpcs --standard=phpcs.xml src tests",
"cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml src tests",
"test-unit": "vendor/bin/phpunit --testsuite unit --colors=always --debug",
"build-all-local": [
"@comload",
"@build-all"
],
"build-all": [
"@lint",
"@stan",
"@cs",
"@test-unit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}