-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (31 loc) · 860 Bytes
/
composer.json
File metadata and controls
32 lines (31 loc) · 860 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
{
"name": "grayphp/helpers",
"description": "core php helper functions.",
"type": "library",
"license": "MIT",
"keywords": ["php helper", "php-helper", "php", "extended", "helper",
"helpers", "function", "functions", "files", "directories","arrays",
"JSON","MySQL","URL","HTTP","numbers","characters"],
"homepage": "https://github.com/grayphp/helper-functions",
"authors": [
{
"name": "sharif",
"email": "developersharif@yahoo.com"
}
],
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Grayphp\\Helpers\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"minimum-stability": "stable",
"require": {
"php": "*"
}
}