-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.06 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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": "ericpoe/haystack",
"description": "Forget Haystack vs Needle order, the object IS the Haystack. Haystack is a library that allows for pipelining and immutable structures.",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Eric Poe",
"email": "eric.poe@gmail.com",
"homepage": "http://ericpoe.com"
}
],
"config": {
"platform": {
"php": "7.1.0"
},
"sort-packages": true
},
"require": {
"ext-mbstring": "*",
"php": "^7.1 || ~8.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Haystack\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Haystack\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}