-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
60 lines (60 loc) · 1.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "runcmf/runtracy",
"description": "Slim Framework Debugger",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"Slim Framework",
"runtracy",
"Tracy",
"Debug bar",
"Debugbar",
"Debugger",
"Eloquent ORM",
"illuminate database",
"PTY Terminal",
"Profiler",
"Slim3", "Slim 3",
"Twig",
"Idorm",
"Doctrine DBAL"
],
"authors": [
{
"name": "Vladimir",
"email": "1f7.wizard@gmail.com",
"homepage": "http://runcmf.ru"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "~3.7",
"tracy/tracy": "~2.4"
},
"require-dev": {
"satooshi/php-coveralls": "1.*",
"squizlabs/php_codesniffer": "^2.5",
"phpunit/phpunit": "^5.7",
"illuminate/database": "^5.3",
"twig/twig": "~1.24",
"slim/twig-view": "~2.1",
"j4mie/idiorm": "^1.5",
"doctrine/orm": "^2.5"
},
"autoload": {
"psr-4": {
"RunTracy\\": "src/RunTracy"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "php vendor/bin/phpunit"
}
}