-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.05 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
{
"name": "drdplus/tables",
"license": "MIT",
"type": "library",
"description": "Drd+ tables and their units conversion",
"autoload": {
"psr-4": {
"DrdPlus\\Tables\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DrdPlus\\Tests\\": "tests",
"Granam\\Tests\\ExceptionsHierarchy\\": "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"
}
},
"require": {
"php": ">=7.4",
"drdplus/base-properties": "^3.0",
"drdplus/calculations": "^1.0",
"drdplus/codes": "^2.3",
"granam/boolean": "^3.2",
"granam/dice-rolls": "^6.0",
"granam/float": "^5.0",
"granam/integer": "^7.1",
"granam/number": "^5.1",
"granam/strict-object": "^3.1",
"granam/string": "^4.1",
"granam/tools": "^6.1"
},
"require-dev": {
"granam/exceptions-hierarchy": "~5.0",
"granam/test-with-mockery": "^2.0",
"mockery/mockery": "~1.2",
"phpunit/phpunit": "~9.3",
"rector/rector": "^0.11.53",
"roave/security-advisories": "dev-master"
},
"config": {
"sort-packages": true
}
}