-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1.04 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
{
"name": "daniel-ac-martin/php-seids",
"type": "library",
"description": "Supplementary, Easily Interchangeable Data Structures for PHP 5. Provides alternatives and supplements to the Standard PHP Library (SPL) Datastructures.",
"keywords": ["php-seids", "PHP SEIDS", "SEIDS", "SEIDS", "Supplementary Easily Interchangeable Data Structures", "data structures", "spl", "heap", "linked list", "binary heap", "pairing heap", "stack", "queue", "priority queue", "dynamic array"],
"homepage": "http://php-seids.net",
"license": "MIT",
"authors": [
{
"name": "Daniel A.C. Martin",
"homepage": "http://dacm.org",
"email": "[email protected]",
"role": "Creator/Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "4.6.x",
"phpunit/php-code-coverage": "2.0.x",
"squizlabs/php_codesniffer": "2.3.x",
"daniel-ac-martin/apidoc": "0.2.x"
},
"autoload": {
"psr-4": {
"SEIDS\\": "src/SEIDS"
}
},
"autoload-dev": {
"psr-4": {
"SEIDS\\": "tests/SEIDS"
}
}
}