-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.86 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
{
"name": "drupol/phpartition",
"description": "Partition problem for balanced arrays splitting made easy.",
"type": "library",
"homepage": "https://github.com/drupol/phpartition",
"keywords": ["math", "numbers", "statistics", "partition", "greedy", "karmarkar", "karp"],
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/drupol/phpartition/issues",
"source": "https://github.com/drupol/phpartition"
},
"minimum-stability": "stable",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com",
"role": "Author"
}
],
"require": {
"oefenweb/statistics": "^1.1",
"drupol/phpermutations": "^1.2",
"phootwork/collection": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9",
"satooshi/php-coveralls": "^1.0",
"phpunit/php-code-coverage": "^4.0",
"phpro/grumphp": "^0.12",
"squizlabs/php_codesniffer": "^3.0",
"scrutinizer/ocular": "^1.4",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"sensiolabs/security-checker": "^4.1",
"friendsofphp/php-cs-fixer": "^2.7"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=PSR2 --ignore=vendor .",
"phpcbf": "./vendor/bin/phpcbf --standard=PSR2 --ignore=vendor .",
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c tests/phpunit.xml tests",
"grumphp": "./vendor/bin/grumphp run",
"coveralls": "./vendor/bin/coveralls",
"scrutinizer": "./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml"
},
"autoload": {
"psr-4": {
"drupol\\phpartition\\": "src/",
"drupol\\phpartition\\Tests\\": "tests/src/"
}
}
}