Skip to content

Commit a8237a6

Browse files
committed
Update composer.json
Set as a replacement for the original since it's more or less abandoned.
1 parent ec467df commit a8237a6

File tree

1 file changed

+43
-32
lines changed

1 file changed

+43
-32
lines changed

composer.json

Lines changed: 43 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,45 @@
11
{
2-
"name": "fuzz/http-exception",
3-
"description": "A library containing a set of RESTful HTTP exceptions that use a consistent interface.",
4-
"license": "MIT",
5-
"authors": [
6-
{
7-
"name": "Fuzz Web",
8-
"email": "opensource@fuzzproductions.com"
9-
}
10-
],
11-
"require": {
12-
"php": ">=7.0"
13-
},
14-
"require-dev": {
15-
"phpunit/phpunit": "~5.6"
16-
},
17-
"autoload": {
18-
"psr-4": {
19-
"Fuzz\\HttpException\\": "src/",
20-
"Fuzz\\HttpException\\Tests\\": "tests/"
21-
}
22-
},
23-
"scripts": {
24-
"test": [
25-
"vendor/bin/phpunit"
26-
],
27-
"test-coverage": [
28-
"vendor/bin/phpunit --coverage-html tests/coverage"
29-
],
30-
"open-coverage": [
31-
"open -a \"Google Chrome\" tests/coverage/index.html"
32-
]
33-
}
2+
"name": "jtheuerkauf/php-http-exception",
3+
"description": "A NON-PSR-7 library containing a set of RESTful HTTP exceptions that use a consistent interface.",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Joe Theuerkauf",
8+
"email": "joe@theuerkauf.dev"
9+
},
10+
{
11+
"name": "Fuzz Web",
12+
"email": "opensource@fuzzproductions.com"
13+
}
14+
],
15+
"replace": {
16+
"fuzz/http-exception": "1.0.2"
17+
},
18+
"require": {
19+
"php": ">=7.0"
20+
},
21+
"require-dev": {
22+
"phpunit/phpunit": ">=5.6"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Fuzz\\HttpException\\": "src/",
27+
"Fuzz\\HttpException\\Tests\\": "tests/"
28+
}
29+
},
30+
"scripts": {
31+
"test": [
32+
"vendor/bin/phpunit"
33+
],
34+
"test-coverage": [
35+
"vendor/bin/phpunit --coverage-html tests/coverage"
36+
]
37+
},
38+
"keywords": [
39+
"error",
40+
"exception",
41+
"general",
42+
"generic",
43+
"http"
44+
]
3445
}

0 commit comments

Comments
 (0)