-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 751 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 751 Bytes
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
{
"name": "local-visual-diff/tool",
"description": "Local-only visual diff tool for comparing baseline and candidate websites.",
"type": "project",
"require": {
"php": "^8.3",
"ext-curl": "*",
"ext-dom": "*",
"ext-imagick": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-sockets": "*",
"chrome-php/chrome": "^1.14",
"symfony/console": "^7.3",
"typo3fluid/fluid": "^5.2"
},
"require-dev": {
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
"LocalVisualDiff\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LocalVisualDiff\\Tests\\": "tests/"
}
},
"bin": [
"bin/visual-diff"
],
"config": {
"sort-packages": true
}
}