forked from jonasraoni/binary-parser
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.13 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "erickmajor/binary-parser",
"description": "Binary Parser is a library that serializes and unserializes binary data in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jonas Raoni Soares da Silva",
"email": "jonas@raoni.org",
"homepage": "http://raoni.org",
"role": "Owner"
},
{
"name": "Erick Major dos Santos",
"email": "erick.major@yahoo.com.br",
"homepage": "http://erickmajor.github.io",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"phpunit/phpunit": "^5",
"behat/behat": "^3.6@dev"
},
"autoload": {
"psr-4": {
"Converter\\Buffer\\": "src/Converter/Buffer/",
"Converter\\Parser\\": "src/Converter/Parser/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Unit\\Converter\\Buffer\\": "test/unit/Converter/Buffer/",
"Test\\Unit\\Converter\\Parser\\": "test/unit/Converter/Parser/"
}
}
}