forked from Spomky-Labs/cbor-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.69 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
{
"name": "spomky-labs/cbor-php",
"type": "library",
"license": "MIT",
"keywords": ["CBOR", "Concise Binary Object Representation", "RFC7049"],
"description": "CBOR Encoder/Decoder for PHP",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},{
"name": "All contributors",
"homepage": "https://github.com/Spomky-Labs/cbor-php/contributors"
}
],
"autoload": {
"psr-4": {
"CBOR\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CBOR\\Test\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"brick/math": "^0.9.0",
"ext-mbstring": "*"
},
"require-dev": {
"ext-json": "*",
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.25",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12",
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^5.3",
"symplify/easy-coding-standard": "^9.4"
},
"config": {
"sort-packages": true
},
"suggest": {
"ext-gmp": "GMP or BCMath extensions will drastically improve the library performance",
"ext-bcmath": "GMP or BCMath extensions will drastically improve the library performance. BCMath extension needed to handle the Big Float and Decimal Fraction Tags"
}
}