-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcomposer.json
64 lines (63 loc) · 1.54 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
60
61
62
63
64
{
"name": "spatie/phpunit-snapshot-assertions",
"description": "Snapshot testing with PHPUnit",
"keywords": [
"spatie",
"phpunit-snapshot-assertions",
"phpunit",
"snapshot",
"assert",
"testing"
],
"homepage": "https://github.com/spatie/phpunit-snapshot-assertions",
"license": "MIT",
"authors": [
{
"name": "Sebastian De Deyne",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"composer-runtime-api": "^2.0",
"phpunit/phpunit": "^10.0|^11.0",
"symfony/property-access": "^5.2|^6.2|^7.0",
"symfony/serializer": "^5.2|^6.2|^7.0",
"symfony/yaml": "^5.2|^6.2|^7.0"
},
"require-dev": {
"spatie/pixelmatch-php": "dev-main",
"spatie/ray": "^1.37"
},
"suggest": {
"spatie/pixelmatch-php": "Required to use the image snapshot assertions"
},
"autoload": {
"psr-4": {
"Spatie\\Snapshots\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\Snapshots\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-v5": "5.0-dev"
}
}
}