File tree Expand file tree Collapse file tree 1 file changed +43
-32
lines changed Expand file tree Collapse file tree 1 file changed +43
-32
lines changed Original file line number Diff line number Diff line change 1
1
{
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
+ ]
34
45
}
You can’t perform that action at this time.
0 commit comments