Skip to content

Commit e2ce1b3

Browse files
committed
Merge pull request #1 from devdrops/master
Merged #1
2 parents 850dbc5 + f8b83ec commit e2ce1b3

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/composer.lock
2-
/vendor
2+
/vendor

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Redistribution and use in source and binary forms, with or without modification,
66
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
77
- 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.
88

9-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
9+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
##PHP DocBlock Checker
22

3+
[![SensioLabsInsight](https://insight.sensiolabs.com/projects/7f483e40-892a-4245-8e54-06f830ff83c4/mini.png)](https://insight.sensiolabs.com/projects/7f483e40-892a-4245-8e54-06f830ff83c4)
4+
35
A basic CLI (Command Line Interface) tool to verify if your PHP classes have DocBlocks.
46

57
###What it does?
@@ -12,10 +14,10 @@ This tool can:
1214
- It doesn't check for the integrity of your DocBlocks **at this time**.
1315

1416
###What does it requires?
15-
Please check `composer.json` for details.
17+
Please check [`composer.json`](composer.json) for details.
1618

1719
###Where is the documentation?
18-
Please check `docs.md` for further information on how to use this tool.
20+
Please check [`docs.md`](docs.md) for further information on how to use this tool.
1921

2022
###And, in case I want some references?
2123

composer.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
2-
"name" : "block8/php-docblock-checker",
2+
"name" : "devdrops/php-docblock-checker",
33
"description" : "A simple tool for checking that your PHP classes and methods use docblocks.",
44
"minimum-stability": "stable",
55
"type" : "library",
6-
"keywords" : ["php", "phpci", "testing", "docblock", "comment", "checker", "code quality"],
7-
"homepage" : "https://www.phptesting.org/",
6+
"keywords" : ["php", "docblock", "comment", "checker", "code quality"],
87
"license" : "BSD-2-Clause",
98
"authors": [
109
{
1110
"name" : "Dan Cryer",
1211
"email" : "[email protected]",
1312
"homepage": "http://www.block8.co.uk",
1413
"role" : "Developer"
14+
},
15+
{
16+
"name" : "Davi Marcondes Moreira",
17+
"email" : "[email protected]",
18+
"homepage": "http://about.me/devdrops",
19+
"role" : "Developer"
1520
}
1621
],
17-
"support": {
18-
"issues": "https://github.com/Block8/php-docblock-checker/issues",
19-
"source": "https://github.com/Block8/php-docblock-checker"
20-
},
2122
"require": {
2223
"php": ">=5.3.3",
2324
"phpunit/php-token-stream": "1.*",

0 commit comments

Comments
 (0)