forked from latuconsinafr/3d-bin-packager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1 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
{
"name": "ferhatyasar/3d-bin-packager",
"description": "PHP Library for 3D Bin Packing.",
"keywords": [
"php",
"bin-packing",
"2d-bin-packing",
"3d-bin-packing"
],
"license": "MIT",
"authors": [
{
"name": "Farista Latuconsina",
"email": "[email protected]",
"homepage": "https://github.com/latuconsinafr"
}
],
"require": {
"php": "^7.4 || ^8.0"
},
"autoload": {
"psr-4": {
"ferhatyasar\\BinPackager\\BinPackager3D\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "phpunit --testdox --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:coverage": "php -d xdebug.mode=coverage -r \"require 'vendor/bin/phpunit';\" -- --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}