Skip to content

Commit 77f4640

Browse files
committed
release b1
1 parent 330ff39 commit 77f4640

File tree

6 files changed

+697
-0
lines changed

6 files changed

+697
-0
lines changed

composer.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "phpbbseo/related",
3+
"type": "phpbb-extension",
4+
"description": "Related Topics for phpBB-SEO",
5+
"homepage": "http://www.phpbb-seo.org",
6+
"keywords": ["phpbbSEO", "extension", "seo", "USU", "related", "topics", "similar"],
7+
"version": "2.0.0-b1",
8+
"time": "2019-03-12",
9+
"license": "GPL-2.0",
10+
"authors": [
11+
{
12+
"name": "Meis@M",
13+
"email": "info@phpbb-seo.org",
14+
"homepage": "http://www.phpbb-seo.org/",
15+
"role": "Lead Developer"
16+
},
17+
{
18+
"name": "dcz",
19+
"role": "Previous Developer"
20+
}
21+
],
22+
"require": {
23+
"php": ">=5.4.2"
24+
},
25+
"extra": {
26+
"display-name": "Related Topics for phpBB-SEO",
27+
"soft-require": {
28+
"phpbb/phpbb": "3.2.*@dev"
29+
},
30+
"version-check": {
31+
"host": "version.phpbb-seo.org",
32+
"directory": "/",
33+
"filename": "related.json"
34+
}
35+
}
36+
}

config/services.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# @package Related Topics phpBB SEO
3+
# @version $Id: services.yml 425 2019-07-08 11:57:16Z $
4+
# @copyright (c) 2019 www.phpbb-seo.org
5+
# @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
6+
#
7+
# You must indent with 4 spaces instead of 1 tab
8+
#
9+
services:
10+
phpbbseo.related.listener:
11+
class: phpbbseo\related\event\listener
12+
arguments:
13+
- @config
14+
- @auth
15+
- @template
16+
- @user
17+
- @cache
18+
- @dbal.conn
19+
- %core.root_path%
20+
- %core.php_ext%
21+
- @?phpbbseo.usu.core
22+
tags:
23+
- { name: event.listener }
24+

0 commit comments

Comments
 (0)