forked from dvdoug/BoxPacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.29 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
45
46
{
"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": "http://boxpacker.io/",
"authors": [
{
"name": "Doug Wright",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "^7.3||^8.0",
"ext-json": "*",
"psr/log": "^1.1"
},
"require-dev": {
"behat/behat": "^3.8.1",
"dvdoug/behat-code-coverage": "^5.2",
"friendsofphp/php-cs-fixer": "^2.18.0",
"monolog/monolog": "^2.2",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"bin-compat" : "full",
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"DVDoug\\BoxPacker\\": "src/",
"DVDoug\\BoxPacker\\Test\\": "tests/Test"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}