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

Commit a9bc8ed

Browse files
committed
Rebase doc templates
- renamed documentation directory: doc -> docs - updated .gitattributes and .gitignore - moved all support files into docs directory - updated LICENSE.md skeleton - updated composer.json skeleton - added PR and ISSUE github templates
1 parent 7ecd36d commit a9bc8ed

14 files changed

+433
-313
lines changed

.gitattributes

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
/doc export-ignore
2-
/test export-ignore
3-
.gitattributes export-ignore
4-
.gitignore export-ignore
5-
.travis.yml export-ignore
6-
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

+7-16
Original file line numberDiff line numberDiff line change
@@ -1,16 +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-
coveralls-upload.json
15-
phpunit.xml
16-
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

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
Copyright (c) 2005-2016, 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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# zend-mvc-plugin-flashmessenger
22

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

66
Flash messages [derive from Rails](http://api.rubyonrails.org/classes/ActionDispatch/Flash.html),
77
and are used to expose messages from one action to the next, after which they
88
are cleared; a typical use case is with
9-
[Post/Redirect/Get](https://zendframework.github.io/zend-mvc-plugin-prg), where
9+
[Post/Redirect/Get](https://docs.zendframework.com/zend-mvc-plugin-prg), where
1010
they are created in the `POST` handler, and then displayed by the `GET` handler
1111
to indicate success or failure to the end-user.
1212

1313
This component provides a flash messenger controller plugin for
14-
[zend-mvc](https://zendframework.github.io/zend-mvc/) versions 3.0 and up.
14+
[zend-mvc](https://docs.zendframework.com/zend-mvc/) versions 3.0 and up.
1515

1616
- File issues at https://github.com/zendframework/zend-mvc-plugin-flashmessenger/issues
17-
- Documentation is at https://zendframework.github.io/zend-mvc-plugin-flashmessenger/
17+
- Documentation is at https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/

composer.json

+34-23
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,19 @@
11
{
22
"name": "zendframework/zend-mvc-plugin-flashmessenger",
3-
"description": " ",
3+
"description": "Plugin for creating and exposing flash messages via zend-mvc controllers",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"mvc"
89
],
9-
"homepage": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger",
10-
"extra": {
11-
"branch-alias": {
12-
"dev-master": "1.0-dev"
13-
},
14-
"zf": {
15-
"component": "Zend\\Mvc\\Plugin\\FlashMessenger"
16-
}
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Zend\\Mvc\\Plugin\\FlashMessenger\\": "src/"
21-
}
22-
},
23-
"autoload-dev": {
24-
"psr-4": {
25-
"ZendTest\\Mvc\\Plugin\\FlashMessenger\\": "test/"
26-
}
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-mvc-plugin-flashmessenger/",
12+
"issues": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger/issues",
13+
"source": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger",
14+
"rss": "https://github.com/zendframework/zend-mvc-plugin-flashmessenger/releases.atom",
15+
"chat": "https://zendframework-slack.herokuapp.com",
16+
"forum": "https://discourse.zendframework.com/c/questions/components"
2717
},
2818
"require": {
2919
"php": "^5.6 || ^7.0",
@@ -38,15 +28,36 @@
3828
"conflict": {
3929
"zendframework/zend-mvc": "<3.0.0"
4030
},
31+
"autoload": {
32+
"psr-4": {
33+
"Zend\\Mvc\\Plugin\\FlashMessenger\\": "src/"
34+
}
35+
},
36+
"autoload-dev": {
37+
"psr-4": {
38+
"ZendTest\\Mvc\\Plugin\\FlashMessenger\\": "test/"
39+
}
40+
},
41+
"config": {
42+
"sort-packages": true
43+
},
44+
"extra": {
45+
"branch-alias": {
46+
"dev-master": "1.0.x-dev",
47+
"dev-develop": "1.1.x-dev"
48+
},
49+
"zf": {
50+
"component": "Zend\\Mvc\\Plugin\\FlashMessenger"
51+
}
52+
},
4153
"scripts": {
4254
"check": [
4355
"@cs-check",
4456
"@test"
4557
],
46-
"upload-coverage": "coveralls",
4758
"cs-check": "phpcs",
4859
"cs-fix": "phpcbf",
49-
"test": "phpunit",
50-
"test-coverage": "phpunit --coverage-clover clover.xml"
60+
"test": "phpunit --colors=always",
61+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
5162
}
5263
}

0 commit comments

Comments
 (0)