forked from drupol/phpermutations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (48 loc) · 1.69 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
{
"name": "drupol/phpermutations",
"description": "Generate iterators for array permutations in an efficient way.",
"type": "library",
"homepage": "https://github.com/drupol/phpermutations",
"keywords": ["math", "numbers", "permutations", "combinations", "iterators", "fibonacci", "prime numbers", "product"],
"license": "GPL-3.0-only",
"support": {
"issues": "https://github.com/drupol/phpermutations/issues",
"source": "https://github.com/drupol/phpermutations"
},
"minimum-stability": "stable",
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]"
}
],
"require": {
"php": ">= 5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^0.9",
"squizlabs/php_codesniffer": "^2.0",
"satooshi/php-coveralls": "^1.0",
"phpunit/php-code-coverage": "^4.0",
"scrutinizer/ocular": "^1.3",
"phpro/grumphp": "^0.13",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"nikic/php-parser": "~2.1",
"sensiolabs/security-checker": "^4.1",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^3.0",
"friendsofphp/php-cs-fixer": "^2.10"
},
"scripts": {
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c tests/phpunit.xml tests",
"grumphp": "./vendor/bin/grumphp run",
"scrutinizer": "./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml"
},
"autoload": {
"psr-4": {
"drupol\\phpermutations\\": "src/",
"drupol\\phpermutations\\Tests\\": "tests/src/"
}
}
}