-
Notifications
You must be signed in to change notification settings - Fork 78
/
composer.json
34 lines (34 loc) · 982 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
30
31
32
33
34
{
"name": "firephp/firephp-core",
"description": "Minimal library for sending PHP variables to browsers.",
"type": "library",
"homepage": "https://github.com/firephp/firephp-core",
"license": "MIT",
"authors": [
{
"name": "Christoph Dorn",
"email": "[email protected]",
"homepage": "http://christophdorn.com"
}
],
"support": {
"issues": "https://github.com/firephp/firephp-core/issues",
"source": "https://github.com/firephp/firephp-core"
},
"autoload": {
"classmap": [
"lib/FirePHPCore/FirePHP.class.php",
"lib/FirePHPCore/FirePHP_TestWrapper.class.php",
"lib/FirePHPCore/fb.php"
],
"files": [
"lib/FirePHPCore/fb.php"
]
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"scripts": {
"test": "phpunit --testdox --configuration tests/phpunit.xml"
}
}