Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit 9eff14e

Browse files
committed
Update reposiotry support files
1 parent f6cb910 commit 9eff14e

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
/.coveralls.yml export-ignore
33
/.gitattributes export-ignore
44
/.gitignore export-ignore
5-
/.php_cs export-ignore
65
/.travis.yml export-ignore
76
/composer.lock export-ignore
87
/docs/ export-ignore
98
/mkdocs.yml export-ignore
9+
/phpcs.xml export-ignore
1010
/phpunit.xml.dist export-ignore
1111
/test/ export-ignore
1212
/Vagrantfile export-ignore

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2017, Zend Technologies USA, Inc.
1+
Copyright (c) 2005-2019, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"issues": "https://github.com/zendframework/zend-db/issues",
1313
"source": "https://github.com/zendframework/zend-db",
1414
"rss": "https://github.com/zendframework/zend-db/releases.atom",
15-
"slack": "https://zendframework-slack.herokuapp.com",
15+
"chat": "https://zendframework-slack.herokuapp.com",
1616
"forum": "https://discourse.zendframework.com/c/questions/components"
1717
},
1818
"require": {

docs/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ read/subscribe to the following resources:
77

88
- [Coding Standards](https://github.com/zendframework/zend-coding-standard)
99
- [Forums](https://discourse.zendframework.com/c/contributors)
10-
- [Slack](https://zendframework-slack.herokuapp.com)
10+
- [Chat](https://zendframework-slack.herokuapp.com)
1111
- [Code of Conduct](CODE_OF_CONDUCT.md)
1212

1313
If you are working on new features or refactoring

docs/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
- [ ] I was not able to find an [open](https://github.com/zendframework/zend-db/issues?q=is%3Aopen) or [closed](https://github.com/zendframework/zend-db/issues?q=is%3Aclosed) issue matching what I'm seeing.
2-
- [ ] This is not a question. (Questions should be asked on [slack](https://zendframework.slack.com/) ([Signup for Slack here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)
2+
- [ ] This is not a question. (Questions should be asked on [chat](https://zendframework.slack.com/) ([Signup here](https://zendframework-slack.herokuapp.com/)) or our [forums](https://discourse.zendframework.com/).)
33

44
Provide a narrative description of what you are trying to accomplish.
55

docs/SUPPORT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
Zend Framework offers three support channels:
44

55
- For real-time questions, use our
6-
[Slack](https://zendframework-slack.herokuapp.com)
6+
[chat](https://zendframework-slack.herokuapp.com)
77
- For detailed questions (e.g., those requiring examples) use our
88
[forums](https://discourse.zendframework.com/c/questions/components)
99
- To report issues, use this repository's
1010
[issue tracker](https://github.com/zendframework/zend-db/issues/new)
1111

12-
**DO NOT** use the issue tracker to ask questions; use Slack or the forums for
12+
**DO NOT** use the issue tracker to ask questions; use chat or the forums for
1313
that. Questions posed to the issue tracker will be closed.
1414

1515
When reporting an issue, please include the following details:

docs/book/sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ $select->columns(['foo', 'bar']);
162162
// As an associative array with aliases as the keys
163163
// (produces 'bar' AS 'foo', 'bax' AS 'baz')
164164
$select->columns([
165-
'foo' => 'bar',
165+
'foo' => 'bar',
166166
'baz' => 'bax'
167167
]);
168168

mkdocs.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
docs_dir: docs/book
22
site_dir: docs/html
3-
pages:
4-
- index.md
3+
nav:
4+
- Home: index.md
55
- Reference:
66
- Adapters: adapter.md
77
- "Result Sets": result-set.md
@@ -11,6 +11,5 @@ pages:
1111
- "Row Gateways": row-gateway.md
1212
- "RDBMS Metadata": metadata.md
1313
site_name: zend-db
14-
site_description: zend-db
14+
site_description: "Database abstraction layer, SQL abstraction, result set abstraction, and RowDataGateway and TableDataGateway implementations"
1515
repo_url: 'https://github.com/zendframework/zend-db'
16-
copyright: 'Copyright (c) 2005-2017 <a href="http://www.zend.com/">Zend Technologies USA Inc.</a>'

0 commit comments

Comments
 (0)