-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.72 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.72 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
{
"name": "igeek/rector-html-output",
"description": "Beautiful HTML output formatter for Rector PHP",
"type": "library",
"license": "MIT",
"keywords": [
"igeek",
"rector",
"php",
"html",
"report",
"formatter"
],
"authors": [
{
"name": "iGeek.info",
"homepage": "https://igeek.info/",
"role": "developer"
},
{
"name": "Amit Gupta",
"homepage": "https://amitgupta.in/",
"role": "developer"
}
],
"homepage": "https://github.com/coolamit/igeek-rector-html-output",
"require": {
"php": "^8.3",
"rector/rector": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.92",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5"
},
"autoload": {
"psr-4": {
"Igeek\\RectorHtmlOutput\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Igeek\\RectorHtmlOutput\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix"
},
"support": {
"issues": "https://github.com/coolamit/igeek-rector-html-output/issues",
"source": "https://github.com/coolamit/igeek-rector-html-output"
}
}