-
Notifications
You must be signed in to change notification settings - Fork 54
/
composer.json
46 lines (46 loc) · 1.35 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": "fabfuel/prophiler",
"description": "PHP Profiler & Developer Toolbar built for Phalcon",
"minimum-stability": "stable",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Fabian Fuelling",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Fabfuel\\Prophiler\\": "src/"
},
"classmap": ["tests/"]
},
"require": {
"psr/log": "~1.0",
"php" : ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpmd/phpmd": "~1.0",
"squizlabs/php_codesniffer": "~1.0",
"fabfuel/mongo": "~0.4",
"doctrine/orm": "~2.4",
"phalcon/devtools": "1.3.*@dev",
"elasticsearch/elasticsearch": "~1.3",
"container-interop/container-interop": "^1.1"
},
"suggest": {
"phalcon/devtools": "This tools provide you useful scripts, helping to develop applications that use with Phalcon.",
"fabfuel/mongo": "ORM for Mongo, supports lazy loading, object references, subdocument classes and their collections."
},
"repositories": [
{
"type": "vcs",
"url": "https://bitbucket.org/fabfuel/mongo.git"
},
{
"type": "vcs",
"url": "https://bitbucket.org/orangecloud/php-helper-array.git"
}
]
}