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

Commit 66f816b

Browse files
committed
Rebase doc templates
- renamed documentation directory: doc -> docs - moved all support files into docs - added PR and ISSUE github templates - updated LICENSE.md skeleton - updated composer.json skeleton - updated .gitattributes and .gitignore - updated coveralls badge and links in README.md
1 parent 1f827e5 commit 66f816b

16 files changed

+1964
-120
lines changed

.gitattributes

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
/test export-ignore
2-
/vendor export-ignore
3-
.coveralls.yml export-ignore
4-
.gitattributes export-ignore
5-
.gitignore export-ignore
6-
.travis.yml export-ignore
7-
.php_cs export-ignore
8-
phpunit.xml.dist export-ignore
1+
/.coveralls.yml export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/.travis.yml export-ignore
5+
/composer.lock export-ignore
6+
/docs/ export-ignore
7+
/mkdocs.yml export-ignore
8+
/phpcs.xml export-ignore
9+
/phpunit.xml.dist export-ignore
10+
/test/ export-ignore

.gitignore

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
1-
.buildpath
2-
.DS_Store
3-
.idea
4-
.project
5-
.settings/
6-
.*.sw*
7-
.*.un~
8-
nbproject
9-
doc/html/
10-
tmp/
11-
zf-mkdoc-theme/
12-
13-
clover.xml
14-
composer.lock
15-
coveralls-upload.json
16-
phpunit.xml
17-
vendor
1+
/clover.xml
2+
/coveralls-upload.json
3+
/docs/html/
4+
/phpunit.xml
5+
/vendor/
6+
/zf-mkdoc-theme.tgz
7+
/zf-mkdoc-theme/

LICENSE.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2015, Zend Technologies USA, Inc.
2-
1+
Copyright (c) 2005-2018, Zend Technologies USA, Inc.
32
All rights reserved.
43

54
Redistribution and use in source and binary forms, with or without modification,
65
are permitted provided that the following conditions are met:
76

8-
- Redistributions of source code must retain the above copyright notice,
9-
this list of conditions and the following disclaimer.
7+
- Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
109

11-
- Redistributions in binary form must reproduce the above copyright notice,
12-
this list of conditions and the following disclaimer in the documentation
13-
and/or other materials provided with the distribution.
10+
- Redistributions in binary form must reproduce the above copyright notice, this
11+
list of conditions and the following disclaimer in the documentation and/or
12+
other materials provided with the distribution.
1413

1514
- Neither the name of Zend Technologies USA, Inc. nor the names of its
1615
contributors may be used to endorse or promote products derived from this

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# zend-tag
22

33
[![Build Status](https://secure.travis-ci.org/zendframework/zend-tag.svg?branch=master)](https://secure.travis-ci.org/zendframework/zend-tag)
4-
[![Coverage Status](https://coveralls.io/repos/zendframework/zend-tag/badge.svg?branch=master)](https://coveralls.io/r/zendframework/zend-tag?branch=master)
4+
[![Coverage Status](https://coveralls.io/repos/github/zendframework/zend-tag/badge.svg?branch=master)](https://coveralls.io/github/zendframework/zend-tag?branch=master)
55

66
`Zend\Tag` is a component suite which provides a facility to work with taggable
77
Items. As its base, it provides two classes to work with Tags, `Zend\Tag\Item`
@@ -11,4 +11,4 @@ taggable item in conjunction with `Zend\Tag`.
1111

1212

1313
- File issues at https://github.com/zendframework/zend-tag/issues
14-
- Documentation is at https://zendframework.github.io/zend-tag/
14+
- Documentation is at https://docs.zendframework.com/zend-tag/

composer.json

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"name": "zendframework/zend-tag",
3-
"description": "a component suite which provides a facility to work with taggable Items",
3+
"description": "Manipulate and weight taggable items, and create tag clouds",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"tag"
89
],
9-
"homepage": "https://github.com/zendframework/zend-tag",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\Tag\\": "src/"
13-
}
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-tag/",
12+
"issues": "https://github.com/zendframework/zend-tag/issues",
13+
"source": "https://github.com/zendframework/zend-tag",
14+
"rss": "https://github.com/zendframework/zend-tag/releases.atom",
15+
"chat": "https://zendframework-slack.herokuapp.com",
16+
"forum": "https://discourse.zendframework.com/c/questions/components"
1417
},
1518
"require": {
1619
"php": "^5.6 || ^7.0",
@@ -25,19 +28,25 @@
2528
"suggest": {
2629
"zendframework/zend-servicemanager": "Zend\\ServiceManager component"
2730
},
28-
"minimum-stability": "dev",
29-
"prefer-stable": true,
30-
"extra": {
31-
"branch-alias": {
32-
"dev-master": "2.6-dev",
33-
"dev-develop": "2.7-dev"
31+
"autoload": {
32+
"psr-4": {
33+
"Zend\\Tag\\": "src/"
3434
}
3535
},
3636
"autoload-dev": {
3737
"psr-4": {
3838
"ZendTest\\Tag\\": "test/"
3939
}
4040
},
41+
"config": {
42+
"sort-packages": true
43+
},
44+
"extra": {
45+
"branch-alias": {
46+
"dev-master": "2.6.x-dev",
47+
"dev-develop": "2.7.x-dev"
48+
}
49+
},
4150
"scripts": {
4251
"check": [
4352
"@cs-check",

0 commit comments

Comments
 (0)