forked from raulfraile/ladybug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.57 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
47
{
"name": "raulfraile/ladybug",
"description": "Simple and Extensible PHP Dumper",
"keywords": ["ladybug", "dumper", "dump", "var_dump", "print_r"],
"homepage": "https://github.com/raulfraile/ladybug",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Raul Fraile",
"email": "raulfraile@gmail.com",
"homepage": "http://www.raulfb.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.9",
"raulfraile/ladybug-theme-modern": ">=1.0.7,<2.0",
"raulfraile/ladybug-plugin-extra": "~1.0.0",
"symfony/console": ">=2.0",
"symfony/finder": ">=2.0",
"symfony/dependency-injection": ">=2.0",
"symfony/config": ">=2.0",
"twig/twig": ">=1.7.0",
"ptachoire/cssembed": "v1.0.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"mockery/mockery": "0.9.1",
"symfony/dom-crawler": ">=2.0.4",
"phpdocumentor/reflection-docblock": "2.0.0",
"jms/serializer": ">=0.11.0"
},
"suggest": {
"phpdocumentor/reflection-docblock": "Required to display object methods description",
"jms/serializer": "Required to serialize data to XML and JSON",
"symfony/yaml": "Required to serialize data to YAML format"
},
"autoload": {
"psr-0": {
"Ladybug\\Theme": ["../ladybug-themes", "data/themes"],
"Ladybug\\Plugin": ["../ladybug-plugins", "data/plugins"],
"Ladybug": "src/"
}
},
"minimum-stability": "dev"
}