-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 981 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
{
"name": "rotexsoft/handy-php-functions",
"type": "library",
"description": "A bunch of functions that either extend the existing functionality in native php functions or add functionality not available via native php functions.",
"keywords": [ "array", "arrays", "string", "strings", "functions", "number", "numbers", "numeric"],
"homepage": "https://github.com/rotexsoft/HandyPhpFunctions",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Rotimi Adegbamigbe",
"email": "[email protected]",
"homepage": "http://rotimis-corner.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"devster/ubench": "^1.1",
"digitalnature/php-ref": "^1.0",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"files": ["src/array-functions.php"]
}
}