forked from lodash-php/lodash-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "lodash-php/lodash-php",
"description": "A port of Lodash to PHP",
"keywords": [
"lodash",
"utility",
"utilities",
"php-library",
"utility-library",
"php-utility"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pierre du Plessis",
"email": "[email protected]"
}
],
"autoload": {
"files": [
"src/bootstrap.php"
]
},
"require": {
"php": ">=7.1",
"sebastian/comparator": "^1.2 | ^2.0 | ^2.1 | ^3.0",
"symfony/property-access": "^2.7 | ^3.0 | ^4.0"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "^4.2",
"bamarni/composer-bin-plugin": "^1.2",
"phpstan/phpdoc-parser": "^0.3.0"
},
"scripts": {
"post-install-cmd": ["@composer bin all install --ansi"],
"post-update-cmd": ["@composer bin all update --ansi"]
}
}