-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.06 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
{
"name": "covergenius/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": "^8.0",
"illuminate/support": "^9.0 || ^10.0",
"illuminate/container": "^9.0 || ^10.0"
},
"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"
]
}
}