-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.1 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
{
"name": "phpinnacle/buffer",
"type": "library",
"description": "PHPinnacle binary buffer implementation",
"keywords": [
"phpinnacle", "buffer", "byte buffer", "binary", "binary data", "pack", "unpack"
],
"homepage": "https://github.com/phpinnacle/buffer",
"license": "MIT",
"authors": [
{
"name": "PHPinnacle",
"email": "dev@phpinnacle.com",
"homepage": "https://phpinnacle.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"suggest": {
"ext-buffer": "C extension to speed up pack/unpack binary data"
},
"autoload": {
"psr-4": {
"PHPinnacle\\Buffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPinnacle\\Buffer\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}