-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
38 lines (38 loc) · 952 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
35
36
37
38
{
"name": "nicofuma/webprofiler",
"type": "phpbb-extension",
"description": "An extension for phpBB which allows you to consult the information generated by the profiler in the debug mode.",
"homepage": "https://www.phpbb.com",
"version": "2.0.1-dev",
"keywords": ["phpbb", "extension", "profiler", "debug"],
"license": "GPL-2.0",
"authors": [
{
"name": "Tristan Darricau",
"email": "[email protected]",
"role": "Lead Developer"
}
],
"require": {
"php": ">=5.3.3",
"symfony/stopwatch": "~2.8.0",
"symfony/web-profiler-bundle": "~2.8.0",
"symfony/framework-bundle": "~2.8.0",
"composer/installers": "~1.0",
"phpbb/phpbb": "~3.2.0@dev"
},
"require-dev": {
"phpbb/epv": "dev-master"
},
"extra": {
"display-name": "Web Profiler Extension",
"soft-require": {
"phpbb/phpbb": "3.2.*@dev"
},
"version-check": {
"host": "nicofuma.github.io",
"directory": "/",
"filename": "webprofiler.json"
}
}
}