Skip to content

Commit 98dfc4f

Browse files
committed
Knapsack problem added.
1 parent 8af4a05 commit 98dfc4f

3 files changed

Lines changed: 24 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.lock
2+
/vendor/

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
# libalgo
2-
PHP library of algorithms
2+
PHP library of algorithms.
3+
4+
## Algorithms
5+
6+
### Optimization problems
7+
- [Knapsack Problem](https://github.com/writ3it/libalgo-knapsack-problem)

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "writ3it/libalgo",
3+
"description": "PHP library of algorithms.",
4+
"type": "metapackage",
5+
"license": "MIT",
6+
"authors": [
7+
{
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

Comments
 (0)