-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.63 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/modx-evo-database",
"keywords": ["modx", "database", "mysqli"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "agel_nash",
"email": "[email protected]",
"homepage": "https://agel-nash.ru"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "5.7.*|7.2.*",
"php-coveralls/php-coveralls": "2.1.*",
"illuminate/database": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
"illuminate/events": "5.0.*|5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*"
},
"suggest": {
"illuminate/database": "to use the IlluminateDriver",
"illuminate/events": "to use observers with Eloquent",
"illuminate/pagination": "to use paginate"
},
"autoload":{
"psr-4": {
"AgelxNash\\Modx\\Evo\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AgelxNash\\Modx\\Evo\\Database\\Tests\\": "tests/"
}
},
"scripts": {
"phpmd": "phpmd src/ text phpmd.xml",
"phpcs": "phpcs",
"php-cs-fix": "php-cs-fixer fix",
"phpunit": "phpunit --coverage-text --colors",
"coverage": "phpunit --colors --coverage-html ./coverage"
},
"scripts-descriptions": {
"phpmd": "Run PHP Mess Detector",
"phpcs": "Run PHP CodeSniffer",
"php-cs-fix": "Run PHP Coding Standards Fixer",
"phpunit": "Run PhpUnit test",
"coverage": "Generating code coverage report in HTML format"
},
"config": {
"preferred-install": "dist",
"prestissimo": {
"maxConnections": 6,
"minConnections": 3
},
"sort-packages": false,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}