forked from CoverGenius/json-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.04 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "jet/json-diff",
"type": "library",
"license": "GNUv3",
"autoload": {
"psr-4": {
"Jet\\JsonDiff\\": "src/"
},
"files": [
"src/Support/polyfills.php"
]
},
"autoload-dev": {
"psr-4": {
"Jet\\Tests\\": "tests/"
},
"files": [
"tests/Support/polyfills.php"
]
},
"authors": [
{
"name": "Jet Lim and Ruben Funai"
}
],
"require": {
"php": ">=7.3",
"illuminate/support": ">=8.83",
"illuminate/container": ">=8.83"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"symfony/var-dumper": "^5.4",
"fakerphp/faker": "^1.20",
"friendsofphp/php-cs-fixer": "^3.4"
},
"scripts": {
"lint:ci": [
"php-cs-fixer fix -v --dry-run"
],
"lint": [
"php-cs-fixer fix -v"
],
"test:with-coverage": [
"phpunit --coverage-html ./test-reports"
]
}
}