-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.56 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "denisyukphp/tmpfile",
"description": "Alternative to tmpfile() function.",
"keywords": [
"tmpfile",
"tempnam",
"temp",
"tmp",
"file"
],
"license": "MIT",
"authors": [
{
"name": "Aleksandr Denisyuk",
"email": "aleksandr@denisyuk.email",
"homepage": "https://denisyuk.website/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.18",
"rector/rector": "^2.2",
"vimeo/psalm": "^5.26"
},
"suggest": {
"denisyukphp/tmpfile-manager": "Allows more advanced creating and removing temp files."
},
"autoload": {
"psr-4": {
"TmpFile\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"TmpFile\\Tests\\": "./tests/"
}
},
"scripts": {
"parallel-lint": "./vendor/bin/parallel-lint --colors ./src/ ./tests/",
"psalm": "./vendor/bin/psalm --show-info=true",
"psalm:clear-cache": "rm -rf ./build/cache/psalm/",
"psalm:set-baseline": "@psalm --set-baseline=./psalm-baseline.xml --no-cache",
"psalm:update-baseline": "@psalm --update-baseline --no-cache",
"psalm:ignore-baseline": "@psalm --ignore-baseline --no-cache",
"rector:fix": "./vendor/bin/rector process",
"rector:diff": "./vendor/bin/rector process --dry-run",
"rector:clear-cache": "rm -rf ./build/cache/rector/",
"php-cs-fixer:fix": "./vendor/bin/php-cs-fixer fix --verbose --ansi --show-progress=dots",
"php-cs-fixer:diff": "./vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --diff",
"php-cs-fixer:clear-cache": "rm ./build/cache/php-cs-fixer.cache",
"phpunit": "./vendor/bin/phpunit --verbose --colors=always --no-coverage",
"phpunit:clear-cache": "rm ./build/cache/phpunit.cache",
"phpunit-coverage": "./vendor/bin/phpunit --verbose --colors=always --coverage-text",
"phpunit-coverage-html": "./vendor/bin/phpunit --verbose --colors=always --coverage-html ./build/logs/phpunit-coverage/",
"test": [
"@parallel-lint",
"@psalm",
"@rector:diff",
"@php-cs-fixer:diff",
"@phpunit"
]
}
}