forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 740 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 740 Bytes
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
{
"name": "dvdoug/boxpacker",
"description": "An implementation of the 3D bin packing/knapsack problem (aka creating parcels by putting items into boxes)",
"keywords": ["packing","binpacking","bin packing","knapsack","box","boxpacking","parcel","parcelpacking","shipping"],
"homepage": "https://github.com/dvdoug/BoxPacker",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"monolog/monolog": "~1.11"
},
"autoload": {
"psr-4": {
"DVDoug\\BoxPacker\\": ""
}
}
}