Skip to content

Commit 4c2cbb7

Browse files
committed
Add contributor to author lists.
1 parent 5123f6b commit 4c2cbb7

File tree

8 files changed

+52
-39
lines changed

8 files changed

+52
-39
lines changed

composer.json

Lines changed: 45 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,47 @@
11
{
2-
"name" : "jblond/php-diff",
3-
"type" : "library",
4-
"description" : "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
5-
"license" : "BSD-3-Clause",
6-
"keywords" : [
7-
"php",
8-
"diff"
9-
],
10-
"authors" : [{
11-
"name" : "Mario",
12-
"email" : "leet31337@web.de"
13-
}, {
14-
"name" : "Chris Boulton",
15-
"email" : "chris.boulton@interspire.com"
16-
}
17-
],
18-
"require" : {
19-
"php" : ">=7.2",
20-
"ext-mbstring" : "*"
21-
},
22-
"require-dev" : {
23-
"phpunit/phpunit" : "8.*",
24-
"squizlabs/php_codesniffer" : "*",
25-
"phpmd/phpmd": "2.*"
26-
},
27-
"autoload" : {
28-
"psr-4" : {
29-
"jblond\\" : "lib/jblond"
30-
}
31-
},
32-
"config" : {
33-
"classmap-authoritative" : true
34-
},
35-
"scripts" : {
36-
"phpunit" : "phpunit ./tests/",
37-
"php_src" : "phpcs --standard=phpcs.xml -s -p --colors ./lib/",
38-
"php_test" : "phpcs --standard=phpcs.xml -s -p --colors ./tests/",
39-
"phpmd" : "phpmd ./ ansi cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor"
40-
}
2+
"name": "jblond/php-diff",
3+
"type": "library",
4+
"description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
5+
"license": "BSD-3-Clause",
6+
"keywords": [
7+
"php",
8+
"diff"
9+
],
10+
"authors": [
11+
{
12+
"name": "Mario",
13+
"email": "leet31337@web.de"
14+
},
15+
{
16+
"name": "Ferry Cools",
17+
"email": "info@digilive.nl"
18+
},
19+
{
20+
"name": "Chris Boulton",
21+
"email": "chris.boulton@interspire.com"
22+
}
23+
],
24+
"require": {
25+
"php": ">=7.2",
26+
"ext-mbstring": "*"
27+
},
28+
"require-dev": {
29+
"phpunit/phpunit": "8.*",
30+
"squizlabs/php_codesniffer": "*",
31+
"phpmd/phpmd": "2.*"
32+
},
33+
"autoload": {
34+
"psr-4": {
35+
"jblond\\": "lib/jblond"
36+
}
37+
},
38+
"config": {
39+
"classmap-authoritative": true
40+
},
41+
"scripts": {
42+
"phpunit": "phpunit ./tests/",
43+
"php_src": "phpcs --standard=phpcs.xml -s -p --colors ./lib/",
44+
"php_test": "phpcs --standard=phpcs.xml -s -p --colors ./tests/",
45+
"phpmd": "phpmd ./ ansi cleancode,codesize,controversial,design,naming,unusedcode --exclude vendor"
46+
}
4147
}

lib/jblond/Diff.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*
2424
* @package jblond
2525
* @author Chris Boulton <chris.boulton@interspire.com>
26+
* @author Ferry Cools <info@DigiLive.nl>
2627
* @copyright (c) 2009 Chris Boulton
2728
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
2829
* @version 1.15

lib/jblond/Diff/Renderer/Html/HtmlArray.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* @package jblond\Diff\Renderer\Html
1515
* @author Chris Boulton <chris.boulton@interspire.com>
16+
* @author Ferry Cools <info@DigiLive.nl>
1617
* @copyright (c) 2009 Chris Boulton
1718
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1819
* @version 1.15

lib/jblond/Diff/Renderer/Html/Inline.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*
1212
* @package jblond\Diff\Renderer\Html
1313
* @author Chris Boulton <chris.boulton@interspire.com>
14+
* @author Ferry Cools <info@DigiLive.nl>
1415
* @copyright (c) 2009 Chris Boulton
1516
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1617
* @version 1.15

lib/jblond/Diff/Renderer/Html/SideBySide.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*
1212
* @package jblond\Diff\Renderer\Html
1313
* @author Chris Boulton <chris.boulton@interspire.com>
14+
* @author Ferry Cools <info@DigiLive.nl>
1415
* @copyright (c) 2009 Chris Boulton
1516
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1617
* @version 1.15

lib/jblond/Diff/Renderer/RendererAbstract.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* @package jblond\Diff\Renderer
1515
* @author Chris Boulton <chris.boulton@interspire.com>
16+
* @author Ferry Cools <info@DigiLive.nl>
1617
* @copyright (c) 2009 Chris Boulton
1718
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1819
* @version 1.15

lib/jblond/Diff/Renderer/Text/Context.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* @package jblond\Diff\Renderer\Text
1515
* @author Chris Boulton <chris.boulton@interspire.com>
16+
* @author Ferry Cools <info@DigiLive.nl>
1617
* @copyright (c) 2009 Chris Boulton
1718
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1819
* @version 1.15

lib/jblond/Diff/SequenceMatcher.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*
1414
* @package jblond\Diff
1515
* @author Chris Boulton <chris.boulton@interspire.com>
16+
* @author Ferry Cools <info@DigiLive.nl>
1617
* @copyright (c) 2009 Chris Boulton
1718
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
1819
* @version 1.15

0 commit comments

Comments
 (0)