-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
46 lines (46 loc) · 1.16 KB
/
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
39
40
41
42
43
44
45
46
{
"name": "sitetheory/profiler-storage-bundle",
"type": "symfony-bundle",
"description": "Sitetheory ProfilerStorageBundle",
"keywords": [
"symfony",
"php",
"profiler",
"storage",
"bundle",
"mongodb",
"mysql",
"pdo",
"pdo-mysql"
],
"homepage": "https://sitetheory.io",
"license": "MIT",
"authors": [
{
"name": "Sitetheory Dev Team",
"email": "[email protected]",
"homepage": "https://sitetheory.io"
}
],
"require": {
"php": ">=5.5.9",
"symfony/framework-bundle": ">=2.7 <4.0",
"symfony/dependency-injection": ">=2.7 <4.0",
"symfony/yaml": ">=2.7 <4.0"
},
"require-dev": {
"phpunit/phpunit": "~5.5|~5.6|~7.0|~7.1|~7.3|~7.4",
"mongodb/mongodb": "~1.3|~1.4|~1.5|~1.6|~1.7"
},
"suggest": {
"symfony/web-profiler-bundle": "To use the data collector."
},
"autoload": {
"psr-4": { "Sitetheory\\Bundle\\ProfilerStorageBundle\\": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}