Skip to content

Commit

Permalink
Initial commit Quick Sort
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyElePHPant committed Jul 24, 2019
1 parent 5a54164 commit c970b51
Show file tree
Hide file tree
Showing 7 changed files with 1,629 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
vendor/
.phpunit.result.cache
21 changes: 21 additions & 0 deletions composer.json
@@ -0,0 +1,21 @@
{
"name": "lazyelephpant/sorting",
"description": "Exploring CS sorting techniques in PHP",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "LazyElePHPant",
"email": "kevin@kevinpimentel.com"
}
],
"require": {},
"require-dev": {
"phpunit/phpunit": "^8.2"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
}
}

0 comments on commit c970b51

Please sign in to comment.