-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 879 Bytes
/
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
{
"name": "joefallon/phpscalars",
"type": "library",
"description": "This package contains a set of classes for wrapping/boxing scalar values. Also, classes are provided for working with arbitrarily large integers and arbitrarily precise floating point numbers.",
"keywords": [ "PHP", "scalars", "type hinting" ],
"homepage": "https://github.com/joefallon/phpscalars",
"license": "MIT",
"authors": [
{
"name": "Joe Fallon",
"email": "[email protected]",
"homepage": "http://blog.joefallon.net"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"joefallon/phpautoloader": "~1.0",
"joefallon/kisstest": "~1.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-0":
{
"JoeFallon": "src/"
}
}
}