forked from doganoo/PHPAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 867 Bytes
/
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
{
"name": "doganoo/php-algorithms",
"description": "A collection of common algorithms implemented in PHP. The collection is based on \"Cracking the Coding Interview\" by Gayle Laakmann McDowell",
"type": "library",
"license": "MIT",
"homepage": "https://www.dogan-ucar.de/phpalgorithms-2/",
"keywords": [
"algorithms",
"data structures"
],
"authors": [
{
"name": "Dogan Ucar",
"email": "dogan@dogan-ucar.de",
"homepage": "https://www.dogan-ucar.de"
}
],
"autoload": {
"psr-4": {
"doganoo\\PHPAlgorithms\\": "src/",
"doganoo\\PHPAlgorithmsTest\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "6.5"
},
"require": {
"php": ">=7.1",
"doganoo/php-util": "0.3.*",
"ext-json": "*",
"ext-pdo": "*"
},
"scripts": {
"run-test": "vendor/bin/phpunit tests"
}
}