Skip to content

Commit 527eff2

Browse files
committed
Renamed library "Retry Error Handlers" -> "Retry exception handlers".
1 parent d3be509 commit 527eff2

11 files changed

+53
-1217
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ php:
99
- 5.5
1010
- 5.6
1111
- 7.0
12+
- 7.1
1213

1314
install:
1415
- alias composer=composer\ -n && composer selfupdate
1516
- composer validate
1617
- composer --prefer-source install
17-
- composer --prefer-source require satooshi/php-coveralls
1818

1919
script:
2020
- bin/test --coverage-clover=build/logs/clover.xml
2121

2222
after_success:
23+
- composer --prefer-source require satooshi/php-coveralls
2324
- vendor/bin/coveralls -v

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
Retry error handlers
2-
====================
1+
Retry exception handlers
2+
========================
33

44
[![Latest version][Version image]][Releases]
5+
[![Total downloads][Downloads image]][Downloads]
56
[![Build status][Build image]][Build]
67
[![Test coverage][Coverage image]][Coverage]
78
[![Code style][Style image]][Style]
89

9-
Provides error handlers for [Retry][Retry].
10+
Provides exception handlers for [Retry][Retry].
1011

1112
Requirements
1213
------------
@@ -15,12 +16,15 @@ Requirements
1516
- [Composer](https://getcomposer.org/)
1617

1718

18-
[Releases]: https://github.com/ScriptFUSION/Retry-error-handlers/releases
19-
[Version image]: https://poser.pugx.org/scriptfusion/retry-error-handlers/v/stable "Latest version"
20-
[Build]: http://travis-ci.org/ScriptFUSION/Retry-error-handlers
21-
[Build image]: https://travis-ci.org/ScriptFUSION/Retry-error-handlers.svg "Build status"
22-
[Coverage]: https://coveralls.io/github/ScriptFUSION/Retry-Error-Handlers
23-
[Coverage image]: https://coveralls.io/repos/ScriptFUSION/Retry-Error-Handlers/badge.svg "Test coverage"
24-
[Style]: https://styleci.io/repos/63633635
25-
[Style image]: https://styleci.io/repos/63633635/shield?style=flat "Code style"
19+
[Releases]: https://github.com/ScriptFUSION/Retry-exception-handlers/releases
20+
[Version image]: https://poser.pugx.org/scriptfusion/retry-exception-handlers/v/stable "Latest version"
21+
[Downloads]: https://packagist.org/packages/scriptfusion/retry-exception-handlers
22+
[Downloads image]: https://poser.pugx.org/scriptfusion/retry-exception-handlers/downloads "Total downloads"
23+
[Build]: http://travis-ci.org/ScriptFUSION/Retry-exception-handlers
24+
[Build image]: https://travis-ci.org/ScriptFUSION/Retry-exception-handlers.svg "Build status"
25+
[Coverage]: https://coveralls.io/github/ScriptFUSION/Retry-exception-handlers
26+
[Coverage image]: https://coveralls.io/repos/ScriptFUSION/Retry-exception-handlers/badge.svg "Test coverage"
27+
[Style]: https://styleci.io/repos/76198855
28+
[Style image]: https://styleci.io/repos/76198855/shield?style=flat "Code style"
29+
2630
[Retry]: https://github.com/ScriptFUSION/Retry

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "scriptfusion/retry-error-handlers",
3-
"description": "Error handlers for Retry.",
2+
"name": "scriptfusion/retry-exception-handlers",
3+
"description": "Exception handlers for Retry.",
44
"authors": [
55
{
66
"name": "Bilge",
@@ -15,12 +15,12 @@
1515
},
1616
"autoload": {
1717
"psr-4": {
18-
"ScriptFUSION\\Retry\\": "src"
18+
"ScriptFUSION\\Retry\\ExceptionHandler\\": "src"
1919
}
2020
},
2121
"autoload-dev": {
2222
"psr-4": {
23-
"ScriptFUSIONTest\\Retry\\": "test"
23+
"ScriptFUSIONTest\\Retry\\ExceptionHandler\\": "test"
2424
}
2525
}
2626
}

0 commit comments

Comments
 (0)