forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 945 Bytes
/
composer.json
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
27
28
29
30
31
32
{
"name": "dvdoug/boxpacker",
"description": "An implementation of the 3D (actually 4D) bin packing/knapsack problem (aka creating parcels by putting items into boxes)",
"keywords": ["packing","binpacking","bin packing","knapsack","box","boxpacking","parcel","parcelpacking","shipping","packaging","boxes", "container"],
"homepage": "http://boxpacker.io/",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35||^5.0||^6.0",
"monolog/monolog": "^1.11",
"squizlabs/php_codesniffer": "^2.5"
},
"autoload": {
"psr-4": {
"DVDoug\\BoxPacker\\": ""
}
},
"autoload-dev": {
"psr-4": {
"DVDoug\\BoxPacker\\Test\\": "tests/Test"
}
}
}