This repository was archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.52 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
45
46
47
48
49
{
"name" : "narrowspark/collection",
"type" : "library",
"description": "A Collections library for PHP.",
"keywords" : [
"narrowspark", "collections", "library"
],
"license" : "MIT",
"homepage" : "https://github.com/narrowspark/collection",
"support" : {
"issues" : "https://github.com/narrowspark/collection/issues",
"source" : "https://github.com/narrowspark/collection"
},
"authors" : [
{
"name" : "Daniel Bannert",
"email" : "[email protected]",
"homepage": "http://narrowspark.de",
"role" : "Developer"
}
],
"require": {
"php" : "^7.0",
"narrowspark/arr" : "^2.1"
},
"require-dev": {
"narrowspark/php-cs-fixer-config" : "^2.0",
"mockery/mockery" : "^1.0",
"phpbench/phpbench" : "^0.13",
"phpunit/phpunit" : "^5.1"
},
"autoload": {
"psr-4": {
"Narrowspark\\Collection\\" : "src/Collection/"
}
},
"autoload-dev": {
"psr-4": {
"Narrowspark\\Collection\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "1.0.0-dev"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}