forked from Arif-un/jcof-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.27 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "arif-un/jcof",
"description": "Compress JSON in half",
"type": "library",
"keywords": ["jcof", "json-compress", "json-optimize"],
"license": "MIT",
"support": {
"issues": "https://github.com/arif-un/jcof-php/issues",
"source": "https://github.com/arif-un/jcof-php"
},
"authors": [
{
"name": "Arif Uddin",
"email": "arifunctg@gmail.com"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"pestphp/pest": "^2.19",
"laravel/pint": "^1.13",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*"
},
"autoload": {
"psr-4": {
"Jcof\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jcof\\Test\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "./vendor/bin/pest",
"style:fix": "vendor/bin/pint ./src ./tests",
"phpcs": "./vendor/bin/phpcs -p ./src --standard=PHPCompatibility --runtime-set testVersion 5.6",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}