-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 1.18 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
{
"name": "pcsg/php-index",
"type": "library",
"description": "Clone of malkusch's deleted php-index library. 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/JanWennrich/php-index",
"license": "WTFPL-2.0",
"version": "dev-master",
"authors": [
{
"name": "Markus Malkusch",
"email": "[email protected]",
"homepage": "http://markus.malkusch.de",
"role": "Developer"
},
{
"name": "Jan Wennrich",
"email": "[email protected]",
"homepage": "https://pcsg.de",
"role": "Developer"
}
],
"autoload": {
"files": ["autoloader/autoloader.php"]
},
"require": {
"php": ">=5.3.0"
},
"archive": {
"exclude": ["/tests/"]
}
}