-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.05 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
37
38
39
40
41
42
43
44
{
"name": "fschaechter/php-collection",
"description": "A library for handling sets of data",
"type": "library",
"keywords": [
"list",
"collection",
"filter",
"sorting"
],
"license": "GPL-3.0",
"version": "2.3.1",
"homepage": "http://github.com/fschaechter/php-collection",
"support": {
"issues": "https://github.com/fschaechter/php-collection/issues"
},
"authors": [
{
"name": "Fabian Schächter",
"email": "fabian@schaechter.info"
}
],
"require": {
"php": ">=5.3.10"
},
"require-dev": {
"ext-xdebug": ">=2.1.0",
"phpunit/phpunit": "3.7.37",
"mockery/mockery": "0.9.1",
"squizlabs/php_codesniffer": "1.5.4",
"phploc/phploc": "2.0.6",
"pdepend/pdepend": "2.0.0",
"phpmd/phpmd": "2.0.0",
"sebastian/phpcpd": "2.0.1"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4":{
"Collection\\": "src/"
}
}
}