Skip to content

Commit f4bef72

Browse files
committed
refactored quick sort
1 parent 84d8854 commit f4bef72

File tree

4 files changed

+522
-78
lines changed

4 files changed

+522
-78
lines changed

composer.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,38 @@
11
{
22
"name": "doganoo/php-algorithms",
3-
"description": "A collection of common algorithms implemented in PHP. The collection is based on \"Cracking the Coding Interview\" by Gayle Laakmann McDowell",
43
"type": "library",
5-
"license": "MIT",
6-
"homepage": "https://www.dogan-ucar.de/phpalgorithms-2/",
4+
"description": "A collection of common algorithms implemented in PHP. The collection is based on \"Cracking the Coding Interview\" by Gayle Laakmann McDowell",
75
"keywords": [
86
"algorithms",
97
"data structures"
108
],
9+
"homepage": "https://www.dogan-ucar.de/phpalgorithms-2/",
10+
"license": "MIT",
1111
"authors": [
1212
{
1313
"name": "Dogan Ucar",
1414
"email": "[email protected]",
1515
"homepage": "https://www.dogan-ucar.de"
1616
}
1717
],
18+
"require": {
19+
"php": ">=7.1",
20+
"ext-json": "*",
21+
"ext-pdo": "*",
22+
"doganoo/php-util": "0.3.*"
23+
},
24+
"require-dev": {
25+
"ergebnis/composer-normalize": "^2.9",
26+
"phpcompatibility/php-compatibility": "^9.3",
27+
"phpunit/phpunit": "6.5",
28+
"squizlabs/php_codesniffer": "^3.5"
29+
},
1830
"autoload": {
1931
"psr-4": {
2032
"doganoo\\PHPAlgorithms\\": "src/",
2133
"doganoo\\PHPAlgorithmsTest\\": "tests/"
2234
}
2335
},
24-
"require-dev": {
25-
"phpunit/phpunit": "6.5",
26-
"squizlabs/php_codesniffer": "^3.5",
27-
"phpcompatibility/php-compatibility": "^9.3"
28-
},
29-
"require": {
30-
"php": ">=7.1",
31-
"doganoo/php-util": "0.3.*",
32-
"ext-json": "*",
33-
"ext-pdo": "*"
34-
},
3536
"scripts": {
3637
"run-test": "vendor/bin/phpunit tests"
3738
}

0 commit comments

Comments
 (0)