-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (43 loc) · 1.13 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
{
"name": "adhocore/json-fixer",
"description": "Fix/repair truncated JSON data",
"type": "library",
"keywords": ["php","php-json-fixer","json","truncated-json","json-fixer","truncation-fixer","rectify-json","fix-json"],
"license": "MIT",
"authors": [
{
"name": "Jitendra Adhikari",
"email": "jiten.adhikary@gmail.com"
}
],
"autoload": {
"psr-4": {
"Ahc\\Json\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {
"Ahc\\Test\\Json\\": "tests/"
}
},
"require": {
"php": ">=5.4.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"post-root-package-install": [
],
"lint": "for P in src tests; do find $P -type f -name '*.php' -exec php -l {} \\;; done",
"test": "vendor/bin/phpunit --coverage-text --coverage-clover coverage.xml"
}
}