This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 130
/
composer.json
85 lines (85 loc) · 2.95 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
85
{
"name": "zendframework/zend-developer-tools",
"description": "Module for developer and debug tools for use with zend-mvc applications.",
"license": "BSD-3-Clause",
"keywords": [
"zendframework",
"debug",
"developer",
"zf",
"module"
],
"support": {
"issues": "https://github.com/zendframework/zend-developer-tools/issues",
"source": "https://github.com/zendframework/zend-developer-tools",
"rss": "https://github.com/zendframework/zend-developer-tools/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^5.6 || ^7.0",
"symfony/var-dumper": "^3.4.36 || ^4.4.1 || ^5.0.1",
"zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
"zendframework/zend-modulemanager": "^2.7",
"zendframework/zend-mvc": "^2.7 || ^3.0.1",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
"zendframework/zend-stdlib": "^2.7 || ^3.0",
"zendframework/zend-view": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7.25 || ^6.4.4 || ^7.1",
"zendframework/zend-coding-standard": "~1.0.0"
},
"suggest": {
"bjyoungblood/bjy-profiler": "Version: dev-master, allows the usage of the (Zend) Db collector.",
"ocramius/ocra-service-manager": "OcraServiceManager can help you track dependencies within your application.",
"san/san-session-toolbar": "SanSessionToolbar can help you see current Zend\\Session data you're using within your application.",
"snapshotpl/zf-snap-event-debugger": "ZfSnapEventDebugger can help you debug events from Zend\\EventManager",
"doctrine/doctrine-orm-module": "Profile DoctrineORM queries",
"jhuet/zdt-logger-module": "Show you log data from Zend\\Log",
"aist/aist-git-tools": "Show you informations about current GIT repository"
},
"autoload": {
"psr-4": {
"ZendDeveloperTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendDeveloperToolsTest\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-develop": "2.1.x-dev"
},
"zf": {
"module": "ZendDeveloperTools"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"authors": [
{
"name": "Evan Coury",
"email": "[email protected]",
"homepage": "http://blog.evan.pro/"
},
{
"name": "Eric Boh",
"email": "[email protected]"
}
]
}