Skip to content

Commit 5324ba8

Browse files
committed
Fix package name to convention
1 parent 3a43da2 commit 5324ba8

File tree

10 files changed

+22
-21
lines changed

10 files changed

+22
-21
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
All notable changes to `contracts-weblog` will be documented in this file.
3+
All notable changes to `php-contracts-weblog` will be documented in this file.
44

55
## 1.0.0 - 2018-04-07
66

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to Weblog Contracts
1+
# Contributing to Weblog PHP Contracts
22

33
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.
44

@@ -13,7 +13,7 @@ Please make sure that you have [set up your user name and email address](http://
1313

1414
Pull requests for bug fixes must be based on the current stable branch.
1515

16-
We are trying to keep backwards compatibility breaks in Weblog Contracts to an absolute minimum. Please take this into account when proposing changes.
16+
We are trying to keep backwards compatibility breaks in Weblog PHP Contracts to an absolute minimum. Please take this into account when proposing changes.
1717

1818
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.
1919

@@ -27,4 +27,4 @@ $ vendor/bin/php-cs-fixer fix
2727

2828
## Reporting issues
2929

30-
- [General problems](https://github.com/cybercog/contracts-weblog/issues)
30+
- [General problems](https://github.com/cybercog/php-contracts-weblog/issues)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Weblog Contracts
1+
# Weblog PHP Contracts
22

33
![cog-contracts-weblog](https://user-images.githubusercontent.com/1849174/38336794-bd7bd996-386b-11e8-861d-d837d126bd50.png)
44

@@ -11,7 +11,7 @@
1111

1212
## Introduction
1313

14-
Weblog Contracts provides set of interfaces for the Framework Interoperable Blog Package development.
14+
Weblog PHP Contracts provides set of interfaces for the Framework Interoperable Blog Package development.
1515

1616
## Contents
1717

@@ -42,7 +42,7 @@ Weblog Contracts provides set of interfaces for the Framework Interoperable Blog
4242
First, pull in the package through Composer.
4343

4444
```sh
45-
$ composer require cybercog/contracts-weblog
45+
$ composer require cybercog/php-contracts-weblog
4646
```
4747

4848
## Usage
@@ -66,15 +66,15 @@ If you discover any security related issues, please email [email protected] inste
6666
| <a href="https://github.com/a-komarev">![@a-komarev](https://avatars.githubusercontent.com/u/1849174?s=110)<br />Anton Komarev</a> |
6767
| :---: |
6868

69-
[Weblog Contracts contributors list](../../contributors)
69+
[Weblog PHP Contracts contributors list](../../contributors)
7070

7171
## Alternatives
7272

7373
*Feel free to add more alternatives as Pull Request.*
7474

7575
## License
7676

77-
- `Weblog Contracts` package is open-sourced software licensed under the [MIT license](LICENSE) by Anton Komarev.
77+
- `Weblog PHP Contracts` package is open-sourced software licensed under the [MIT license](LICENSE) by [Anton Komarev](https://github.com/a-komarev).
7878
- `Internet Marketing` image licensed under [Creative Commons 3.0](https://creativecommons.org/licenses/by/3.0/us/) by Gan Khoon Lay.
7979

8080
## About CyberCog

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2-
"name": "cybercog/contracts-weblog",
2+
"name": "cybercog/php-contracts-weblog",
33
"description": "Сontracts for the framework interoperable Blog development.",
44
"type": "library",
55
"license": "MIT",
66
"keywords": [
77
"cybercog",
88
"cog",
99
"contract",
10+
"interface",
1011
"framework-agnostic",
1112
"interoperable",
1213
"blog",
@@ -29,13 +30,13 @@
2930
"role": "Developer"
3031
}
3132
],
32-
"homepage": "https://github.com/cybercog/contracts-weblog",
33+
"homepage": "https://github.com/cybercog/php-contracts-weblog",
3334
"support": {
3435
"email": "[email protected]",
35-
"issues": "https://github.com/cybercog/contracts-weblog/issues",
36-
"wiki": "https://github.com/cybercog/contracts-weblog/wiki",
37-
"source": "https://github.com/cybercog/contracts-weblog",
38-
"docs": "https://github.com/cybercog/contracts-weblog/wiki"
36+
"issues": "https://github.com/cybercog/php-contracts-weblog/issues",
37+
"wiki": "https://github.com/cybercog/php-contracts-weblog/wiki",
38+
"source": "https://github.com/cybercog/php-contracts-weblog",
39+
"docs": "https://github.com/cybercog/php-contracts-weblog/wiki"
3940
},
4041
"require": {
4142
"php": "^7.1.3"

src/Author/Entities/Author.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

src/Authorable/Entities/Authorable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

src/Blog/Entities/Blog.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

src/Category/Entities/Category.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

src/Comment/Entities/Comment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

src/Post/Entities/Post.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Weblog Contracts.
4+
* This file is part of Weblog PHP Contracts.
55
*
66
* (c) Anton Komarev <[email protected]>
77
*

0 commit comments

Comments
 (0)