-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
25 lines (25 loc) · 961 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
{
"name": "bmdevel/php-index",
"type": "library",
"description": "This library provides an API to perform binary search operations on a sorted index. The index can be a XML document, a CSV document, or an arbitrary text file where the key has a fixed position. You can easily implement your own index. This API comes handy on any sorted data structure where realtime search operations are necessary without the detour of a DBS import.",
"keywords": ["index", "binary search"],
"homepage": "https://github.com/bmdevel/php-index",
"license": "WTFPL",
"authors": [
{
"name": "Markus Malkusch",
"email": "[email protected]",
"homepage": "http://markus.malkusch.de",
"role": "Developer"
}
],
"autoload": {
"files": ["autoloader/autoloader.php"]
},
"require": {
"php": ">=5.3.0"
},
"archive": {
"exclude": ["/tests/"]
}
}