-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.82 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
{
"name": "spomky-labs/cbor-bundle",
"description": "CBOR Encoder/Decoder Bundle for Symfony.",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["CBOR", "Concise Binary Object Representation", "RFC7049", "Bundle", "Symfony"],
"homepage": "https://github.com/spomky-labs",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},{
"name": "All contributors",
"homepage": "https://github.com/spomky-labs/cbor-bundle/contributors"
}
],
"autoload": {
"psr-4": {
"SpomkyLabs\\CborBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpomkyLabs\\CborBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"spomky-labs/cbor-php": "^3.0",
"symfony/config": "^5.3|^6.0|^7.0",
"symfony/dependency-injection": "^5.3|^6.0|^7.0",
"symfony/http-kernel": "^5.3|^6.0|^7.0"
},
"require-dev": {
"infection/infection": "^0.27|^0.28|^0.29",
"php-parallel-lint/php-parallel-lint": "^1.3",
"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": "^10.1|^11.0",
"rector/rector": "^1.0",
"symfony/framework-bundle": "^5.3|^6.0|^7.0",
"symfony/phpunit-bridge": "^5.3|^6.0|^7.0",
"symplify/easy-coding-standard": "^12.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"infection/extension-installer": true
}
}
}