-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 833 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 833 Bytes
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
{
"name": "weblement/collections",
"description": "A small PHP collections library that contain powerful data structures which makes manipulation of arrays easier.",
"keywords": ["weblement", "collection", "library", "data structures", "array", "queue", "stack", "map", "set"],
"homepage": "https://github.com/weblement/",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Yuv Joodhisty",
"email": "locustv2@gmail.com"
}
],
"support": {
"issues": "https://github.com/weblement/collections/issues?state=open",
"source": "https://github.com/weblement/collections"
},
"require": {
"php": ">=5.4.0"
},
"autoload" : {
"psr-4" : {
"weblement\\collections\\" : "src"
}
}
}