forked from bpolaszek/string-combinations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 876 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 876 Bytes
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
{
"name": "bentools/string-combinations",
"description": "A simple, low-memory footprint function to generate all string combinations from a series of characters.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"BenTools\\StringCombinations\\" : "src"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"BenTools\\StringCombinations\\Tests\\" : "tests"
},
"files": [
"vendor/symfony/var-dumper/Resources/functions/dump.php"
]
},
"require": {
"php": ">=7.4",
"bentools/cartesian-product": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"squizlabs/php_codesniffer": "@stable",
"satooshi/php-coveralls": "@stable",
"symfony/var-dumper": "^3.2"
}
}