File tree Expand file tree Collapse file tree 3 files changed +22
-8
lines changed Expand file tree Collapse file tree 3 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Antidot event dispatcher
2
2
3
- [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/?branch=master )
4
- [ ![ Code Coverage] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/?branch=master )
5
- [ ![ Build Status] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/build-status/master )
6
- [ ![ Code Intelligence Status] ( https://scrutinizer-ci.com/g/kpicaza /antidot-event-dispatcher/badges/code-intelligence.svg?b=master )] ( https://scrutinizer-ci.com/code-intelligence )
3
+ [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/?branch=master )
4
+ [ ![ Code Coverage] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/?branch=master )
5
+ [ ![ Build Status] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/build-status/master )
6
+ [ ![ Code Intelligence Status] ( https://scrutinizer-ci.com/g/antidot-framework /antidot-event-dispatcher/badges/code-intelligence.svg?b=master )] ( https://scrutinizer-ci.com/code-intelligence )
7
7
[ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/6568ab3621bae2850e6d/maintainability )] ( https://codeclimate.com/github/kpicaza/antidot-event-dispatcher/maintainability )
8
8
9
9
[ Psr 14 Event dispatcher] ( https://github.com/php-fig/event-dispatcher ) implementation.
@@ -16,7 +16,8 @@ Using [composer](https://getcomposer.org/download/)
16
16
composer require antidot-fw/event-dispatcher
17
17
````
18
18
19
- ### Using [ Zend Config Aggregator] ( https://framework.zend.com/blog/2017-04-20-config-aggregator.html )
19
+ ### Using [ Laminas config Aggregator] ( https://docs.laminas.dev/laminas-config-aggregator/ )
20
+
20
21
it install the library automatically
21
22
22
23
![ install] ( ./docs/install.jpg )
Original file line number Diff line number Diff line change 1
1
# Event Dispatcher
2
2
3
+ [ ![ Scrutinizer Code Quality] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/badges/quality-score.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/?branch=master )
4
+ [ ![ Code Coverage] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/?branch=master )
5
+ [ ![ Build Status] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/badges/build.png?b=master )] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/build-status/master )
6
+ [ ![ Code Intelligence Status] ( https://scrutinizer-ci.com/g/antidot-framework/antidot-event-dispatcher/badges/code-intelligence.svg?b=master )] ( https://scrutinizer-ci.com/code-intelligence )
7
+ [ ![ Maintainability] ( https://api.codeclimate.com/v1/badges/6568ab3621bae2850e6d/maintainability )] ( https://codeclimate.com/github/kpicaza/antidot-event-dispatcher/maintainability )
8
+
3
9
[ Psr 14 Event dispatcher] ( https://github.com/php-fig/event-dispatcher ) implementation.
4
10
5
11
## Installation
@@ -10,9 +16,9 @@ Using [composer](https://getcomposer.org/download/)
10
16
composer require antidot-fw/event-dispatcher
11
17
````
12
18
13
- ### Using Zend Config Aggregator
19
+ ### Using Laminas Config Aggregator
14
20
15
- [ Zend config Aggregator] ( https://framework.zend.com/blog/2017-04-20- config-aggregator.html ) installs the library automatically
21
+ [ Laminas config Aggregator] ( https://docs.laminas.dev/laminas- config-aggregator/ ) installs the library automatically
16
22
17
23
![ install] ( /install.jpg )
18
24
Original file line number Diff line number Diff line change 10
10
</ head >
11
11
< body >
12
12
< div id ="app "> </ div >
13
+ < script src ="//unpkg.com/docsify-edit-on-github/index.js "> </ script >
13
14
< script >
14
15
window . $docsify = {
15
16
coverpage : true ,
16
17
name : 'Antidot Event Dispatcher' ,
17
18
repo : 'https://github.com/kpicaza/antidot-event-dispatcher.git' ,
19
+ auto2top : true ,
18
20
tabs : {
19
21
persist : true , // default
20
22
sync : true , // default
21
23
theme : 'material' , // default
22
24
tabComments : true , // default
23
25
tabHeadings : true // default
24
- }
26
+ } ,
27
+ plugins : [
28
+ EditOnGithubPlugin . create (
29
+ 'https://github.com/antidot-framework/antidot-event-dispatcher/blob/master/docs/'
30
+ ) ,
31
+ ]
25
32
}
26
33
</ script >
27
34
< script src ="//unpkg.com/docsify/lib/docsify.min.js "> </ script >
You can’t perform that action at this time.
0 commit comments