-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
84 lines (84 loc) · 2.94 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "laminas/laminas-developer-tools",
"description": "Module for developer and debug tools for use with laminas-mvc applications.",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"debug",
"developer",
"module"
],
"homepage": "https://laminas.dev",
"support": {
"issues": "https://github.com/laminas/laminas-developer-tools/issues",
"source": "https://github.com/laminas/laminas-developer-tools",
"rss": "https://github.com/laminas/laminas-developer-tools/releases.atom",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true,
"platform": {
"php": "8.1.99"
}
},
"extra": {
"laminas": {
"module": "Laminas\\DeveloperTools"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-http": "^2.15",
"laminas/laminas-modulemanager": "^2.10",
"laminas/laminas-mvc": "^3.1",
"laminas/laminas-servicemanager": "^3.3",
"laminas/laminas-stdlib": "^3.6",
"laminas/laminas-view": "^2.13.1",
"symfony/var-dumper": "^6.0 || ^7.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.19"
},
"suggest": {
"aist/aist-git-tools": "Show you information about current GIT repository",
"bjyoungblood/bjy-profiler": "Version: dev-master, allows the usage of the (Laminas) Db collector.",
"doctrine/doctrine-orm-module": "Profile DoctrineORM queries",
"jhuet/zdt-logger-module": "Show you log data from Laminas\\Log",
"ocramius/ocra-service-manager": "OcraServiceManager can help you track dependencies within your application.",
"san/san-session-toolbar": "SanSessionToolbar can help you see current Laminas\\Session data you're using within your application.",
"snapshotpl/api-tools-snap-event-debugger": "ZfSnapEventDebugger can help you debug events from Laminas\\EventManager"
},
"autoload": {
"psr-4": {
"Laminas\\DeveloperTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\DeveloperTools\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@static-analysis",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"conflict": {
"zendframework/zend-developer-tools": "*"
}
}