-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 780 Bytes
/
Copy pathcomposer.json
File metadata and controls
26 lines (26 loc) · 780 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": "naucon/utility",
"description": "This package provides miscellaneous php interfaces and classes to structure and organize data as well as groups of objects",
"keywords": ["utility", "collection", "list", "map", "set", "iterator", "composite", "delegate", "iterable", "paginator", "observer"],
"homepage": "https://github.com/naucon/Utility",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sven Sanzenbacher"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"Naucon\\Utility\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Naucon\\Utility\\Tests\\": "tests"}
}
}