forked from lodash-php/lodash-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 924 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
{
"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 | ^4.0",
"symfony/property-access": "^2.7 | ^3.0 | ^4.0 | ^5.0"
},
"require-dev": {
"phpdocumentor/reflection-docblock": "*",
"phpstan/phpdoc-parser": "*",
"phpunit/phpunit": "^7.3 || ^8.4",
"phpstan/phpstan": "^0.12",
"friendsofphp/php-cs-fixer": "^2.12"
}
}