We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af4a05 commit 98dfc4fCopy full SHA for 98dfc4f
3 files changed
.gitignore
@@ -0,0 +1,2 @@
1
+*.lock
2
+/vendor/
README.md
@@ -1,2 +1,7 @@
# libalgo
-PHP library of algorithms
+PHP library of algorithms.
3
+
4
+## Algorithms
5
6
+### Optimization problems
7
+- [Knapsack Problem](https://github.com/writ3it/libalgo-knapsack-problem)
composer.json
@@ -0,0 +1,16 @@
+{
+ "name": "writ3it/libalgo",
+ "description": "PHP library of algorithms.",
+ "type": "metapackage",
+ "license": "MIT",
+ "authors": [
+ {
8
+ "name": "writ3it",
9
+ "email": "git@writ3it.tech"
10
+ }
11
+ ],
12
+ "minimum-stability": "stable",
13
+ "require": {
14
+ "writ3it/libalgo-knapsack-problem": "^0.1.0"
15
16
+}
0 commit comments