-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (24 loc) · 747 Bytes
/
composer.json
File metadata and controls
25 lines (24 loc) · 747 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
{
"name": "arashjafari/dump-plus",
"description": "Provides variety of formats for dumps information about variables or objects",
"keywords": ["dump_plus", "dump-plus", "print_r", "var_dump", "debug", "better", "pretty", "print", "dump", "cli", "console.log", "alert"],
"homepage": "https://github.com/arashjafari/dump-plus",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arash Jafari",
"email": "arashrj@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0"
},
"autoload": {
"files": [ "./src/functions.php" ],
"psr-4":{
"ArashJafari\\DumpPlus\\": "./src/"
}
}
}