-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (34 loc) · 904 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
{
"name": "pubnub/cbor-codec",
"type": "library",
"description": "A simple static coder/decoder for CBOR (Concise Binary Object Representation)",
"keywords": ["cbor", "cbor encode", "cbor decode"],
"homepage": "http://www.pubnub.com/",
"license": "MIT",
"version": "0.1.0",
"autoload": {
"psr-4": {
"PubNub\\CborCodec\\": "src/"
}
},
"authors": [
{
"name": "Sebastian Molenda",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"lint": [
"@composer update",
"./vendor/bin/phpcs ./src --standard=PSR12"
],
"test": [
"@composer update",
"./vendor/bin/phpunit --verbose ./src/tests"
]
}
}