forked from darkalchemy/runtracy
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.64 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 1.64 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "semhoun/slim-tracy",
"description": "Tracy for Slim4 Framework Debugger",
"license": "Apache-2.0",
"type": "library",
"keywords": [
"Slim Framework",
"SlimTracy",
"Tracy",
"Debug bar",
"Debugbar",
"Debugger",
"Eloquent ORM",
"illuminate database",
"PTY Terminal",
"Profiler",
"Slim4",
"Slim 4",
"Twig",
"Doctrine DBAL"
],
"authors": [
{
"name": "Konstantin Kaluzhnikov",
"email": "k.kaluzhnikov@gmail.com",
"homepage": "https://github.com/EvilKraft"
},
{
"name": "Nathanael Semhoun",
"email": "nathanael@semhoun.net",
"homepage": "http://www.semhoun.net"
}
],
"version": "1.1.0",
"require": {
"php": "^8.2",
"ext-mbstring": "*",
"ext-json": "*",
"tracy/tracy": "^2.11",
"slim/slim": "^4.9"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.13",
"rector/rector": "^2.2",
"phpunit/phpunit": "^10.0",
"illuminate/database": "^10.0",
"twig/twig": "^3.3",
"slim/twig-view": "^3.3",
"doctrine/orm": "^3"
},
"autoload": {
"psr-4": {
"SlimTracy\\": "src/SlimTracy"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit"
],
"phpunit": "php vendor/bin/phpunit",
"rector-check": "rector process --dry-run",
"rector-fix": "rector process",
"insights-check": "phpinsights --config-path=./phpinsights.php",
"insights-fix": "phpinsights --config-path=./phpinsights.php -- fix"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}