-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.35 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
{
"name": "franiglesias/golden",
"type": "library",
"description": "A library for snapshot testing in PHP.",
"license": "MIT",
"authors": [
{
"name": "Fran Iglesias",
"email": "[email protected]",
"homepage": "https://franiglesias.github.io",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Golden\\": "src"
},
"files": [
"src/Options.php",
"src/Normalizer/Scrubber/Options.php"
]
},
"config": {
"bin-dir": "bin"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"galbar/jsonpath": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.0 || ^11.0",
"mikey179/vfsstream": "^1.6",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*"
},
"autoload-dev": {
"psr-4": {
"Tests\\Golden\\": "tests"
}
},
"scripts": {
"post-install-cmd": "\"bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"check-7.4": "bin/phpcs -p ./tests --standard=PHPCompatibility --runtime-set testVersion 7.4",
"check-8.3": "bin/phpcs -p ./tests --standard=PHPCompatibility --runtime-set testVersion 8.3"
}
}