-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.24 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.24 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
49
50
51
52
53
54
{
"name": "fallegahq/json-test-utils",
"description": "JSON testing utilities for PHPUnit 11+",
"type": "library",
"require": {
"php": "^8.2",
"phpunit/phpunit": "^11"
},
"require-dev": {
"phpstan/phpstan": "^2.1.11",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.75",
"symplify/easy-coding-standard": "^12.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"FallegaHQ\\JsonTestUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FallegaHQ\\JsonTestUtils\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "SAKHRAOUI Omar",
"email": "xana@xana.tn"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit",
"analyze": "vendor/bin/phpstan analyse",
"lint:fix": "./vendor/bin/ecs --fix",
"lint": "./vendor/bin/ecs",
"check":[
"Composer\\Config::disableProcessTimeout",
"@lint",
"@analyze",
"@test"
],
"prepare":[
"Composer\\Config::disableProcessTimeout",
"@lint:fix",
"@lint",
"@analyze",
"@test"
],
"coverage": "php -d xdebug.mode=coverage vendor/bin/phpunit --coverage-html coverage-report"
}
}