-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.48 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"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": ">= 8.2"
},
"require-dev": {
"ext-pcov": "*",
"phpunit/php-code-coverage": "^11",
"phpunit/phpunit": "^11",
"symfony/finder": "^7.2",
"symfony/yaml": "^7.2"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"drupol\\phpermutations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"drupol\\phpermutations\\Tests\\": "tests/src/"
}
},
"scripts": {
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml tests"
},
"support": {
"issues": "https://github.com/drupol/phpermutations/issues",
"source": "https://github.com/drupol/phpermutations"
}
}