-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.04 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.04 KB
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
{
"name": "php-laff/analazer",
"description": "PHP Implementation of the Largest Area Fit First (LAFF) 3D (three dimension) box packing algorithm",
"license": "MIT",
"keywords": ["largest area fit first", "box packing algorithm", "packaging", "optimization problems", "three-dimensional packing", "combinatorial problem"],
"authors": [
{
"name": "Joseph Bielawski",
"email": "stloyd@gmail.com"
}
],
"autoload": {
"psr-4": {
"LAFF\\Analyzer\\": "src/LAFF/Analyzer/"
}
},
"autoload-dev": {
"psr-4": {
"LAFF\\Analyzer\\Tests\\": "tests/LAFF/Analyzer/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8"
},
"minimum-stability": "stable",
"scripts": {
"cs-fixer": "@php vendor/bin/php-cs-fixer fix",
"test": "@php vendor/bin/phpunit",
"coverage": "@php vendor/bin/phpunit --coverage-text",
"phpstan": "@php vendor/bin/phpstan analyse src/ tests/ --level max"
}
}