-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
62 lines (62 loc) · 1.8 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
{
"name": "agelxnash/functions",
"keywords": ["helper", "functions", "utils", "array", "debug", "string", "object", "request", "html", "math"],
"description": "Extra functions php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "agel_nash",
"email": "[email protected]",
"homepage": "https://agel-nash.ru"
}
],
"autoload": {
"files": [
"src/array.functions.php",
"src/debug.functions.php",
"src/filesystem.functions.php",
"src/html.functions.php",
"src/math.functions.php",
"src/object.functions.php",
"src/request.functions.php",
"src/string.functions.php",
"src/utils.functions.php"
]
},
"autoload-dev": {
"psr-4": {
"AgelxNash\\Functions\\Test\\": "tests/"
}
},
"require": {
"php": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "6.5.*",
"php-coveralls/php-coveralls": "^2.1"
},
"scripts": {
"phpmd": "phpmd src/ text phpmd.xml",
"phpcs": "phpcs",
"php-cs-fix": "php-cs-fixer fix",
"phpunit": "phpunit --coverage-text --colors"
},
"scripts-descriptions": {
"phpmd": "Run PHP Mess Detector",
"phpcs": "Run PHP CodeSniffer",
"php-cs-fix": "Run PHP Coding Standards Fixer",
"phpunit": "Run PhpUnit test"
},
"config": {
"preferred-install": "dist",
"prestissimo": {
"maxConnections": 6,
"minConnections": 3
},
"sort-packages": false,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}