-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.2 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.2 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "alemhar/polykit",
"description": "A robust PHP library for geometric polygon operations with support for advanced features like arc segments, boolean operations, and polygon relationships.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Alex Harman",
"homepage": "https://github.com/alemhar"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"suggest": {
"laravel/framework": "^8.0|^9.0|^10.0",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"PolyKitLib\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"PolyKitLib\\Providers\\PolyKitServiceProvider"
],
"aliases": {
"PolyKit": "PolyKitLib\\Facades\\PolyKit"
}
}
},
"keywords": [
"polygon",
"geometry",
"computational geometry",
"boolean operations",
"area calculation",
"perimeter calculation",
"arc segments",
"laravel"
],
"minimum-stability": "stable"
}