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

Commit 872c2b2

Browse files
committed
Rebase docs templates
- renamed documentation directory: doc -> docs - updated .gitattributes and .gitignore - moved support files into docs directory - added PR and ISSUE github templates - updated coveralls badge - updated LICENSE.md skeleton - updated composer.json skeleton
1 parent ed0756c commit 872c2b2

23 files changed

+1760
-155
lines changed

.gitattributes

+10-8
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

+7-17
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-
vendor/
12-
zf-mkdoc-theme/
13-
14-
clover.xml
15-
composer.lock
16-
coveralls-upload.json
17-
phpunit.xml
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-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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# zend-loader
22

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

66
zend-loader provides different strategies for autoloading PHP classes.
77

88
- File issues at https://github.com/zendframework/zend-loader/issues
9-
- Documentation is at https://zendframework.github.io/zend-loader/
9+
- Documentation is at https://docs.zendframework.com/zend-loader/

composer.json

+25-16
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,45 @@
11
{
22
"name": "zendframework/zend-loader",
3-
"description": " ",
3+
"description": "Autoloading and plugin loading strategies",
44
"license": "BSD-3-Clause",
55
"keywords": [
6-
"zf2",
6+
"zf",
7+
"zendframework",
78
"loader"
89
],
9-
"homepage": "https://github.com/zendframework/zend-loader",
10-
"autoload": {
11-
"psr-4": {
12-
"Zend\\Loader\\": "src/"
13-
}
10+
"support": {
11+
"docs": "https://docs.zendframework.com/zend-loader/",
12+
"issues": "https://github.com/zendframework/zend-loader/issues",
13+
"source": "https://github.com/zendframework/zend-loader",
14+
"rss": "https://github.com/zendframework/zend-loader/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"
1720
},
18-
"minimum-stability": "dev",
19-
"prefer-stable": true,
20-
"extra": {
21-
"branch-alias": {
22-
"dev-master": "2.5-dev",
23-
"dev-develop": "2.6-dev"
21+
"require-dev": {
22+
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
23+
"zendframework/zend-coding-standard": "~1.0.0"
24+
},
25+
"autoload": {
26+
"psr-4": {
27+
"Zend\\Loader\\": "src/"
2428
}
2529
},
2630
"autoload-dev": {
2731
"psr-4": {
2832
"ZendTest\\Loader\\": "test/"
2933
}
3034
},
31-
"require-dev": {
32-
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4",
33-
"zendframework/zend-coding-standard": "~1.0.0"
35+
"config": {
36+
"sort-packages": true
37+
},
38+
"extra": {
39+
"branch-alias": {
40+
"dev-master": "2.5.x-dev",
41+
"dev-develop": "2.6.x-dev"
42+
}
3443
},
3544
"scripts": {
3645
"check": [

0 commit comments

Comments
 (0)