-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "drupol/phpermutations",
"type": "library",
"description": "Generators and iterators, permutations and combinations.",
"keywords": [
"math",
"numbers",
"permutations",
"combinations",
"iterators",
"fibonacci",
"prime numbers",
"product"
],
"homepage": "https://github.com/drupol/phpermutations",
"license": "MIT",
"authors": [
{
"name": "Pol Dellaiera",
"email": "pol.dellaiera@protonmail.com"
}
],
"require": {
"php": ">= 7.1.3"
},
"require-dev": {
"drupol/php-conventions": "^1.7.1",
"phpunit/php-code-coverage": "^4 || ^5",
"phpunit/phpunit": "^6 || ^7"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"drupol\\phpermutations\\": "src/",
"drupol\\phpermutations\\Tests\\": "tests/src/"
}
},
"scripts": {
"grumphp": "./vendor/bin/grumphp run",
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c tests/phpunit.xml tests"
},
"support": {
"issues": "https://github.com/drupol/phpermutations/issues",
"source": "https://github.com/drupol/phpermutations"
}
}