-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
27 lines (27 loc) · 893 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
{
"name": "nyratas/php-console-log",
"type": "library",
"description": "Displays var_dump()s in the browser's JavaScript console.",
"keywords": ["PHP", "debug", "console", "error", "log", "var_dump", "console.log", "logging", "javascript"],
"homepage": "https://github.com/Nyratas/php-console-log",
"license": "MIT",
"authors": [
{
"name": "Toon Van den Bos",
"email": "[email protected]",
"homepage": "https://be.linkedin.com/in/toon-van-den-bos-40461264",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Nyratas/php-console-log/issues"
},
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-0": {
"PHPConsoleLog": "src"
}
}
}