-
-
Notifications
You must be signed in to change notification settings - Fork 157
/
composer.json
44 lines (44 loc) · 1.23 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
{
"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"],
"type": "library",
"homepage": "https://boxpacker.io/",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-json": "*",
"psr/log": "^1.0||^2.0||^3.0"
},
"require-dev": {
"behat/behat": "^3.13",
"dvdoug/behat-code-coverage": "^5.3.1",
"friendsofphp/php-cs-fixer": "^3.38.2",
"monolog/monolog": "^3.5",
"phpunit/phpunit": "^10.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-compat" : "full",
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"DVDoug\\BoxPacker\\": ["src/", "tests/"]
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}