-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 949 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
36
37
38
39
40
41
42
{
"name": "h4kuna/serialize-polyfill",
"description": "Provide methods for serialization and use igbinary if is available.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Milan Matějček",
"email": "[email protected]"
}
],
"suggest": {
"php": ">=7.4",
"ext-igbinary": "to use efficient serialization",
"ext-mbstring": "for check errors by igbinary"
},
"autoload": {
"psr-4": {
"h4kuna\\Serialize\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"h4kuna\\Serialize\\Tests\\": "tests/src"
}
},
"require-dev": {
"nette/tester": "^2.4",
"phpstan/phpstan": "^1.9",
"tracy/tracy": "^2.9"
},
"config": {
"sort-packages": true
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse --level max src tests",
"tests": "vendor/bin/tester -s -j 4 -C --colors 1 tests/src"
},
"require": {
"nette/utils": ">= 3.0"
}
}