From 5324ba85b0eee851dc3db54ed2b3fe7f99db28b5 Mon Sep 17 00:00:00 2001 From: a-komarev Date: Wed, 11 Apr 2018 18:52:26 +0300 Subject: [PATCH] Fix package name to convention --- CHANGELOG.md | 2 +- CONTRIBUTING.md | 6 +++--- README.md | 10 +++++----- composer.json | 13 +++++++------ src/Author/Entities/Author.php | 2 +- src/Authorable/Entities/Authorable.php | 2 +- src/Blog/Entities/Blog.php | 2 +- src/Category/Entities/Category.php | 2 +- src/Comment/Entities/Comment.php | 2 +- src/Post/Entities/Post.php | 2 +- 10 files changed, 22 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 700c858..a916dfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -All notable changes to `contracts-weblog` will be documented in this file. +All notable changes to `php-contracts-weblog` will be documented in this file. ## 1.0.0 - 2018-04-07 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e82a4c2..4577a8a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to Weblog Contracts +# Contributing to Weblog PHP Contracts Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. @@ -13,7 +13,7 @@ Please make sure that you have [set up your user name and email address](http:// Pull requests for bug fixes must be based on the current stable branch. -We are trying to keep backwards compatibility breaks in Weblog Contracts to an absolute minimum. Please take this into account when proposing changes. +We are trying to keep backwards compatibility breaks in Weblog PHP Contracts to an absolute minimum. Please take this into account when proposing changes. Due to time constraints, we are not always able to respond as quickly as we would like. Please do not take delays personal and feel free to remind us if you feel that we forgot to respond. @@ -27,4 +27,4 @@ $ vendor/bin/php-cs-fixer fix ## Reporting issues -- [General problems](https://github.com/cybercog/contracts-weblog/issues) +- [General problems](https://github.com/cybercog/php-contracts-weblog/issues) diff --git a/README.md b/README.md index 56f781f..6c2b3eb 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Weblog Contracts +# Weblog PHP Contracts ![cog-contracts-weblog](https://user-images.githubusercontent.com/1849174/38336794-bd7bd996-386b-11e8-861d-d837d126bd50.png) @@ -11,7 +11,7 @@ ## Introduction -Weblog Contracts provides set of interfaces for the Framework Interoperable Blog Package development. +Weblog PHP Contracts provides set of interfaces for the Framework Interoperable Blog Package development. ## Contents @@ -42,7 +42,7 @@ Weblog Contracts provides set of interfaces for the Framework Interoperable Blog First, pull in the package through Composer. ```sh -$ composer require cybercog/contracts-weblog +$ composer require cybercog/php-contracts-weblog ``` ## Usage @@ -66,7 +66,7 @@ If you discover any security related issues, please email open@cybercog.su inste | ![@a-komarev](https://avatars.githubusercontent.com/u/1849174?s=110)
Anton Komarev
| | :---: | -[Weblog Contracts contributors list](../../contributors) +[Weblog PHP Contracts contributors list](../../contributors) ## Alternatives @@ -74,7 +74,7 @@ If you discover any security related issues, please email open@cybercog.su inste ## License -- `Weblog Contracts` package is open-sourced software licensed under the [MIT license](LICENSE) by Anton Komarev. +- `Weblog PHP Contracts` package is open-sourced software licensed under the [MIT license](LICENSE) by [Anton Komarev](https://github.com/a-komarev). - `Internet Marketing` image licensed under [Creative Commons 3.0](https://creativecommons.org/licenses/by/3.0/us/) by Gan Khoon Lay. ## About CyberCog diff --git a/composer.json b/composer.json index 7567237..1e65684 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "cybercog/contracts-weblog", + "name": "cybercog/php-contracts-weblog", "description": "Сontracts for the framework interoperable Blog development.", "type": "library", "license": "MIT", @@ -7,6 +7,7 @@ "cybercog", "cog", "contract", + "interface", "framework-agnostic", "interoperable", "blog", @@ -29,13 +30,13 @@ "role": "Developer" } ], - "homepage": "https://github.com/cybercog/contracts-weblog", + "homepage": "https://github.com/cybercog/php-contracts-weblog", "support": { "email": "open@cybercog.su", - "issues": "https://github.com/cybercog/contracts-weblog/issues", - "wiki": "https://github.com/cybercog/contracts-weblog/wiki", - "source": "https://github.com/cybercog/contracts-weblog", - "docs": "https://github.com/cybercog/contracts-weblog/wiki" + "issues": "https://github.com/cybercog/php-contracts-weblog/issues", + "wiki": "https://github.com/cybercog/php-contracts-weblog/wiki", + "source": "https://github.com/cybercog/php-contracts-weblog", + "docs": "https://github.com/cybercog/php-contracts-weblog/wiki" }, "require": { "php": "^7.1.3" diff --git a/src/Author/Entities/Author.php b/src/Author/Entities/Author.php index 80b8f95..a72a0e7 100644 --- a/src/Author/Entities/Author.php +++ b/src/Author/Entities/Author.php @@ -1,7 +1,7 @@ * diff --git a/src/Authorable/Entities/Authorable.php b/src/Authorable/Entities/Authorable.php index dc8ea0e..6084734 100644 --- a/src/Authorable/Entities/Authorable.php +++ b/src/Authorable/Entities/Authorable.php @@ -1,7 +1,7 @@ * diff --git a/src/Blog/Entities/Blog.php b/src/Blog/Entities/Blog.php index 0162e19..a1c81f5 100644 --- a/src/Blog/Entities/Blog.php +++ b/src/Blog/Entities/Blog.php @@ -1,7 +1,7 @@ * diff --git a/src/Category/Entities/Category.php b/src/Category/Entities/Category.php index fb99460..6ecf64f 100644 --- a/src/Category/Entities/Category.php +++ b/src/Category/Entities/Category.php @@ -1,7 +1,7 @@ * diff --git a/src/Comment/Entities/Comment.php b/src/Comment/Entities/Comment.php index 386d78f..6e8d15b 100644 --- a/src/Comment/Entities/Comment.php +++ b/src/Comment/Entities/Comment.php @@ -1,7 +1,7 @@ * diff --git a/src/Post/Entities/Post.php b/src/Post/Entities/Post.php index 199615a..abe56b6 100644 --- a/src/Post/Entities/Post.php +++ b/src/Post/Entities/Post.php @@ -1,7 +1,7 @@ *