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

Commit

Permalink
Rebase docs
Browse files Browse the repository at this point in the history
- renamed documentation directory: doc -> docs
- added composer.lock to the repository
- updated .gitattributes and .gitignore
- updated LICENSE.md skeleton
- updated composer.json skeleton
- added PR and ISSUE github templates
- updated coveralls badge in README.md
  • Loading branch information
michalbundyra committed Apr 27, 2018
1 parent 1b70d4f commit 08587fd
Show file tree
Hide file tree
Showing 17 changed files with 2,022 additions and 122 deletions.
18 changes: 10 additions & 8 deletions .gitattributes
@@ -1,8 +1,10 @@
/test export-ignore
/vendor export-ignore
.coveralls.yml export-ignore
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
phpcs.xml export-ignore
phpunit.xml.dist export-ignore
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/composer.lock export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
24 changes: 7 additions & 17 deletions .gitignore
@@ -1,17 +1,7 @@
.buildpath
.DS_Store
.idea
.project
.settings/
.*.sw*
.*.un~
nbproject
tmp/
doc/html/
zf-mkdoc-theme/

clover.xml
composer.lock
coveralls-upload.json
phpunit.xml
vendor
/clover.xml
/coveralls-upload.json
/docs/html/
/phpunit.xml
/vendor/
/zf-mkdoc-theme.tgz
/zf-mkdoc-theme/
13 changes: 6 additions & 7 deletions LICENSE.md
@@ -1,16 +1,15 @@
Copyright (c) 2005-2015, Zend Technologies USA, Inc.

Copyright (c) 2005-2018, Zend Technologies USA, Inc.
All rights reserved.

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

- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
- Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

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

- Neither the name of Zend Technologies USA, Inc. nor the names of its
contributors may be used to endorse or promote products derived from this
Expand Down
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# zend-memory

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

zend-memory manages data in an environment with limited memory.

Expand All @@ -14,4 +14,4 @@ storage outside of memory. In this way, the total memory used by managed objects
does not exceed the limit you need to enforce.

- File issues at https://github.com/zendframework/zend-memory/issues
- Documentation is at https://zendframework.github.io/zend-memory/
- Documentation is at https://docs.zendframework.com/zend-memory/
37 changes: 23 additions & 14 deletions composer.json
@@ -1,41 +1,50 @@
{
"name": "zendframework/zend-memory",
"description": " ",
"description": "Manage data in an environment with limited memory",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"zf",
"zendframework",
"memory"
],
"homepage": "https://github.com/zendframework/zend-memory",
"autoload": {
"psr-4": {
"Zend\\Memory\\": "src/"
}
"support": {
"docs": "https://docs.zendframework.com/zend-memory/",
"issues": "https://github.com/zendframework/zend-memory/issues",
"source": "https://github.com/zendframework/zend-memory",
"rss": "https://github.com/zendframework/zend-memory/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27",
"zendframework/zend-cache": "^2.7",
"phpunit/PHPUnit": "^5.7.27",
"zendframework/zend-coding-standard": "~1.0.0"
},
"suggest": {
"zendframework/zend-cache": "To support swapping memory objects into and out of non-memory cache storage"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.5-dev",
"dev-develop": "2.6-dev"
"autoload": {
"psr-4": {
"Zend\\Memory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Memory\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.5.x-dev",
"dev-develop": "2.6.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
Expand Down

0 comments on commit 08587fd

Please sign in to comment.