-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
130 lines (130 loc) · 4.02 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "bdk/debug",
"description": "Browser/javascript like console class for PHP",
"keywords": ["debug", "chromelogger", "debugging", "firephp", "var_dump", "inspect", "errorhandler", "phpdebugconsole", "php-debugbar", "whoops", "logger", "PSR-3"],
"homepage": "http://bradkent.com/php/debug",
"license": "MIT",
"support": {
"docs": "http://bradkent.com/php/debug",
"issues": "https://github.com/bkdotcom/PHPDebugConsole/issues",
"source": "https://github.com/bkdotcom/PHPDebugConsole"
},
"authors": [
{
"name": "Brad Kent",
"email": "[email protected]",
"homepage": "http://www.bradkent.com/",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"src/Backtrace/Backtrace.php",
"src/Container/Container.php",
"src/Debug/Debug.php",
"src/Debug/Utility/Utility.php",
"src/ErrorHandler/ErrorHandler.php",
"src/Promise/Promise.php"
],
"psr-4": {
"bdk\\Backtrace\\": "src/Backtrace/",
"bdk\\Container\\": "src/Container/",
"bdk\\CurlHttpMessage\\": "src/CurlHttpMessage/",
"bdk\\Debug\\": "src/Debug/",
"bdk\\ErrorHandler\\": "src/ErrorHandler/",
"bdk\\Promise\\": "src/Promise/",
"bdk\\PubSub\\": "src/PubSub/",
"bdk\\Slack\\": "src/Slack/",
"bdk\\Teams\\": "src/Teams/"
}
},
"autoload-dev": {
"psr-4": {
"bdk\\Debug\\Dev\\": "dev/",
"bdk\\Test\\": "tests/"
}
},
"replace": {
"bdk/backtrace": "2.2.3",
"bdk/curl-http-message": "1.0",
"bdk/errorhandler": "3.3.4",
"bdk/promise": "1.0",
"bdk/pubsub": "3.2",
"bdk/slack": "1.0",
"bdk/teams": "1.0"
},
"require": {
"php": ">=5.4.0",
"bdk/http-message": "^1.3.3 || ^2.3.3 || ^3.3.3",
"jdorn/sql-formatter": "^1.2"
},
"require-dev": {
"bdk/devutil": "dev-master",
"bdk/wamp-publisher": "dev-master",
"doctrine/dbal": ">=2.5",
"guzzlehttp/psr7": "^1.6",
"monolog/monolog": ">=1.0",
"php-curl-class/php-curl-class": ">=8.6",
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
"psr/log": ">=1.0",
"psr/simple-cache": ">=1.0",
"slim/slim": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"swiftmailer/swiftmailer": ">=5.0",
"symfony/http-foundation": ">=2.8"
},
"scripts": {
"coverage" : [
"vendor/bin/phpunit -v --coverage-clover coverage/clover.xml --coverage-html coverage/html",
"cp vendor/bdk/devutil/src/htmlCoverageCustom.css coverage/html/_css/custom.css",
"php -f vendor/bdk/devutil/src/coverageChecker.php -- coverage/clover.xml"
],
"cs" : [
"vendor/bin/phpcs -p -s --colors ./src"
],
"post-update-cmd": [
"bdk\\Debug\\Dev\\ComposerScripts::postUpdate"
],
"test" : [
"vendor/bin/phpunit -v"
],
"update-char-data": [
"bdk\\Debug\\Dev\\UpdateCharData::update"
],
"update-copyright": [
"bdk\\Debug\\Dev\\UpdateCopyright::update"
],
"update-phpcs": [
"bdk\\Debug\\Dev\\ComposerScripts::updatePhpCsXml"
],
"webserver": [
"cd tests/docroot; php -S 127.0.0.1:8080 frontController.php; cd ../.."
]
},
"scripts-descriptions": {
"coverage": "analyze code coverage",
"cs": "check coding standards",
"test": "run unit tests",
"update-char-data": "rebuild confusable char latest unicode data",
"update-copyright": "update copyright tags",
"update-phpcs": "update phpcs.xml.dist & phpcs.slevomat.xml",
"webserver": "run php's internal webserver"
},
"extra": {
"laravel": {
"providers": [
"bdk\\Debug\\Framework\\Laravel\\ServiceProvider"
]
}
},
"suggest": {
"bdk/wamp-publisher": "Publish messages to a WAMP (Web Application Messaging Protocol) router. Required for Wamp route.",
"bdk/debug-wamp-client": "Client to display logging published via PHPDebugConsole's WAMP plugin",
"psr/log": "PSR-3 : Common interface for logging libraries"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}