-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.24 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
{
"name": "bytemap/bytemap",
"description": "PHP data structures with low memory footprint",
"keywords": ["map", "mapping", "structure"],
"homepage": "https://github.com/RGustBardon/bytemap",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Robert Gust-Bardon",
"email": "[email protected]",
"homepage": "https://robert.gust-bardon.org"
}
],
"require": {
"php": "^7.1"
},
"conflict": {
"hhvm": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"jakub-onderka/php-parallel-lint": "^1.0",
"php-coveralls/php-coveralls": "^2.1",
"php-ds/php-ds": "^1.2",
"phpbench/phpbench": "@dev",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-phpunit": "^0.11",
"phpunit/phpunit": "^7.5|^8.0",
"salsify/json-streaming-parser": "^8.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {"Bytemap\\": "src/Bytemap"}
},
"autoload-dev": {
"psr-4": {"Bytemap\\": "tests/Bytemap"}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit"
]
}
}