-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.14 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "marcoconsiglio/goniometry",
"description": "A PHP support for string, decimal, radian and object angles, providing goniometric algebra and comparison between angles.",
"type": "library",
"keywords": ["angle", "angle object", "goniometry", "goniometric algebra", "angular value", "decimal angle", "radian angle", "radian", "degrees", "minutes", "seconds"],
"license": "MIT",
"autoload": {
"psr-4": {
"MarcoConsiglio\\Goniometry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MarcoConsiglio\\Goniometry\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Marco Consiglio",
"email": "mrccnsgl@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.4",
"ext-bcmath": "^8.4",
"marcoconsiglio/modular-arithmetic": "^4.0",
"marcoconsiglio/faker-php-number-helpers": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^13",
"rector/rector": "^2.4",
"psy/psysh": "^0.12.23"
},
"replace": {
"marcoconsiglio/trigonometry": "*"
}
}