-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 935 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 935 Bytes
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
{
"name": "granam/integer",
"license": "MIT",
"authors": [
{
"name": "Jaroslav Týc",
"homepage": "http://jaroslavtyc.com",
"role": "Original author"
}
],
"type": "project",
"description": "Lightweight integer container with stand-alone converter",
"keywords": [
"php",
"integer",
"converter"
],
"homepage": "https://github.com/jaroslavtyc/granam-integer",
"autoload": {
"psr-4": {
"Granam\\Integer\\": "Integer"
}
},
"autoload-dev": {
"psr-4": {
"Granam\\Tests\\Integer\\": "tests/Integer",
"Granam\\Tests\\ExceptionsHierarchy\\": "vendor/granam/exceptions-hierarchy/tests/ExceptionsHierarchy"
}
},
"require": {
"php": ">=7.3",
"granam/number": "^5.0"
},
"require-dev": {
"mockery/mockery": "^1.2",
"granam/exceptions-hierarchy": "^5.0",
"phpunit/phpunit": "^9.0",
"granam/test-with-mockery": "^2.0"
}
}