-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 866 Bytes
/
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
{
"name": "inkrot/php-compress-json",
"type": "library",
"description": "Store JSON data in space efficient manner",
"keywords": ["json", "compress"],
"homepage": "http://github.com/inkrot/php-compress-json",
"license": "BSD-2-Clause",
"authors": [
{"name": "Islam Zaripov", "email": "islam.zar@yandex.ru"}
],
"scripts": {
"tests": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"CompressJson\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CompressJsonTest\\": "tests/CompressJsonTest"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.1",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5"
}
}