-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.5 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.5 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
52
53
54
55
56
{
"name": "monadial/php-duration",
"license": "AGPL-3.0-only",
"description": "PHP Duration Type",
"homepage": "https://github.com/monadial/php-duration",
"type": "library",
"autoload": {
"psr-4": {
"Monadial\\Duration\\": "src"
},
"files": [
"src/functions.php"
]
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"slevomat/coding-standard": "8.13.1",
"friendsofphp/php-cs-fixer": "v3.20.0",
"php-parallel-lint/php-parallel-lint": "~v1.3",
"nikic/php-parser": "~4.15",
"phpmd/phpmd": "2.13.0",
"phpro/grumphp": "v1.16.0",
"phpstan/phpstan": "1.10.21",
"phpunit/phpunit": "9.6.9",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "3.7.2",
"vimeo/psalm": "5.13.1",
"sensiolabs/security-checker": "v6.0.3",
"composer/xdebug-handler": "3.0.3"
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.ruleset.xml",
"phpcbf": [
"Composer\\Config::disableProcessTimeout",
"phpcbf --standard=phpcs.ruleset.xml --extensions=php --tab-width=4"
],
"php-cs-fixer": "php-cs-fixer --config=./.php-cs-fixer.php fix",
"phpmd": "phpmd src text phpmd.ruleset.xml",
"psalm": "psalm --no-cache",
"grumphp": "grumphp run",
"phpunit": "phpunit"
},
"autoload-dev": {
"psr-4": {
"Monadial\\Duration\\Tests\\": "tests/Unit"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}