Skip to content

Commit 0d8336e

Browse files
committed
Update docs
1 parent 3cc6e76 commit 0d8336e

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Antidot event dispatcher
22

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)
77
[![Maintainability](https://api.codeclimate.com/v1/badges/6568ab3621bae2850e6d/maintainability)](https://codeclimate.com/github/kpicaza/antidot-event-dispatcher/maintainability)
88

99
[Psr 14 Event dispatcher](https://github.com/php-fig/event-dispatcher) implementation.
@@ -16,7 +16,8 @@ Using [composer](https://getcomposer.org/download/)
1616
composer require antidot-fw/event-dispatcher
1717
````
1818

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+
2021
it install the library automatically
2122

2223
![install](./docs/install.jpg)

docs/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Event Dispatcher
22

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+
39
[Psr 14 Event dispatcher](https://github.com/php-fig/event-dispatcher) implementation.
410

511
## Installation
@@ -10,9 +16,9 @@ Using [composer](https://getcomposer.org/download/)
1016
composer require antidot-fw/event-dispatcher
1117
````
1218

13-
### Using Zend Config Aggregator
19+
### Using Laminas Config Aggregator
1420

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
1622

1723
![install](/install.jpg)
1824

docs/index.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,25 @@
1010
</head>
1111
<body>
1212
<div id="app"></div>
13+
<script src="//unpkg.com/docsify-edit-on-github/index.js"></script>
1314
<script>
1415
window.$docsify = {
1516
coverpage: true,
1617
name: 'Antidot Event Dispatcher',
1718
repo: 'https://github.com/kpicaza/antidot-event-dispatcher.git',
19+
auto2top: true,
1820
tabs: {
1921
persist : true, // default
2022
sync : true, // default
2123
theme : 'material', // default
2224
tabComments: true, // default
2325
tabHeadings: true // default
24-
}
26+
},
27+
plugins: [
28+
EditOnGithubPlugin.create(
29+
'https://github.com/antidot-framework/antidot-event-dispatcher/blob/master/docs/'
30+
),
31+
]
2532
}
2633
</script>
2734
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>

0 commit comments

Comments
 (0)