-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
63 lines (63 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "crell/serde",
"type": "library",
"description": "A general purpose serialization and deserialization library",
"keywords": [
"Serde",
"Database"
],
"homepage": "https://github.com/Crell/Serde",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Larry Garfield",
"email": "[email protected]",
"homepage": "http://www.garfieldtech.com/",
"role": "Developer"
}
],
"require": {
"php": "~8.1",
"crell/attributeutils": "~1.2",
"crell/fp": "~1.0"
},
"require-dev": {
"devium/toml": "^1.0.5",
"phpbench/phpbench": "^1.3.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "~10.5",
"symfony/yaml": "^5.4"
},
"suggest": {
"devium/toml": "Enables serializing to/from TOML files.",
"symfony/yaml": "Enables serializing to/from YAML files."
},
"autoload": {
"psr-4": {
"Crell\\Serde\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Crell\\Serde\\": "tests",
"Crell\\Serde\\Benchmarks\\": "benchmarks"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"phpstan": "php -d memory_limit=256M vendor/bin/phpstan",
"coverage": "php -dextension=pcov.so -dpcov.enabled=1 -dpcov.directory=src vendor/bin/phpunit --coverage-text",
"all-checks": [
"@test",
"@phpstan"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}