-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·63 lines (63 loc) · 1.48 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "me-io/php-lodash",
"type": "library",
"version": "2.0.0",
"description": "A full-on PHP manipulation utility-belt that provides support for the usual functional.",
"keywords": [
"__",
"lodash",
"bottomline",
"library",
"utility",
"functions"
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4",
"overtrue/phplint": "^1.1",
"phpstan/phpstan": "^0.11"
},
"autoload": {
"files": [
"src/__.php"
],
"psr-4": {
"__\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"update-dev": "composer update",
"install-dev": "composer install --no-interaction",
"update-prod": "composer update --no-dev",
"install-prod": "composer install --no-dev --no-interaction",
"stan": "phpstan analyse src",
"test": "phpunit",
"test-cov": "phpunit --coverage-text --coverage-clover=coverage.xml",
"test-html": "phpunit --coverage-text --coverage-clover=coverage.xml --coverage-html=./report/",
"lint": "phplint",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 1000000
}
}