diff --git a/LICENSE b/LICENSE index 040f2bd..161e2dc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ Autoload Builder -Copyright (c) 2010-2013 Arne Blankerts +Copyright (c) 2010-2016 Arne Blankerts and Contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/README.md b/README.md index 4cf583e..eabc077 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Once it is marked as executable, you can run it directly. For instance: ``` [theseer@rikka ~]$ ./phpab.phar -v -phpab 1.21.0 - Copyright (C) 2009 - 2015 by Arne Blankerts +phpab 1.22.0 - Copyright (C) 2009 - 2016 by Arne Blankerts ``` ## Other Downloads diff --git a/composer/bin/phpab b/composer/bin/phpab index 9c83cf5..617aa38 100755 --- a/composer/bin/phpab +++ b/composer/bin/phpab @@ -1,7 +1,7 @@ #!/usr/bin/env php + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/phpab.bat b/phpab.bat index 7ad9c7d..bd2d7b0 100644 --- a/phpab.bat +++ b/phpab.bat @@ -1,7 +1,7 @@ @echo off REM phpab REM -REM Copyright (c) 2009-2010, Arne Blankerts + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Application.php b/src/Application.php index c11b4ab..963279b 100644 --- a/src/Application.php +++ b/src/Application.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/AutoloadRenderer.php b/src/AutoloadRenderer.php index 371666e..38c5a9d 100644 --- a/src/AutoloadRenderer.php +++ b/src/AutoloadRenderer.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/CLI.php b/src/CLI.php index 630dd52..00da219 100644 --- a/src/CLI.php +++ b/src/CLI.php @@ -1,7 +1,7 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Config.php b/src/Config.php index 78f5265..da598d2 100644 --- a/src/Config.php +++ b/src/Config.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/DependencySorter.php b/src/DependencySorter.php index 15f2818..c8635d1 100644 --- a/src/DependencySorter.php +++ b/src/DependencySorter.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Factory.php b/src/Factory.php index 1493372..188fda2 100644 --- a/src/Factory.php +++ b/src/Factory.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Logger.php b/src/Logger.php index 5ff7d06..47e4b5a 100644 --- a/src/Logger.php +++ b/src/Logger.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Parser.php b/src/Parser.php index 129a59c..5a2c300 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/PharBuilder.php b/src/PharBuilder.php index 996ea86..3e13d76 100644 --- a/src/PharBuilder.php +++ b/src/PharBuilder.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/StaticRenderer.php b/src/StaticRenderer.php index 020d6e7..878c916 100644 --- a/src/StaticRenderer.php +++ b/src/StaticRenderer.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, diff --git a/src/Version.php b/src/Version.php index 6d1bc1e..8a6b203 100644 --- a/src/Version.php +++ b/src/Version.php @@ -1,6 +1,6 @@ + * Copyright (c) 2009-2016 Arne Blankerts * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, @@ -58,7 +58,7 @@ public static function getVersion() { } public static function getInfoString() { - return 'phpab ' . self::getVersion() . " - Copyright (C) 2009 - " . date('Y') . " by Arne Blankerts"; + return 'phpab ' . self::getVersion() . " - Copyright (C) 2009 - " . date('Y') . " by Arne Blankerts and Contributors"; } }