Skip to content

Commit 9ea3386

Browse files
committed
update readme
1 parent ca733cc commit 9ea3386

File tree

3 files changed

+57
-52
lines changed

3 files changed

+57
-52
lines changed

.editorconfig

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ charset = utf-8
1111
insert_final_newline = true
1212
trim_trailing_whitespace = true
1313

14+
[*.json]
15+
indent_size = 2
16+
insert_final_newline = true
17+
trim_trailing_whitespace = true
18+
1419
[*.md]
1520
trim_trailing_whitespace = false
1621

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ErrorHandler
22
===============
33

44
### Installation
5-
This library supports PHP 5.4 - 8.3 and has no userland dependencies.
5+
This library supports PHP 5.4 - 8.3.
66

77
It is installable and autoloadable via [Composer](https://getcomposer.org/) as [bdk/errorhandler](https://packagist.org/packages/bdk/errorhandler).
88

composer.json

+51-51
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
{
2-
"name": "bdk/errorhandler",
3-
"description": "Event Emitting ErrorHandler",
4-
"keywords": ["errorhandler", "error", "exception"],
5-
"homepage": "http://github.com/bkdotcom/ErrorHandler",
6-
"license": "MIT",
7-
"support": {
8-
"issues": "https://github.com/bkdotcom/ErrorHandler/issues",
9-
"source": "https://github.com/bkdotcom/ErrorHandler"
10-
},
11-
"authors": [
12-
{
13-
"name": "Brad Kent",
14-
"email": "[email protected]",
15-
"homepage": "http://www.bradkent.com/",
16-
"role": "Developer"
17-
}
2+
"name": "bdk/errorhandler",
3+
"description": "Event Emitting ErrorHandler",
4+
"keywords": ["errorhandler", "error", "exception"],
5+
"homepage": "http://github.com/bkdotcom/ErrorHandler",
6+
"license": "MIT",
7+
"support": {
8+
"issues": "https://github.com/bkdotcom/ErrorHandler/issues",
9+
"source": "https://github.com/bkdotcom/ErrorHandler"
10+
},
11+
"authors": [
12+
{
13+
"name": "Brad Kent",
14+
"email": "[email protected]",
15+
"homepage": "http://www.bradkent.com/",
16+
"role": "Developer"
17+
}
18+
],
19+
"autoload": {
20+
"classmap": [
21+
"src/ErrorHandler/ErrorHandler.php"
1822
],
19-
"autoload": {
20-
"classmap": [
21-
"src/ErrorHandler/ErrorHandler.php"
22-
],
23-
"psr-4": {
24-
"bdk\\ErrorHandler\\": "src/ErrorHandler"
25-
}
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"bdk\\Test\\": "tests/"
30-
}
31-
},
32-
"require": {
33-
"php": ">=5.4.0",
34-
"bdk/backtrace": "^2.2.2",
35-
"bdk/pubsub": "^3.2"
36-
},
37-
"require-dev": {
38-
"bdk/devutil": "dev-master",
39-
"phpunit/phpunit": "^4.0 | ^5.0 | ^6.0 | ^7.0 | ^8.0 | ^9.0",
40-
"squizlabs/php_codesniffer": "^3.6"
41-
},
42-
"scripts": {
43-
"coverage" : [
44-
"vendor/bin/phpunit -v --coverage-clover coverage/clover.xml --coverage-html coverage/html",
45-
"cp vendor/bdk/devutil/src/htmlCoverageCustom.css coverage/html/_css/custom.css",
46-
"php -f vendor/bdk/devutil/src/coverageChecker.php -- coverage/clover.xml"
47-
],
48-
"cs" : [
49-
"vendor/bin/phpcs -p --colors ./src"
50-
],
51-
"test" : [
52-
"vendor/bin/phpunit -v"
53-
]
23+
"psr-4": {
24+
"bdk\\ErrorHandler\\": "src/ErrorHandler"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"bdk\\Test\\": "tests/"
5430
}
31+
},
32+
"require": {
33+
"php": ">=5.4.0",
34+
"bdk/backtrace": "^2.2.2",
35+
"bdk/pubsub": "^3.2"
36+
},
37+
"require-dev": {
38+
"bdk/devutil": "dev-master",
39+
"phpunit/phpunit": "^4.0 | ^5.0 | ^6.0 | ^7.0 | ^8.0 | ^9.0",
40+
"squizlabs/php_codesniffer": "^3.6"
41+
},
42+
"scripts": {
43+
"coverage" : [
44+
"vendor/bin/phpunit -v --coverage-clover coverage/clover.xml --coverage-html coverage/html",
45+
"cp vendor/bdk/devutil/src/htmlCoverageCustom.css coverage/html/_css/custom.css",
46+
"php -f vendor/bdk/devutil/src/coverageChecker.php -- coverage/clover.xml"
47+
],
48+
"cs" : [
49+
"vendor/bin/phpcs -p --colors ./src"
50+
],
51+
"test" : [
52+
"vendor/bin/phpunit -v"
53+
]
54+
}
5555
}

0 commit comments

Comments
 (0)