Skip to content

Commit 6dc9030

Browse files
Merge pull request sebastianbergmann#24 from henriquemoody/license
Update license and copyright in all files
2 parents f38057b + f0a0737 commit 6dc9030

12 files changed

+59
-397
lines changed

LICENSE

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

3-
Copyright (c) 2002-2014, Sebastian Bergmann <[email protected]>.
3+
Copyright (c) 2002-2015, Sebastian Bergmann <[email protected]>.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

src/Chunk.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
19-
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
2+
/*
3+
* This file is part of the Diff package.
234
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
5+
* (c) Sebastian Bergmann <[email protected]>
366
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff;
@@ -48,7 +14,7 @@
4814
* @package Diff
4915
* @author Sebastian Bergmann <[email protected]>
5016
* @author Kore Nordmann <[email protected]>
51-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
17+
* @copyright Sebastian Bergmann <[email protected]>
5218
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5319
* @link http://www.github.com/sebastianbergmann/diff
5420
*/

src/Diff.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
19-
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
2+
/*
3+
* This file is part of the Diff package.
234
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
5+
* (c) Sebastian Bergmann <[email protected]>
366
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff;
@@ -48,7 +14,7 @@
4814
* @package Diff
4915
* @author Sebastian Bergmann <[email protected]>
5016
* @author Kore Nordmann <[email protected]>
51-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
17+
* @copyright Sebastian Bergmann <[email protected]>
5218
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5319
* @link http://www.github.com/sebastianbergmann/diff
5420
*/

src/Differ.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
19-
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
2+
/*
3+
* This file is part of the Diff package.
234
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
5+
* (c) Sebastian Bergmann <[email protected]>
366
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff;
@@ -54,7 +20,7 @@
5420
* @package Diff
5521
* @author Sebastian Bergmann <[email protected]>
5622
* @author Kore Nordmann <[email protected]>
57-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
23+
* @copyright Sebastian Bergmann <[email protected]>
5824
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5925
* @link http://www.github.com/sebastianbergmann/diff
6026
*/

src/LCS/LongestCommonSubsequence.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
19-
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
2+
/*
3+
* This file is part of the Diff package.
234
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
5+
* (c) Sebastian Bergmann <[email protected]>
366
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff\LCS;
@@ -50,7 +16,7 @@
5016
* @package Diff
5117
* @author Sebastian Bergmann <[email protected]>
5218
* @author Kore Nordmann <[email protected]>
53-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
19+
* @copyright Sebastian Bergmann <[email protected]>
5420
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5521
* @link http://www.github.com/sebastianbergmann/diff
5622
*/

src/LCS/MemoryEfficientLongestCommonSubsequenceImplementation.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
2+
/*
3+
* This file is part of the Diff package.
194
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
5+
* (c) Sebastian Bergmann <[email protected]>
236
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff\LCS;
@@ -50,7 +16,7 @@
5016
* @package Diff
5117
* @author Sebastian Bergmann <[email protected]>
5218
* @author Denes Lados <[email protected]>
53-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
19+
* @copyright Sebastian Bergmann <[email protected]>
5420
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5521
* @link http://www.github.com/sebastianbergmann/diff
5622
*/

src/LCS/TimeEfficientLongestCommonSubsequenceImplementation.php

Lines changed: 6 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,11 @@
11
<?php
2-
/**
3-
* Diff
4-
*
5-
* Copyright (c) 2001-2014, Sebastian Bergmann <[email protected]>.
6-
* All rights reserved.
7-
*
8-
* Redistribution and use in source and binary forms, with or without
9-
* modification, are permitted provided that the following conditions
10-
* are met:
11-
*
12-
* * Redistributions of source code must retain the above copyright
13-
* notice, this list of conditions and the following disclaimer.
14-
*
15-
* * Redistributions in binary form must reproduce the above copyright
16-
* notice, this list of conditions and the following disclaimer in
17-
* the documentation and/or other materials provided with the
18-
* distribution.
19-
*
20-
* * Neither the name of Sebastian Bergmann nor the names of his
21-
* contributors may be used to endorse or promote products derived
22-
* from this software without specific prior written permission.
2+
/*
3+
* This file is part of the Diff package.
234
*
24-
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25-
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26-
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27-
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28-
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29-
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30-
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31-
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
32-
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33-
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
34-
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35-
* POSSIBILITY OF SUCH DAMAGE.
5+
* (c) Sebastian Bergmann <[email protected]>
366
*
37-
* @package Diff
38-
* @author Sebastian Bergmann <[email protected]>
39-
* @author Kore Nordmann <[email protected]>
40-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
41-
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
42-
* @link http://www.github.com/sebastianbergmann/diff
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
439
*/
4410

4511
namespace SebastianBergmann\Diff\LCS;
@@ -50,7 +16,7 @@
5016
* @package Diff
5117
* @author Sebastian Bergmann <[email protected]>
5218
* @author Kore Nordmann <[email protected]>
53-
* @copyright 2001-2014 Sebastian Bergmann <[email protected]>
19+
* @copyright Sebastian Bergmann <[email protected]>
5420
* @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License
5521
* @link http://www.github.com/sebastianbergmann/diff
5622
*/

0 commit comments

Comments
 (0)